/* =============================================================
   @font-face — Kittitada (PSL Kittithada Pro)
   ============================================================= */

/* Thin (100) — Kittithada Thin 35 */
@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL239pro.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL246pro.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Light (300) — Kittithada Light 45 */
@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL240pro.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL241pro.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Regular (400) — Kittithada Roman 55 */
@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL242pro.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL243pro.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Medium (500) — Kittithada Medium 65 */
@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL244pro.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL247pro.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Bold (700) — Kittithada Bold 75 */
@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL245pro.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kittitada';
    src: url('../fonts/kittitada/PSL248pro.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* 1. CSS Custom Properties */
:root {
    --brand-primary: #7BB5E3;
    --brand-dark: #5B9BD5;
    --brand-primary-light: #e8f2fb;
    --brand-primary-lighter: #f0f7fd;
    --footer-bg: #8FBFE6;
    --footer-bottom-bg: #7AAED4;
    --text-dark: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-alt: #f4f8fb;
    --border-color: #e8edf2;
    --border-light: #f0f0f0;
    --font-heading: 'Kittitada', 'Outfit', sans-serif;
    --font-body: 'Kittitada', 'Inter', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-card-hover: 0 8px 30px rgba(123, 181, 227, 0.18);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Global Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    font-size: 125%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.75em;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--brand-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background-color: var(--brand-primary);
    color: var(--bg-white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #c5d9ea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* 3. Section Headings */
.section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--brand-primary);
    text-align: left;
    margin-bottom: 1rem;
    position: relative;
}

.section-heading::after {
    /* content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--brand-primary);
    margin: var(--space-md) auto 0;
    border-radius: 2px; */
}

.section-heading--left {
    text-align: left;
}

.section-heading--left::after {
    margin-left: 0;
}

.section-heading--white {
    color: var(--bg-white);
}

.section-heading--white::after {
    background-color: var(--bg-white);
}

/* 4. Header / Navbar */
.main-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.main-header .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-dots {
    font-size: 0.55rem;
    color: var(--brand-primary);
    letter-spacing: 3px;
    line-height: 1;
    margin-top: 1px;
}

.main-header .navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark) !important;
    padding: 0.1rem 0.85rem !important;
    /* margin: 0 0.1rem; */
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: var(--brand-primary) !important;
}

.main-header .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: var(--transition-fast);
}

.main-header .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.main-header .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 60%;
}

.main-header .navbar-toggler {
    border: none;
    padding: 0.4rem;
    box-shadow: none !important;
}

.main-header .navbar-toggler:focus {
    box-shadow: none;
}

.main-header .navbar-toggler-icon {
    width: 32px;
    height: 32px;
}

/* Offcanvas sidebar */
.offcanvas-nav {
    max-width: 280px;
}

.offcanvas-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);

}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
    color: var(--brand-primary);
    background-color: var(--brand-primary-lighter);
}

/* Desktop hover dropdown for nav items with children */
@media (min-width: 1200px) {
    .nav-hover-dropdown {
        position: relative;
    }

    .nav-hover-dropdown>.dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        margin-top: 0;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        min-width: 220px;
        padding: 0.4rem 0;
    }

    .nav-hover-dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-hover-dropdown>.dropdown-toggle::after {
        display: inline-block !important;
        margin-left: 0.3em;
        vertical-align: 0.15em;
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-left: 0.3em solid transparent;
        transition: transform 0.2s ease;
    }

    .nav-hover-dropdown:hover>.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-hover-dropdown .dropdown-item {
        font-size: 0.82rem;
        padding: 0.5rem 1.2rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: background 0.15s, color 0.15s;
    }

    .nav-hover-dropdown .dropdown-item:hover {
        background-color: var(--brand-primary-lighter, #f0f7fd);
        color: var(--brand-primary, #7BB5E3);
    }

    .nav-hover-dropdown .dropdown-item.active {
        background-color: var(--brand-primary, #7BB5E3);
        color: #fff;
    }
}

@media (max-width: 1199.98px) {

    /* Center logo on mobile navbar */
    .main-header .navbar>.container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .main-header .brand-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-header .brand-logo-img {
        height: 32px;
    }

    .main-header .navbar-toggler {
        margin-left: auto;
    }

    .main-header .navbar-collapse {
        background-color: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: var(--space-md);
        margin-top: var(--space-sm);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
    }

    .main-header .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.15rem 0;
        border-radius: var(--radius-md);
    }

    .main-header .navbar-nav .nav-link:hover {
        background-color: var(--brand-primary-lighter);
    }

    .main-header .navbar-nav .nav-link::after {
        display: none;
    }
}

/* 5. Hero Section / Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #ffffff 30%, #E8EEF8 70%, #D6DFEF 100%);
}

.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-item::before {
    display: none;
}

/* ---- Smooth crossfade transition (override Bootstrap) ---- */
.hero-section .carousel-item {
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Split-panel slide layout ---- */
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
    overflow: hidden;
}

.hero-text-panel {
    position: relative;
    padding: var(--space-3xl) 0;
    z-index: 2;
}

.hero-image-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 1;
    pointer-events: none;
}

/* ---- Staggered entrance animations ---- */
/* Hidden by default only inside carousel (for staggered entrance animation) */
.carousel-item .hero-text-panel .hero-title,
.carousel-item .hero-text-panel .hero-desc,
.carousel-item .hero-text-panel .btn-hero-cta {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item .hero-image-panel .hero-product-img {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
}

/* Active slide: animate elements in with stagger */
.carousel-item.active .hero-title {
    animation: heroSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.carousel-item.active .hero-desc {
    animation: heroSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

.carousel-item.active .btn-hero-cta {
    animation: heroSlideUp 0.1s cubic-bezier(0.16, 1, 0.3, 1) 0.19s forwards;
}

.carousel-item.active .hero-product-img {
    animation: heroImageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-product-img {
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    /* filter: drop-shadow(0 12px 32px rgba(100, 130, 180, 0.18)); */
}

/* ---- Disclaimer at bottom of banner ---- */
.hero-disclaimer {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: var(--space-sm) 0;
    font-size: 0.7rem;
    color: #615E5E;
    line-height: 1.4;
    text-align: left;
    /* Default for desktop */
}

@media (max-width: 991.98px) {
    .hero-disclaimer {
        left: 0;
        right: 0;
        padding: 0;
        text-align: center;
        font-size: 0.6rem;
        /* Center for mobile */
    }
}

/* ---- Typography — dark text on light bg ---- */
.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #67A3D7;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.hero-desc {
    font-size: 1.2rem;
    color: #5A6A80;
    /* margin-bottom: var(--space-xl); */
    font-weight: 400;
    line-height: 1;
}

/* ---- CTA button ---- */
.btn-hero-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0;
    background-color: #4694dd;
    color: #fff;
    text-decoration: none;
    border: 2px solid #4694dd;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 194px;
    text-align: center;
}

.btn-hero-cta:hover {
    color: #4A90C4;
    background-color: transparent;
    box-shadow: 0 6px 24px rgba(74, 144, 196, 0.3);
    transform: translateY(-2px);
}

/* ---- Carousel indicators — pill style ---- */
.hero-section .carousel-indicators {
    bottom: 24px;
    gap: 6px;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #8B8B8B;
    opacity: 0.35;
    border: none;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .carousel-indicators .active {
    opacity: 1;
    background-color: #4A6A8A;
    width: 28px;
    border-radius: 5px;
}

/* ---- Prev / Next arrows ---- */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    margin: 0 16px;
    opacity: 1;
    transition: var(--transition-fast);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    filter: invert(30%) sepia(10%) saturate(500%) hue-rotate(180deg);
    width: 18px;
    height: 18px;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

/* 6. Best Sellers */
.best-sellers-section {
    padding: 1rem 0;
    background-color: var(--bg-white);
}

.best-sellers-section .section-heading {
    margin-bottom: 1rem;
}

.see-more-wrap {
    text-align: center;
    margin-top: var(--space-2xl);
}

.btn-see-more {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    background: transparent;
    padding: 0.65rem 2rem;
    transition: var(--transition-smooth);
}

.btn-see-more:hover {
    background-color: var(--brand-primary);
    color: var(--bg-white);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

/* 7. Product Cards */
.product-card {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.product-card-img-wrap {
    position: relative;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 166 / 212;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card-img {
    transform: scale(1.03);
}

.badge-overlay-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}

.badge-item {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-best-seller {
    background-color: var(--brand-primary);
    color: var(--bg-white);
}

.badge-new {
    background-color: #ff6b6b;
    color: var(--bg-white);
}

.badge-custom {
    background-color: var(--bg-white);
    color: var(--brand-dark);
    border: 1px solid var(--brand-primary-light);
}

.badge-custom img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.badge-overlay-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.product-card-body {
    padding: var(--space-lg) var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    line-height: 0.8;
}

.product-card-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0;
    overflow: hidden;
    line-height: 0.8;
}

.card-attributes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: var(--space-md);
}

.card-attribute-pill {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--brand-dark);
    background-color: var(--brand-primary-lighter);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.product-card-footer {
    padding-top: var(--space-md);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.product-card-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    background: transparent;
    padding: 0.4rem 1.2rem;
    transition: var(--transition-fast);
}

.product-card:hover .product-card-btn,
.product-card-btn:hover {
    background-color: var(--brand-primary);
    color: var(--bg-white);
    border-color: var(--brand-primary);
}

/* 8. Category Grid */
.all-products-section {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.category-tile {
    text-decoration: none !important;
    display: block;
    text-align: center;
    transition: var(--transition-smooth);
}

.category-tile:hover {
    transform: translateY(-4px);
}

.category-tile-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--bg-white);
    margin-bottom: var(--space-md);
    transition: var(--transition-smooth);
}

.category-tile:hover .category-tile-img-wrap {
    box-shadow: var(--shadow-md);
}

.category-tile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-tile:hover .category-tile-img-wrap img {
    transform: scale(1.05);
}

.category-tile-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--brand-primary);
    transition: var(--transition-fast);
    display: block;
    line-height: 1;
}

.category-tile:hover .category-tile-name {
    color: var(--brand-dark);
}

.capsule-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-2xl);
}

.capsule-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: var(--transition-fast);
}

.capsule-pill:hover,
.capsule-pill.active {
    background-color: var(--brand-primary);
    color: var(--bg-white) !important;
    border-color: var(--brand-primary);
}

/* 9. Reviews Section */
.reviews-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--bg-alt) 100%);
    overflow: hidden;
}

/* ---- Marquee-style infinite scroll for reviews ---- */
.reviews-marquee {
    overflow-x: auto;
    width: 100%;
    position: relative;
    padding: var(--space-md) 0 var(--space-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.reviews-marquee.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.reviews-marquee::-webkit-scrollbar {
    display: none;
}

.reviews-marquee-strip {
    display: flex;
    align-items: stretch;
    gap: 0.8rem;
    flex-wrap: nowrap;
    width: max-content;
    animation: reviews-marquee-scroll 50s linear infinite;
}

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

@keyframes reviews-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Marquee enabled (overflow detected by JS) --- */
.reviews-marquee.enable-marquee-all {
    overflow: hidden;
    padding-bottom: 1rem;
}

.reviews-marquee.enable-marquee-all .reviews-marquee-strip {
    animation: reviews-marquee-scroll 50s linear infinite;
    width: max-content;
}

/* --- If marquee is fully disabled (<= 3 items) --- */
.reviews-marquee.marquee-disabled {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: var(--space-md) var(--space-xl) var(--space-xl);
}

.reviews-marquee.marquee-disabled .reviews-marquee-strip {
    animation: none;
    width: 100%;
    justify-content: center;
}

/* On mobile, if we have <= 3 items, they should be scrollable horizontally rather than centered if they overflow */
@media (max-width: 991px) {
    .reviews-marquee.marquee-disabled .reviews-marquee-strip {
        justify-content: flex-start;
        width: max-content;
    }
}

/* --- If marquee is enabled on mobile only (4-5 items) --- */
@media (min-width: 992px) {
    .reviews-marquee.enable-marquee-mobile-only {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: var(--space-md) var(--space-xl) var(--space-xl);
    }

    .reviews-marquee.enable-marquee-mobile-only .reviews-marquee-strip {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .reviews-marquee.enable-marquee-mobile-only .duplicate-item {
        display: none !important;
    }

    /* Fallback to left-align scrollable behavior if screen is narrower than the items (approx < 1520px for 5 items) */
    @media (max-width: 1520px) {
        .reviews-marquee.enable-marquee-mobile-only .reviews-marquee-strip {
            justify-content: flex-start;
            width: max-content;
        }
    }
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    width: 287px;
    height: 490px;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.review-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.review-play-overlay i {
    font-size: 2.5rem;
    color: var(--bg-white);
    opacity: 0.9;
}

.review-card:hover .review-play-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.review-card-body {
    padding: var(--space-md);
}

.reviewer-meta {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--space-sm);
    border: 2px solid var(--brand-primary-light);
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.review-social-badge {
    font-size: 0.72rem;
    color: var(--brand-dark);
}

.review-social-badge i {
    margin-right: 3px;
}

.review-rating {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* 10. Press / Awards */
.press-section {
    padding: var(--space-4xl) 0;
    background-color: var(--bg-white);
}

.press-award-text {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.press-awards-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.5rem 0;
}

.press-logos-strip {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.press-awards-marquee:hover .press-logos-strip {
    animation-play-state: paused;
}

.press-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin: 0;
}

.press-logo-item img {
    height: 90px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.press-logo-item:hover img {
    transform: scale(1.08);
}

.press-logo-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    max-width: 150px;
    text-align: center;
    line-height: 0.8;
    word-wrap: break-word;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 11. Category Page */
.category-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.category-hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: var(--space-2xl) var(--space-3xl);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 70%);
}

.category-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-sm);
}

.category-hero-desc {
    font-size: 1rem;
    color: var(--bg-white);
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}

.sub-category-section {
    padding: var(--space-3xl) 0;
}

.sub-category-section:nth-child(even) {
    background-color: var(--bg-light);
}

.subcategory-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-sm);
    /* border-bottom: 2px solid var(--brand-primary-light); */
    display: inline-block;
}

/* 12. Product Detail */
.product-gallery {
    position: relative;
}

.gallery-main-wrap {
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 0;
    margin-bottom: var(--space-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    cursor: zoom-in;
}

.gallery-thumbnail-wrap {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumbnail {
    width: 72px;
    height: 72px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 3px;
    cursor: pointer;
    object-fit: contain;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.gallery-thumbnail:hover {
    transform: translateY(2px);
}

.gallery-thumbnail.active {
    border-color: var(--brand-primary);
}

@media (min-width: 768px) {
    .gallery-thumbnail {
        width: calc((100% - 40px) / 5);
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.product-info {
    padding-left: var(--space-xl);
}

.product-info .product-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.product-info .product-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.product-info .product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: var(--space-xl);
}

.spec-option-group {
    margin-bottom: var(--space-lg);
}

.spec-option-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.btn-size-selector {
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-body);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-size-selector:hover,
.btn-size-selector.active {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary-lighter);
    color: var(--brand-dark);
}

.color-swatches {
    margin-bottom: var(--space-xl);
}

.color-swatch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    outline: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    position: relative;
}

.btn-color-swatch:hover,
.btn-color-swatch.active {
    outline-color: var(--brand-primary);
    transform: scale(1.15);
}

.active-shade-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin-left: var(--space-sm);
    font-size: 0.85rem;
}

.btn-shop-now {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    background: transparent;
    padding: 0.2rem 4rem;
    transition: var(--transition-smooth);
}

.btn-shop-now:hover {
    background-color: var(--brand-primary);
    color: var(--bg-white);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 181, 227, 0.35);
}

.btn-shop-now--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #aaa;
    color: #aaa;
}

.detail-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.detail-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--brand-primary-lighter);
    color: var(--brand-dark);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-badge-pill img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Accordion */
.product-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 !important;
    margin-bottom: 0;
}

.product-accordion .accordion-item:last-child {
    border-bottom: none;
}

.product-accordion .accordion-header {
    border-bottom: 1px solid var(--border-light);
}

.product-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-primary);
    background-color: var(--bg-white);
    box-shadow: none !important;
    padding: 1rem 0;
}

.product-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-white);
    color: var(--brand-primary);
}

.product-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237BB5E3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.product-accordion .accordion-body {
    background-color: var(--bg-white);
    line-height: 1.75;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.75rem 0 1.25rem;
}

/* 13. About Page */
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #dce6f0 0%, #e4ecf5 30%, #eef3f9 55%, #f5f8fc 75%, #eaeff6 100%);
    padding: 80px 0 0;
    min-height: 500px;
}

.about-hero .row {
    min-height: 420px;
}

.about-hero-text {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.about-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--text-body);
    /* margin-bottom: var(--space-md); */
    line-height: 1;
    text-align: center;
}

.about-hero-product-img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin-bottom: -4px;
}

.about-hero-img-col {
    position: relative;
    align-self: flex-end;
}

.about-intro {
    padding: 80px 0 0 0;
    background: var(--bg-white);
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1;
    color: var(--text-body);
    max-width: 900px;
    margin: 0 auto var(--space-md);
    letter-spacing: 0.01em;
}

.about-paragraph-sm {
    font-size: 0.95rem;
    line-height: 1;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 992px) {

    /* .about-paragraph,
    .about-paragraph-sm {
        max-width: 80%;
    } */
}

.about-core-values {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-section-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.light-blue-gradient {
    background: linear-gradient(170deg, #ffffff 58.65%, #EFF1F9 100%);
    width: 100%;
}

.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0px 0 0 0;
}

.about-image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-slow);
}

.about-image-card:hover img {
    transform: scale(1.02);
}

.about-value-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--brand-primary);
    margin-bottom: 0;
}

.about-value-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1;
}

.about-value-row {
    margin-bottom: 0;
    margin-top: -100px;
}

/* 14. Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
    background-color: var(--bg-light);
}

.contact-form-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-form-wrap .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.contact-form-wrap .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(123, 181, 227, 0.15);
}

.btn-submit {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--brand-primary);
    color: var(--bg-white);
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--brand-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 181, 227, 0.3);
}

/* 14b. Contact Us Page */
.contact-page {
    padding: 80px 0 120px;
    min-height: 60vh;
}

.contact-page-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: #67A3D7;
    margin-bottom: 2rem;
}

.contact-page-address {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-page-info {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-page-info a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.contact-page-info a:hover {
    color: var(--brand-primary);
}

.contact-map-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #67A3D7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-map-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.contact-map-wrap {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

@media (max-width: 991.98px) {
    .contact-map-wrap {
        min-height: 320px;
    }

    .contact-map-wrap iframe {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .contact-page {
        padding: 60px 0 80px;
    }

    .contact-page-content {
        text-align: center;
    }

    .contact-page-heading {
        font-size: 1.8rem;
    }

    .contact-page-address {
        font-size: 0.95rem;
    }

    .contact-map-wrap {
        min-height: 280px;
    }

    .contact-map-wrap iframe {
        min-height: 280px;
    }
}

/* 15. Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--bg-white);
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.footer-brand .logo-dots {
    color: var(--bg-white);
    opacity: 0.8;
}

.footer-community {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--bg-white);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.footer-nav-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-white);
    margin-bottom: var(--space-lg);
    opacity: 0.85;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bg-white);
    opacity: 0.85;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    margin-top: var(--space-2xl);
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-bottom-text {
    font-size: 0.78rem;
    color: var(--bg-white);
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-bottom-text a {
    color: var(--bg-white);
    opacity: 0.85;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-text a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom-text .separator {
    margin: 0 var(--space-sm);
    opacity: 0.5;
}

/* 16. Flash Messages */
.flash-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 420px;
}

.flash-container .alert {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
}

/* 17. Buttons — Global Utility */
.btn-brand {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--brand-primary);
    color: var(--bg-white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.btn-brand:hover {
    background-color: var(--brand-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 181, 227, 0.3);
}

.btn-brand-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: transparent;
    color: var(--brand-dark);
    border: 2px solid var(--brand-primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.btn-brand-outline:hover {
    background-color: var(--brand-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* 18. Utilities */
.text-brand {
    color: var(--brand-dark) !important;
}

.bg-brand-light {
    background-color: var(--brand-primary-lighter) !important;
}

.section-padding {
    padding: var(--space-4xl) 0;
}

.section-padding-sm {
    padding: var(--space-2xl) 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.skeleton-loading {
    background: linear-gradient(90deg, var(--bg-light) 25%, #e8edf2 50%, var(--bg-light) 75%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.5s ease infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 19. Responsive — Tablet (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 420px;
    }

    .hero-image-panel {
        position: static;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--space-xl) 0;
        margin: 0;
        z-index: 1;
        pointer-events: auto;
    }

    .hero-text-panel {
        padding: var(--space-xl) 0;
        text-align: center;
    }

    .hero-title {
        font-size: 3.1rem;
    }

    .hero-desc {
        /* inherited from .hero-text-panel */
    }

    .hero-product-img {
        /* max-height: 380px; */
    }

    .section-heading {
        font-size: 1.5rem;
        letter-spacing: 0;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .category-hero img {
        height: 260px;
    }

    .category-hero-title {
        font-size: 2rem;
    }

    .product-info {
        padding-left: 0;
        margin-top: var(--space-xl);
    }

    .about-hero-title {
        font-size: 2.25rem;
    }

    .about-hero-product-img {
        width: 100%;
    }

    .main-footer {
        padding-top: var(--space-2xl);
        text-align: start;
    }

    .main-footer .brand-logo {
        display: inline-block;
        margin: 0;
    }

    .main-footer .brand-logo-img {
        height: 36px;
    }

    .main-footer .footer-community-label {
        text-align: start;
        font-size: 1.2rem;
        margin-top: 0;
        /* margin-bottom: -0.2rem; */
    }

    .footer-social-icons {
        justify-content: start;
        margin-bottom: 0.5rem;
    }

    .main-footer .footer-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .main-footer .footer-nav-col ul {
        text-align: start;
        margin-top: 0;
    }

    .main-footer .footer-nav-col ul li a {
        font-size: 0.75rem;
    }

    .main-footer .footer-nav-col {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: var(--space-md);
    }
}

/* 20. Responsive — Mobile (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .breadcrumb {
        display: none !important;
    }

    .hero-slide {
        min-height: 600px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .hero-text-panel {
        position: relative;
        z-index: 2;
        padding: var(--space-lg) 0 0;
        text-align: center;
        order: -1;
    }

    .hero-image-panel {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        z-index: 1;
        pointer-events: none;
    }

    .hero-product-img {
        width: 90%;
        height: 90%;
        max-height: none;
        object-fit: cover;
        object-position: center bottom;
    }

    .page-hero-slide {
        min-height: auto;
        padding: 0;
        flex-direction: column;
    }

    .page-hero-text-panel {
        padding: var(--space-lg) 0 0;
        text-align: center;
    }

    .page-hero-image-panel {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        z-index: 1;
        pointer-events: auto;
    }

    .page-hero-product-img {
        width: auto;
        height: auto;
        max-height: 320px;
        object-fit: contain;
    }

    /* Remove spacing when banner has no button */
    .hero-text-panel .hero-desc:last-child,
    .hero-text-panel .hero-title:last-child {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 2rem;
        /* letter-spacing: 2px; */
        white-space: normal;
    }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 32px;
        height: 32px;
        margin: 0 6px;
    }

    .section-heading {
        font-size: 1.25rem;
        /* letter-spacing: 1.5px; */
        margin-bottom: 1rem;
    }

    .best-sellers-section {
        padding: 1rem 0;
    }

    .all-products-section {
        padding: 1rem 0;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .category-tile-name {
        font-size: 0.8rem;
        /* letter-spacing: 1px; */
    }

    .product-card-body {
        padding: var(--space-md);
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-subtitle {
        font-size: 0.9rem;
    }

    .reviews-section {
        padding: 0.5rem 0 0 0;
    }

    .reviews-section .section-heading {
        text-align: center;
        /* white-space: nowrap; */
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 1;
        margin-bottom: 0;
    }

    .badge-overlay-img {
        width: 48px;
        height: 48px;
    }

    .review-card {
        min-width: 122px;
        width: 122px;
        height: 218px;
    }

    .review-card-body {
        padding: var(--space-xs) var(--space-sm);
    }

    .review-card-body p {
        font-size: 0.7rem !important;
    }

    .press-logo-item img {
        height: 59px;
        max-width: 100px;
    }

    .press-logos-strip {
        gap: var(--space-lg);
    }

    .category-hero img {
        height: 200px;
    }

    .category-hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .category-hero-overlay {
        padding: var(--space-lg);
    }

    .gallery-main-img {
        max-height: 350px;
    }

    .product-info .product-name {
        font-size: 1.35rem;
    }

    .about-hero {
        padding: 40px 0 0;
        text-align: center;
        min-height: auto;
    }

    .about-hero .row {
        min-height: auto;
    }

    .about-hero-text {
        text-align: center;
        margin-bottom: 0;
    }

    .about-hero-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-product-img {
        width: 100%;
    }

    .about-intro {
        padding: 0;
    }

    .about-core-values {
        padding: 32px 0;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1;
        margin-bottom: var(--space-sm);
    }

    .about-paragraph-sm {
        font-size: 0.9rem;
    }

    .about-value-title {
        font-size: 1.15rem;
        margin-top: var(--space-md);
        text-align: center;
    }

    .about-value-text {
        font-size: 0.9rem;
        line-height: 1;
        text-align: center;
    }

    .about-section-heading {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }
}

/* 21. Responsive — Small phones (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .hero-product-img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center bottom;
    }

    .product-card-footer {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .press-logos-strip {
        gap: var(--space-md);
    }

    .press-logo-item img {
        height: 60px;
        max-width: 100%;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }

    .about-hero-title {
        font-size: 1.4rem;
    }

    .about-hero-product-img {
        width: 100%;
    }

    .category-hero-title {
        font-size: 1.25rem;
    }

    .main-footer .brand-logo-img {
        height: 48px;
    }

    .main-footer .footer-community-label {
        font-size: 0.8rem;

    }
}

/* 22. Print Styles */
@media print {

    .main-header,
    .main-footer,
    .hero-section,
    .reviews-section {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .product-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* =============================================================
   Color Swatches on Product Cards
   ============================================================= */
.product-card-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px;
}

.swatch-btn {
    width: 26px;
    height: 26px;
    padding: 2px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swatch-btn:hover {
    transform: scale(1.15);
}

.swatch-btn.active {
    border-color: #333;
}

.swatch-color {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.swatch-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Smooth image transition on swatch click */
.product-card-main-img {
    transition: opacity 0.25s ease;
}

.product-card-main-img.switching {
    opacity: 0.3;
}