/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand-teal: #0A2326;
    --text-color: #0A2326; /* Spruce Green */
    --header-bg: #FFD3E2; /* Sugar Candy default */
    --white: #ffffff;
    --sans: 'Montserrat', sans-serif;
    --inter: 'Inter', sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
}

html, body, #page, .site, .site-main, main {
    font-family: var(--sans);
    background-color: #f2f2f2 !important;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--header-bg) 0%, #E8CBE3 50%, var(--header-bg) 100%);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 24px;
    border-bottom: 1px solid rgba(10, 35, 38, 0.05);
}

.announcement-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.announcement-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    display: inline-block;
}

.announcement-text a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.announcement-arrow {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 6px;
}

.announcement-arrow:hover {
    opacity: 1;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
/* ==========================================================================
   2. HEADER & NAVIGATION (2-ROW CENTERED LAYOUT)
   ========================================================================== */
.site-header {
    background-color: var(--header-bg);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 1.5s ease-in-out;
}

.header-top-row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px 14px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo */
.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-svg {
    height: 48px;
    width: auto;
    display: block;
    fill: var(--text-color);
    transition: transform 0.3s ease;
}

.header-logo-svg:hover {
    transform: scale(1.02);
}

/* Centered Menu Links Below Logo */
.header-bottom-row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 18px 40px;
    display: flex;
    justify-content: center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-color);
    padding: 4px 0;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    font-weight: 800;
}

/* Mobile Hamburger Toggle */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 6px;
    position: absolute;
    left: 20px;
}

@media (max-width: 868px) {
    .header-top-row {
        padding: 14px 20px;
    }
    .header-bottom-row {
        display: none;
    }
    .mobile-hamburger {
        display: block;
    }
}

.mobile-right-spacer {
    display: none;
    width: 36px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
    }
    
    .mobile-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }
    
    .header-logo-container {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }
    
    .header-logo-svg {
        height: 38px;
    }
    
    .mobile-right-spacer {
        display: block; /* Balances out the hamburger on the left to keep the logo perfectly centered */
    }
    
    .header-bottom-row {
        display: none;
    }
}

.header-divider {
    height: 1px;
    background-color: #cccccc; /* Light grey */
    width: 100%;
}

/* ==========================================================================
   3. HERO BANNER
   ========================================================================== */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #FFD3E2; /* Default to first brand color on load */
    aspect-ratio: 2172 / 724; /* Keep exact image aspect ratio (3:1) to prevent cropping */
    transition: background-color 1.5s ease-in-out; /* Smooth background transition */
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08); /* Start slightly zoomed in */
    transition: transform 1.5s ease-in-out; /* Smooth zoom out transition */
}

.banner-slide.active img {
    transform: scale(1); /* Zoom out to normal scale when slide is active */
}

/* Banner Button Wrappers (Centered for Banner 1 & 2, Left-aligned for Banner 3) */
.banner-btn-wrapper {
    position: absolute;
    bottom: 16%;
    z-index: 10;
}

.banner-btn-wrapper.left-btn {
    left: 6.2%;
}

.banner-btn-wrapper.centered-btn {
    left: 50%;
    transform: translateX(-50%);
}

.banner-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0A2326;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banner-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1400px) {
    .banner-btn-wrapper {
        bottom: 15.5%;
    }
    .banner-cta-btn {
        font-size: 14px;
        padding: 12px 34px;
    }
}

@media (max-width: 1200px) {
    .banner-btn-wrapper {
        bottom: 15%;
    }
    .banner-cta-btn {
        font-size: 13px;
        padding: 11px 30px;
    }
}

@media (max-width: 768px) {
    .banner-btn-wrapper {
        bottom: 14%;
    }
    .banner-cta-btn {
        font-size: 11px;
        padding: 9px 24px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .banner-btn-wrapper {
        bottom: 12%;
    }
    .banner-cta-btn {
        font-size: 9px;
        padding: 6px 18px;
        border-radius: 24px;
    }
}

/* Banner Dots & Progress Rings */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.banner-dot {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.banner-dot .dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    transition: background-color 0.3s ease;
}

.banner-dot.active .dot-inner {
    background-color: #ffffff;
}

.banner-dot .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transform: rotate(-90deg); /* Start progress from 12 o'clock */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-dot.active .progress-ring {
    opacity: 1;
}

.progress-ring__circle-bg {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 2px;
}

.progress-ring__circle {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 2px;
    stroke-dasharray: 50.26;
    stroke-dashoffset: 50.26;
}

.banner-dot.active .progress-ring__circle {
    animation: progress-animation 8s linear forwards;
}

@keyframes progress-animation {
    0% {
        stroke-dashoffset: 50.26;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Scrolling Marquee Strip */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #E8CBE3; /* Soft Wisteria lavender */
    border-top: 1px solid #cccccc; /* Clean light grey separator */
    border-bottom: 1px solid #cccccc;
    padding: 14px 0;
    display: flex;
    align-items: center;
    transition: background-color 1.5s ease-in-out; /* Smooth color transition */
    cursor: pointer;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused; /* Pause scrolling on hover */
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 55s linear infinite;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
}

.marquee-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
}

.marquee-text strong,
.marquee-text b {
    font-weight: 800;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   WAVY RIBBON BANNER SECTION
   ========================================================================== */
.mobile-ribbon {
    display: none !important;
}

.desktop-ribbon {
    display: block !important;
}

.wavy-ribbon-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background-color: transparent;
    padding: 70px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wavy-ribbon-section.ribbon-2 {
    padding: 75px 0 0 0;
}

.wavy-ribbon-svg {
    width: 100%;
    height: 120px;
    display: block;
}

.wavy-ribbon-text {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.35em;
    fill: #000000;
    text-transform: uppercase;
}

/* ==========================================================================
   4. MOBILE DRAWER MENU
   ========================================================================== */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--header-bg);
    z-index: 2000;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 1.5s ease-in-out; /* Smooth color transition */
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
}

.mobile-menu-drawer.open {
    left: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    margin-bottom: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 35, 38, 0.05);
}

.mobile-nav-link.active {
    font-weight: 800;
    color: var(--brand-teal);
    border-bottom: 2px solid var(--text-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   5. BEST SELLERS SECTION
   ========================================================================== */
.best-sellers-section {
    background-color: #f2f2f2;
    padding: 80px 20px 60px 20px;
    text-align: center;
}

.best-sellers-section .section-title {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--text-color);
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 12px;
    text-decoration-thickness: 1.5px;
    letter-spacing: 0.03em;
    margin: 0 auto;
}

.best-sellers-tabs-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: var(--serif);
    font-size: 44px;
    background: none;
    border: none;
    color: #999999;
    cursor: pointer;
    padding-bottom: 8px;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-color);
}

.tab-btn.active {
    color: var(--text-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-color);
}

.products-slider-container {
    position: relative;
    max-width: 1520px;
    margin: 30px auto 0 auto;
    padding: 0 40px;
}

.products-slider-track {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 24px 0;
    margin: -10px 0 -24px 0;
}

.products-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: center;
}

.products-grid.has-overflow {
    justify-content: flex-start;
}

.product-card {
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 0;
    position: relative;
    text-align: center;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: transparent;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.prod-img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-wrapper:hover .prod-img.default {
    opacity: 0;
}

.product-image-wrapper:hover .prod-img.hover {
    opacity: 1;
}

.product-image-wrapper:hover .prod-img {
    transform: scale(1.03);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    text-transform: uppercase;
    color: var(--text-color);
    border-radius: 0;
    display: inline-block;
    line-height: 1.2;
}

.product-badge.preorder {
    background-color: #D9C9E9; /* Lavender */
}

.product-badge.discount {
    background-color: #d2f53c; /* Lime green box */
}

.product-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    margin: 18px 0 12px 0;
    line-height: 1.35;
}

.product-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    height: 40px;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0A2326;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 4px 0 0 0;
}

.product-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.price-original {
    text-decoration: line-through;
    color: #777777;
    margin-left: 6px;
    font-size: 14px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.slider-arrow.prev {
    left: -10px;
}

.slider-arrow.next {
    right: -10px;
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: 100%;
    }
    .products-slider-container {
        padding: 0 40px;
    }
    .slider-arrow.prev {
        left: -5px;
    }
    .slider-arrow.next {
        right: -5px;
    }
    .best-sellers-section {
        padding: 60px 15px;
    }
    .best-sellers-tabs-container {
        gap: 24px;
        margin-bottom: 24px;
    }
    .tab-btn {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 100%;
    }
    .products-slider-container {
        padding: 0 30px;
    }
    .slider-arrow.prev {
        left: -10px;
    }
    .slider-arrow.next {
        right: -10px;
    }
}

/* ==========================================================================
   6. INSTAGRAM VIDEOS SECTION (ENDLESS MARQUEE LOOP)
   ========================================================================== */
.ig-videos-section {
    background-color: #f2f2f2;
    padding: 50px 0 90px 0;
    text-align: center;
    overflow: hidden;
}

.ig-videos-header {
    margin-bottom: 40px;
    padding: 0 20px;
}

.ig-videos-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.ig-videos-subtitle {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.04em;
}

.videos-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.videos-marquee-container:hover .videos-marquee-track {
    animation-play-state: paused;
}

.videos-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: videoMarquee 35s linear infinite;
    will-change: transform;
}

@keyframes videoMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.video-card {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.video-thumbnail-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: none;
}

.ig-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.video-thumbnail-wrapper:hover .ig-video-element {
    transform: scale(1.03);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    padding-left: 3px;
    pointer-events: none;
}

.video-thumbnail-wrapper.is-playing .video-play-btn {
    opacity: 0;
}

.video-thumbnail-wrapper.is-playing:hover .video-play-btn {
    opacity: 0.9;
}

.video-thumbnail-wrapper:hover .video-play-btn {
    transform: scale(1.15);
    background-color: #ffffff;
}

.video-ig-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(10, 35, 38, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.video-sound-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 35, 38, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-sound-btn:hover {
    transform: scale(1.1);
    background: rgba(10, 35, 38, 0.9);
}

.video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: var(--text-color);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .ig-videos-title {
        font-size: 28px;
    }
    .ig-videos-subtitle {
        font-size: 13px;
    }
    .video-card {
        width: 220px;
    }
}

/* ==========================================================================
   6.5 TOOLS & ACCESSORIES SECTION (PORTRAIT CARDS SLIDER)
   ========================================================================== */
.tools-accessories-section {
    background-color: #f2f2f2;
    padding: 60px 0 70px 0;
    text-align: center;
    overflow: hidden;
}

.tools-header {
    margin-bottom: 40px;
    padding: 0 20px;
}

.tools-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.tools-subtitle {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.04em;
}

.tools-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.tools-slider-track {
    overflow: hidden;
    width: 100%;
}

.tools-grid {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: flex-start;
}

.tool-card {
    flex: 0 0 calc((100% - 64px) / 4.5);
    max-width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(10, 35, 38, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.tool-card.tool-bg-1 { background: linear-gradient(135deg, #FFD3E2 0%, #E8CBE3 100%); }
.tool-card.tool-bg-2 { background: linear-gradient(135deg, #E8CBE3 0%, #D9C9E9 100%); }
.tool-card.tool-bg-3 { background: linear-gradient(135deg, #FFD3E2 0%, #fbd5c0 100%); }
.tool-card.tool-bg-4 { background: linear-gradient(135deg, #D9C9E9 0%, #FFD3E2 100%); }
.tool-card.tool-bg-5 { background: linear-gradient(135deg, #E8CBE3 0%, #FFD3E2 100%); }
.tool-card.tool-bg-6 { background: linear-gradient(135deg, #fbd5c0 0%, #E8CBE3 100%); }

.tool-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tool-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 25px 16px;
    text-align: center;
}

.tool-card-name {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.tools-shop-btn {
    background-color: #ffffff;
    color: #0A2326;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 30px;
    border: none !important;
    outline: none !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tool-card:hover .tool-card-img {
    transform: scale(1.06);
}

.tool-card:hover .tools-shop-btn {
    background-color: #FFD3E2;
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Tools Slider Arrow Buttons (Centered Under Cards) */
.tools-nav-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    width: 100%;
}

.tools-slider-arrow {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(10, 35, 38, 0.12);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.tools-slider-arrow:hover {
    background-color: #FFD3E2;
    border-color: #FFD3E2;
    transform: translateY(-2px);
}

.tools-slider-arrow.prev,
.tools-slider-arrow.next {
    left: auto;
    right: auto;
}

@media (max-width: 1024px) {
    .tool-card {
        flex: 0 0 calc((100% - 32px) / 3.2);
    }
}

@media (max-width: 768px) {
    .tools-title {
        font-size: 28px;
    }
    .tools-subtitle {
        font-size: 13px;
    }
    .tool-card {
        flex: 0 0 calc((100% - 16px) / 2.2);
    }
}

@media (max-width: 480px) {
    .tool-card {
        flex: 0 0 82%;
    }
    .tools-slider-container {
        padding: 0 30px;
    }
}


/* ==========================================================================
   7. BLOG SECTION
   ========================================================================== */
.blog-section {
    background-color: #f2f2f2;
    padding: 25px 20px 45px 20px;
    text-align: center;
}

.blog-header {
    margin-bottom: 45px;
}

.blog-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.blog-subtitle {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.04em;
}

.blog-slider-container {
    position: relative;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 50px;
}

.blog-slider-track {
    overflow: hidden;
    width: 100%;
}

.blog-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    justify-content: flex-start;
}

.blog-card {
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
}

.blog-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1600 / 300;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 35, 38, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover .blog-thumbnail-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.blog-placeholder-text {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
}

.blog-thumbnail-wrapper.bg-1 {
    background: linear-gradient(135deg, #FFD3E2 0%, #E8CBE3 100%);
}

.blog-thumbnail-wrapper.bg-2 {
    background: linear-gradient(135deg, #E8CBE3 0%, #D9C9E9 100%);
}

.blog-thumbnail-wrapper.bg-3 {
    background: linear-gradient(135deg, #FFD3E2 0%, #fbd5c0 100%);
}

.blog-thumbnail-wrapper.bg-4 {
    background: linear-gradient(135deg, #D9C9E9 0%, #FFD3E2 100%);
}

.blog-thumbnail-wrapper.bg-5 {
    background: linear-gradient(135deg, #E8CBE3 0%, #FFD3E2 100%);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 14px;
}

.blog-card-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text-color);
}

.blog-card-title a {
    color: inherit;
    transition: opacity 0.2s ease;
}

.blog-card-title a:hover {
    opacity: 0.75;
}

.blog-card-excerpt {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.blog-card-link:hover {
    opacity: 0.7;
}

/* Blog Slider Arrow Buttons */
.blog-slider-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(10, 35, 38, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.blog-slider-arrow:hover {
    background-color: #FFD3E2;
    border-color: #FFD3E2;
}

.blog-slider-arrow.prev {
    left: -10px;
}

.blog-slider-arrow.next {
    right: -10px;
}

/* Blog Responsive Queries */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 28px;
    }
    .blog-subtitle {
        font-size: 13px;
    }
    .blog-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .blog-slider-container {
        padding: 0 40px;
    }
    .blog-slider-arrow.prev {
        left: -5px;
    }
    .blog-slider-arrow.next {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .blog-card {
        flex: 0 0 100%;
    }
    .blog-slider-container {
        padding: 0 30px;
    }
}

/* ==========================================================================
   8. CUSTOMER REVIEWS SECTION (ENDLESS MARQUEE LOOP)
   ========================================================================== */
.reviews-section {
    background-color: #f2f2f2;
    padding: 40px 0 90px 0;
    text-align: center;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 45px;
    padding: 0 20px;
}

.reviews-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.reviews-subtitle {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.04em;
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.reviews-marquee-container:hover .reviews-marquee-track {
    animation-play-state: paused;
}

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewMarquee 38s linear infinite;
    will-change: transform;
}

@keyframes reviewMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.review-card {
    width: 320px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFD3E2 0%, #E8CBE3 100%);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
}

.reviews-marquee-container:hover .review-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.review-stars {
    font-size: 18px;
    color: var(--text-color);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

.review-text {
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 18px;
    flex-grow: 1;
}

.review-author {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: auto;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 28px;
    }
    .reviews-subtitle {
        font-size: 13px;
    }
    .review-card {
        width: 260px;
        padding: 24px 18px;
    }
}

/* ==========================================================================
   9. SITE FOOTER (REFINED CONCEPT LAYOUT)
   ========================================================================== */
.site-footer {
    background-color: #FFD3E2;
    color: var(--text-color);
    padding: 35px 20px 20px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    gap: 20px;
}

.footer-logo-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-svg {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    fill: var(--text-color);
}

.footer-divider {
    width: 1px;
    height: 70px;
    background-color: rgba(10, 35, 38, 0.15);
    flex-shrink: 0;
}

.footer-nav-cols {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.footer-col {
    text-align: left;
}

.footer-col-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text-color);
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-social-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icon-link:hover {
    background-color: var(--text-color);
    color: #FFD3E2;
    transform: translateY(-2px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(10, 35, 38, 0.15);
    width: 100%;
    padding-top: 18px;
    font-family: var(--sans);
    font-size: 12.5px;
    color: rgba(10, 35, 38, 0.7);
}

@media (max-width: 868px) {
    .footer-main-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-logo-col, .footer-social-col {
        justify-content: center;
        align-items: center;
    }
    .footer-divider {
        display: none;
    }
    .footer-col {
        text-align: center;
    }
}

/* ==========================================================================
   3D CUBOID HORIZONTAL ROTATION (IN-CARD FLIP TO REVEAL AMAZON & NYKAA)
   ========================================================================== */
.card-shop-cuboid {
    perspective: 1000px;
    width: 100%;
    max-width: 220px;
    height: 40px;
    margin: 6px auto 0 auto;
}

.cuboid-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

/* Flipped State - Rotate 180 degrees horizontally around Y-axis */
.card-shop-cuboid.is-flipped .cuboid-inner {
    transform: rotateY(180deg);
}

.cuboid-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.cuboid-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.cuboid-front .product-action-btn,
.cuboid-front .tools-shop-btn {
    width: 100%;
    height: 100%;
    margin: 0;
}

.cuboid-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
}

/* Mini Platform Buttons Inside Cards (No Arrows) */
.inline-platform-btn {
    flex: 1;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #0A2326;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    padding: 0 12px;
    border-radius: 30px;
    text-decoration: none;
    border: 1.5px solid #ececec;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.inline-platform-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.inline-platform-btn span {
    letter-spacing: 0.01em;
}

.inline-platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border-color: #dcdcdc;
    background-color: #fafafa;
}

/* ==========================================================================
   UNIFIED MULTI-DEVICE RESPONSIVE SYSTEM (DESKTOP, TABLET, MOBILE)
   ========================================================================== */

/* Large Desktop & High-DPI Displays (1440px and above) */
@media (min-width: 1440px) {
    .products-slider-container,
    .blog-slider-container,
    .footer-container {
        max-width: 1360px;
    }
    .tools-slider-container {
        max-width: 100%;
        padding: 0 25px;
    }
}

/* Medium Desktop / Laptops (1025px - 1399px) */
@media (max-width: 1399px) and (min-width: 1025px) {
    .banner-cta-btn {
        font-size: 14px;
        padding: 12px 32px;
    }
    .product-card {
        flex: 0 0 calc((100% - 72px) / 4);
    }
}

/* Tablet Landscape & Small Laptops (992px - 1024px) */
@media (max-width: 1024px) {
    .header-top-row {
        padding: 14px 24px;
    }
    .header-logo-svg {
        height: 36px;
    }
    .best-sellers-section,
    .ig-videos-section,
    .tools-accessories-section,
    .blog-section,
    .reviews-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-title,
    .ig-videos-title,
    .tools-title,
    .blog-title,
    .reviews-title {
        font-size: 32px;
    }
    .tab-btn {
        font-size: 32px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    .product-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
    .tool-card {
        flex: 0 0 calc((100% - 32px) / 3);
    }
    .blog-card {
        flex: 0 0 calc((100% - 48px) / 3);
    }
    .products-slider-container,
    .blog-slider-container {
        padding: 0 45px;
    }
    .tools-slider-container {
        padding: 0 20px;
    }
    .banner-btn-wrapper {
        bottom: 14%;
    }
    .banner-cta-btn {
        font-size: 12px;
        padding: 10px 26px;
    }
}

/* Mobile Devices & Small Tablets (481px - 768px) */
@media (max-width: 768px) {
    .wavy-ribbon-section {
        display: none !important;
    }
    .header-top-row {
        padding: 12px 18px;
    }
    .header-logo-svg {
        height: 32px;
    }
    .banner-btn-wrapper {
        bottom: 13%;
    }
    .banner-cta-btn {
        font-size: 11px;
        padding: 8px 22px;
        border-radius: 30px;
    }
    .best-sellers-section,
    .ig-videos-section,
    .tools-accessories-section,
    .blog-section,
    .reviews-section {
        padding-top: 40px;
        padding-bottom: 45px;
    }
    .section-title,
    .ig-videos-title,
    .tools-title,
    .blog-title,
    .reviews-title {
        font-size: 26px;
    }
    .tab-btn {
        font-size: 24px;
    }
    .product-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .tool-card {
        flex: 0 0 calc((100% - 16px) / 2.2);
    }
    .blog-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .products-slider-container,
    .blog-slider-container {
        padding: 0 35px;
    }
    .tools-slider-container {
        padding: 0 15px;
    }
    .slider-arrow,
    .tools-slider-arrow,
    .blog-slider-arrow {
        width: 38px;
        height: 38px;
    }
    .slider-arrow.prev,
    .tools-slider-arrow.prev,
    .blog-slider-arrow.prev {
        left: -4px;
    }
    .slider-arrow.next,
    .tools-slider-arrow.next,
    .blog-slider-arrow.next {
        right: -4px;
    }
    .card-shop-cuboid {
        max-width: 100%;
        height: 38px;
    }
    .inline-platform-btn {
        font-size: 11px;
        padding: 0 8px;
        gap: 5px;
    }
    .inline-platform-btn img {
        width: 15px;
        height: 15px;
    }
    .video-card {
        width: 200px;
    }
    .wavy-ribbon-section {
        padding: 15px 0 5px 0;
    }
    .wavy-ribbon-section.ribbon-2 {
        padding: 20px 0 5px 0;
    }
    .desktop-ribbon {
        display: none !important;
    }
    .mobile-ribbon {
        display: block !important;
    }
    .wavy-ribbon-svg.mobile-ribbon {
        height: 80px;
    }
    .mobile-ribbon-text {
        font-size: 10px;
        letter-spacing: 0.15em;
    }
}

/* Small Mobile Screens (320px - 480px) */
@media (max-width: 480px) {
    .header-top-row {
        padding: 10px 14px;
    }
    .header-logo-svg {
        height: 28px;
    }
    .banner-btn-wrapper {
        bottom: 11%;
    }
    .banner-cta-btn {
        font-size: 9.5px;
        padding: 6px 16px;
        border-radius: 20px;
    }
    .banner-dots {
        bottom: 10px;
        gap: 8px;
    }
    .banner-dot {
        width: 18px;
        height: 18px;
    }
    .banner-dot .dot-inner {
        width: 6px;
        height: 6px;
    }
    .best-sellers-tabs-container {
        gap: 16px;
        margin-bottom: 20px;
    }
    .tab-btn {
        font-size: 20px;
    }
    .product-card {
        flex: 0 0 100%;
    }
    .tool-card {
        flex: 0 0 85%;
    }
    .blog-card {
        flex: 0 0 100%;
    }
    .products-slider-container,
    .blog-slider-container {
        padding: 0 25px;
    }
    .tools-slider-container {
        padding: 0 10px;
    }
    .slider-arrow,
    .tools-slider-arrow,
    .blog-slider-arrow {
        width: 32px;
        height: 32px;
    }
    .slider-arrow svg,
    .tools-slider-arrow svg,
    .blog-slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    .card-shop-cuboid {
        height: 36px;
    }
    .product-action-btn,
    .tools-shop-btn {
        font-size: 10px;
        height: 36px;
    }
    .inline-platform-btn {
        font-size: 10.5px;
        padding: 0 6px;
    }
    .video-card {
        width: 170px;
    }
    .wavy-ribbon-section {
        padding: 10px 0 0 0;
    }
    .wavy-ribbon-section.ribbon-2 {
        padding: 15px 0 0 0;
    }
    .wavy-ribbon-svg.mobile-ribbon {
        height: 65px;
    }
    .mobile-ribbon-text {
        font-size: 8.5px;
        letter-spacing: 0.12em;
    }
    .review-card {
        width: 250px;
        padding: 20px 16px;
    }
    .footer-nav-cols {
        gap: 30px;
        flex-direction: column;
    }
}
