/* ==========================================================================
   Nixie Cosmetics - Premium Beauty E-Commerce
   Complete Stylesheet (Rewritten from scratch)

   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   1.  CSS Variables & Reset
   2.  Typography
   3.  Layout Utilities
   4.  Top Bar
   5.  Navbar & Navigation
   6.  Offcanvas Mobile Menu
   7.  Hero Section / Banner Slider
   8.  Category Section
   9.  Product Cards
   10. Product Grid & Shop Page
   11. Features / Why Choose Us
   12. Product Detail Page
   13. Cart Page
   14. Checkout Page
   15. Auth Pages (Login / Register)
   16. Account Page
   17. About Page
   18. Contact Page
   19. Footer
   20. Buttons
   21. Forms & Inputs
   22. Pagination
   23. Breadcrumbs
   24. Toast / Flash Notifications
   25. Loading & Animations
   26. Back to Top
   27. Miscellaneous (Testimonials, Brands, Newsletter)
   28. Track Order Page
   29. Order Confirmation Page
   30. Checkout Page (Expanded)
   31. Auth Page Extras (Login / Register specifics)
   32. Footer Missing Classes
   33. Mobile Cart Card Layout
   34. Comprehensive Responsive Breakpoints
   35. Product Detail Page (Full)
   36. Account Page (Full)
   37. Category Page (Full)
   ========================================================================== */


/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */

:root {
    /* Color Palette - Modern & Vibrant */
    --primary: #B5785A;
    --primary-hover: #9A6347;
    --primary-light: #F0DDD3;
    --secondary: #111111;
    --accent: #C4956A;
    --bg: #FFFFFF;
    --bg-alt: #F7F5F3;
    --card-bg: #FFFFFF;
    --text: #111111;
    --text-secondary: #555555;
    --text-light: #888888;
    --border: #E5E0DB;
    --success: #16A34A;
    --danger: #DC2626;
    --warning: #F59E0B;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 80px;

    /* Shadows - Stronger for depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 50px;
    --radius-full: 50%;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Legacy variable aliases (used in inline styles in PHP templates) */
    --color-primary: #B5785A;
    --color-primary-dark: #9A6347;
    --color-primary-light: #F0DDD3;
    --color-secondary: #111111;
    --color-accent: #C4956A;
    --color-bg: #FFFFFF;
    --color-card-bg: #FFFFFF;
    --color-text-primary: #111111;
    --color-text-secondary: #555555;
    --color-text-light: #888888;
    --color-border: #E5E0DB;
    --color-success: #16A34A;
    --color-danger: #DC2626;
    --color-warning: #F59E0B;
    --gradient-dark: linear-gradient(135deg, #111111 0%, #2A2A2A 100%);
    --primary-gold: #B5785A;
    --primary-gold-dark: #9A6347;
    --primary-gold-light: #F0DDD3;
    --dark-brown: #111111;
    --dark-brown-light: #2A2A2A;
    --cream: #F7F5F3;
    --cream-dark: #E5E0DB;
    --text-muted: #555555;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--primary);
    color: #FFFFFF;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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


/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.25;
    margin-top: 0;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 0.8rem;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-heading-line {
    width: 50px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.section-heading-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Section Header (used in homepage sections) */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto;
}


/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}


/* ==========================================================================
   4. Top Bar
   ========================================================================== */

.top-bar {
    background-color: var(--secondary);
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.top-bar-left {
    flex-wrap: nowrap;
}

.top-bar .container {
    display: flex;
    align-items: center;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 12px;
    transition: color var(--transition);
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--primary) !important;
}

.top-bar-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
}

.top-bar-announcement {
    color: var(--primary);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.text-primary-gold {
    color: var(--primary) !important;
}


/* ==========================================================================
   5. Navbar & Navigation
   ========================================================================== */

.main-navbar {
    background: var(--card-bg);
    height: 80px;
    transition: box-shadow var(--transition);
    z-index: 1030;
    border-bottom: 1px solid transparent;
}

.main-navbar.scrolled,
.main-navbar.sticky-top {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--border);
}

.navbar-logo {
    max-height: 60px;
    width: auto;
    transition: opacity var(--transition);
}

.navbar-logo:hover {
    opacity: 0.85;
}

/* Nav Links */
.main-navbar .nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text) !important;
    padding: 8px 16px;
    position: relative;
    transition: color var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 2px;
}

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

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 20px;
}

/* Dropdown toggle - prevent double pseudo-element conflict */
.main-navbar .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    vertical-align: middle;
    margin-left: 4px;
    position: static;
    width: auto;
    height: auto;
    background: none;
}

/* Dropdown */
.main-navbar .dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navbar .dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    color: var(--text);
    transition: all var(--transition);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
    background: var(--bg-alt);
    color: var(--primary);
}

.main-navbar .dropdown-divider {
    border-color: var(--border);
    margin: 4px 0;
}

/* Search */
.header-search {
    position: relative;
}

.header-search .form-control {
    width: 200px;
    height: 38px;
    border-radius: 24px;
    border: 1.5px solid var(--border);
    padding: 0 40px 0 16px;
    font-size: 13px;
    background: var(--bg);
    transition: all var(--transition);
}

.header-search .form-control:focus {
    width: 280px;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.12);
    background: var(--card-bg);
}

.header-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    padding: 6px 10px;
    cursor: pointer;
    transition: color var(--transition);
}

.header-search-btn:hover {
    color: var(--primary);
}

/* Icon Buttons */
.header-icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text);
    background: transparent;
    border: none;
    font-size: 16px;
    position: relative;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.header-icon-btn:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

/* Cart Badge */
.header-badge-count {
    position: absolute;
    top: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* User Dropdown */
.user-dropdown .dropdown-toggle::after {
    display: none;
}

.user-dropdown .dropdown-menu {
    min-width: 200px;
}

.user-dropdown .dropdown-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navbar Toggler */
.main-navbar .navbar-toggler {
    border: none;
    padding: 4px 8px;
    font-size: 20px;
}

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


/* ==========================================================================
   6. Offcanvas Mobile Menu
   ========================================================================== */

#mobileMenu {
    max-width: 300px;
    background: var(--card-bg);
}

#mobileMenu .offcanvas-header {
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
}

#mobileMenu .offcanvas-body {
    padding: 20px;
}

#mobileMenu .offcanvas-body .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color var(--transition);
}

#mobileMenu .offcanvas-body .nav-link:hover,
#mobileMenu .offcanvas-body .nav-link.active {
    color: var(--primary);
}

#mobileMenu .offcanvas-body .dropdown-menu {
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}

.offcanvas-brand .navbar-logo {
    max-height: 50px;
}

.offcanvas-contact {
    font-size: 13px;
    color: var(--text-secondary);
}

.offcanvas-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.offcanvas-contact a:hover {
    color: var(--primary);
}


/* ==========================================================================
   7. Hero Section / Banner Slider
   ========================================================================== */

/* Carousel Hero */
.hero-slider .carousel-item {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(26, 26, 26, 0.25) 100%);
}

.hero-slider .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: 40%;
}

.hero-slider .carousel-caption h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-slider .carousel-caption p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ── Hero Section (Homepage) ── */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-indicators {
    z-index: 5;
    margin-bottom: 30px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    opacity: 1;
    margin: 0 5px;
}

.hero-section .carousel-indicators button.active {
    background: #fff;
    border-color: #fff;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 5;
    width: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    background-size: 50%;
}

.hero-slide {
    position: relative;
    width: 100%;
    /* Match admin's recommended 1920x600 banner so uploaded images aren't cropped on the sides */
    aspect-ratio: 1920 / 600;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* `contain` would show the whole image but leave letterbox bars; since the section now
       matches the recommended 1920x600 ratio, `cover` shows the full image with no cropping */
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 500;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border: 2px solid var(--color-primary);
}

.hero-btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 139, 111, 0.35);
}

.hero-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-btn-outline:hover {
    background: #FFFFFF;
    color: var(--secondary);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}


/* Static Hero Fallback */
.hero-static {
    min-height: 500px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-static::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 139, 111, 0.12) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.hero-static::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.hero-static h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.hero-static .lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 540px;
    line-height: 1.7;
}

/* Hero CTA Buttons */
.btn-gold {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(181, 120, 90, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: #FFFFFF;
    color: var(--secondary);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}


/* ==========================================================================
   8. Category Section
   ========================================================================== */

.categories-section {
    padding: 80px 0;
    background: var(--bg);
}

.categories-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 32px;
    justify-content: flex-start;
    padding-bottom: 12px;
    scroll-behavior: smooth;
}

/* Hide scrollbar on desktop, keep functionality */
.categories-grid::-webkit-scrollbar { height: 4px; }
.categories-grid::-webkit-scrollbar-track { background: transparent; }
.categories-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.categories-grid::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.category-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
    padding: 1.2rem 0.8rem;
    transition: transform var(--transition);
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.category-card .category-img-wrap,
.category-card .category-card-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
}

.category-card:hover .category-img-wrap,
.category-card:hover .category-card-image {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(181, 120, 90, 0.25);
    transform: scale(1.05);
}

.category-card .category-img-wrap img,
.category-card .category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-wrap img,
.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 600;
}

.category-card a {
    text-decoration: none;
    color: inherit;
}


/* ==========================================================================
   9. Product Cards
   ========================================================================== */

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* Product Image */
.product-card .product-img-wrap,
.product-card .product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-alt);
}

.product-card .product-img-wrap img,
.product-card .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img,
.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

/* Product Badge */
.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
    letter-spacing: 0.3px;
}

.product-card .product-badge.badge-new {
    background: var(--success);
}

.product-card .product-badge.badge-featured {
    background: var(--accent);
}

/* Product Action Overlay */
.product-card .product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
    display: flex;
    justify-content: center;
    gap: 8px;
    transition: bottom var(--transition);
}

.product-card:hover .product-actions-overlay {
    bottom: 0;
}

.product-actions-overlay .action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: none;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-actions-overlay .action-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Product Wishlist (top right) */
.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.product-wishlist:hover,
.product-wishlist.active {
    color: var(--danger);
    transform: scale(1.1);
}

/* Product Info */
.product-card .product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.product-card .product-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-name a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.product-card .product-name a:hover {
    color: var(--primary);
}

/* Product Rating */
.product-card .product-rating {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card .product-rating .stars {
    color: var(--accent);
    font-size: 12px;
}

.product-card .product-rating .stars .empty {
    color: #DDD;
}

.product-card .product-rating .rating-count {
    font-size: 12px;
    color: var(--text-light);
}

/* Product Price */
.product-card .product-price {
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.product-card .price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.product-card .price-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 4px;
}

.product-card .price-discount {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-left: 4px;
    background: rgba(76, 175, 80, 0.08);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* Add to Cart Button */
.product-card .btn-add-cart {
    width: 100%;
    background: var(--secondary);
    color: #FFFFFF;
    border: none;
    padding: 11px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
}

.product-card .btn-add-cart:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(181, 120, 90, 0.35);
}

/* Product Card - Alternate class name aliases (used by homepage renderer) */
.product-card .product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card .product-card-brand { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); font-weight: 500; margin-bottom: 4px; }
.product-card .product-card-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .product-card-name a { color: inherit; text-decoration: none; }
.product-card .product-card-name a:hover { color: var(--primary); }
.product-card .product-card-rating { margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.product-card .product-card-rating .stars { color: var(--accent); font-size: 12px; }
.product-card .product-card-rating .stars .empty { color: #DDD; }
.product-card .product-card-rating .rating-count { font-size: 12px; color: var(--text-light); }
.product-card .product-card-price { margin-top: auto; margin-bottom: 12px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.product-card .product-card-price .current-price { font-size: 16px; font-weight: 600; color: var(--primary); }
.product-card .product-card-price .original-price { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-left: 4px; }
.product-card .product-card-action { margin-top: auto; }
.product-card .product-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.product-card .product-badge-sale { background: var(--danger); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }


/* ==========================================================================
   10. Product Grid & Shop Page
   ========================================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Shop Breadcrumbs */
.shop-breadcrumbs {
    background: var(--bg-alt);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.shop-breadcrumbs .breadcrumb {
    margin-bottom: 0;
    font-size: 13px;
}

.shop-breadcrumbs .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.shop-breadcrumbs .breadcrumb-item.active {
    color: var(--text-secondary);
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 90px;
}

.filter-widget {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.filter-widget h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary);
}

.filter-widget .form-check {
    margin-bottom: 6px;
}

.filter-widget .form-check-label {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.filter-widget .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.filter-widget .price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-widget .price-inputs input {
    width: 100%;
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.filter-widget .price-inputs input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.1);
}

.filter-widget .btn-filter {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: background var(--transition);
    cursor: pointer;
}

.filter-widget .btn-filter:hover {
    background: var(--primary-hover);
}

.filter-widget .category-list,
.filter-widget .brand-list {
    max-height: 220px;
    overflow-y: auto;
}

/* Rating filter */
.rating-filter-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
}

.rating-filter-option:hover {
    color: var(--primary);
}

.rating-filter-option .stars {
    color: var(--accent);
    font-size: 13px;
}

/* Sort bar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.shop-toolbar .result-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.shop-toolbar select {
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    background: var(--card-bg);
}


/* ==========================================================================
   11. Features / Why Choose Us
   ========================================================================== */

.why-choose-us,
.features-section {
    background: var(--bg);
    padding: 80px 0;
}

.features-section.bg-alt {
    background: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid var(--border);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--color-primary);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #FFFFFF;
}

.feature-card h4,
.feature-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}


/* ==========================================================================
   12. Product Detail Page
   ========================================================================== */

.product-detail-section {
    padding: 40px 0 60px;
}

/* Product Gallery */
.product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 12px;
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-gallery .thumb-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery .thumb-item {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
}

.product-gallery .thumb-item.active,
.product-gallery .thumb-item:hover {
    border-color: var(--primary);
}

.product-gallery .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-detail-info .product-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-detail-info .product-brand-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-detail-info .product-brand-link:hover {
    color: var(--primary);
}

.product-detail-info .product-price-detail {
    margin: 16px 0;
}

.product-detail-info .price-current-detail {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.product-detail-info .price-original-detail {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-detail-info .price-discount-detail {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin-left: 10px;
    background: rgba(76, 175, 80, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

/* Variant pills */
.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.variant-pill {
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--card-bg);
    cursor: pointer;
    transition: all var(--transition);
}

.variant-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.variant-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* Quantity selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-selector .qty-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border: none;
    font-size: 16px;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.qty-selector .qty-btn:hover {
    background: var(--primary-light);
}

.qty-selector .qty-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--card-bg);
}

/* Add to cart - large */
.btn-add-cart-lg {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-add-cart-lg:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 139, 111, 0.3);
}

/* Product Tabs */
.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--border);
}

.product-tabs .nav-tabs .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border: none;
    padding: 12px 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tabs .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--primary);
    background: none;
}

.product-tabs .nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.product-tabs .tab-content {
    padding: 24px 0;
}

/* Reviews */
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-stars {
    color: var(--accent);
    font-size: 13px;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 8px;
}


/* ==========================================================================
   13. Cart Page
   ========================================================================== */

.cart-page {
    padding: 40px 0 60px;
}

.cart-page .page-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.cart-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-table thead {
    background: var(--secondary);
    color: #FFFFFF;
}

.cart-table thead th {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    padding: 14px 16px;
    border: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table tbody td {
    vertical-align: middle;
    padding: 14px 16px;
    font-size: 14px;
    border-color: var(--border);
}

.cart-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.cart-product-name {
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.cart-product-name:hover {
    color: var(--primary);
}

.cart-variant-badge {
    font-size: 11px;
    background: var(--bg-alt);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 4px;
}

/* Quantity Controls */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-control button {
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: var(--secondary);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control button:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.qty-control .qty-value {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: #FFFFFF;
    color: var(--secondary);
}

.btn-remove {
    color: var(--danger);
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    background: #FFF5F5;
    color: #B02A37;
}

.line-total {
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
}

/* Order Summary */
.order-summary-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
    border: 1px solid var(--border);
}

.order-summary-card h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-row span:last-child {
    font-weight: 500;
    color: var(--secondary);
}

.summary-row.discount span:last-child {
    color: var(--success);
}

.summary-row.free-shipping span:last-child {
    color: var(--success);
    font-weight: 600;
}

.summary-divider {
    border: none;
    border-top: 1.5px dashed var(--border);
    margin: 16px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Coupon */
.coupon-section {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 20px;
}

.coupon-section label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
}

.coupon-input-group input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.coupon-input-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.12);
}

.btn-apply-coupon {
    background: var(--secondary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background: var(--primary);
}

.coupon-message {
    font-size: 12px;
    margin-top: 8px;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #D1E7DD;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 13px;
    color: #0F5132;
}

.applied-coupon .btn-remove-coupon {
    background: none;
    border: none;
    color: #842029;
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px;
}

/* Cart Buttons */
.btn-checkout {
    background: var(--secondary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-checkout:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 120, 90, 0.4);
}

.btn-checkout:disabled {
    background: #CCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-continue {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.btn-continue:hover {
    color: var(--primary-hover);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
}

.btn-shop-now {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
}

.btn-shop-now:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 139, 111, 0.35);
}


/* ==========================================================================
   14. Checkout Page
   ========================================================================== */

.checkout-section {
    padding: 40px 0 60px;
}

.checkout-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin-bottom: 24px;
}

.checkout-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}


/* ==========================================================================
   15. Auth Pages (Login / Register)
   ========================================================================== */

.auth-section {
    min-height: 70vh;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.auth-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.auth-card-header {
    background: var(--secondary);
    padding: 32px 40px 28px;
    text-align: center;
}

.auth-card-header h2 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.auth-card-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.auth-card-body {
    padding: 32px 40px 40px;
}

.auth-form .form-label {
    font-weight: 500;
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 6px;
}

.auth-form .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 11px 15px;
    font-size: 14px;
    transition: all var(--transition);
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.12);
}

.auth-form .input-group .form-control {
    border-right: none;
}

.auth-form .input-group .btn-outline-secondary {
    border: 1.5px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-light);
    background: transparent;
}

.auth-form .input-group .btn-outline-secondary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-auth {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-auth:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 139, 111, 0.3);
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--card-bg);
    padding: 0 15px;
    position: relative;
    color: var(--text-light);
    font-size: 13px;
}

/* Social Login */
.btn-social {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    background: var(--card-bg);
    width: 100%;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-social:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
    color: var(--secondary);
}

.btn-social i {
    font-size: 16px;
}

.btn-google i { color: #DB4437; }
.btn-facebook i { color: #4267B2; }

.auth-links {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-links a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Auth error alerts */
.alert-errors {
    background: #FFF5F5;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    color: #991B1B;
    padding: 12px 16px;
    font-size: 13px;
}

.alert-errors ul {
    margin: 0;
    padding-left: 18px;
}

.alert-errors ul li {
    margin-bottom: 3px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}


/* ==========================================================================
   16. Account Page
   ========================================================================== */

.account-section {
    padding: 40px 0 60px;
}

.account-sidebar {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.account-sidebar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
    transition: all var(--transition);
}

.account-sidebar .nav-link:hover {
    background: var(--bg-alt);
    color: var(--secondary);
}

.account-sidebar .nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.account-content {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

/* Order Status Badges */
.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pending { background: #FFF3E0; color: #E65100; }
.status-confirmed { background: #E3F2FD; color: #1565C0; }
.status-processing { background: #FFF8E1; color: #F9A825; }
.status-shipped { background: #E8F5E9; color: #2E7D32; }
.status-delivered { background: #E8F5E9; color: #1B5E20; }
.status-cancelled { background: #FFEBEE; color: #C62828; }
.status-returned { background: #F3E5F5; color: #6A1B9A; }


/* ==========================================================================
   17. About Page
   ========================================================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 139, 111, 0.06) 0%, transparent 50%);
    animation: heroFloat 15s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.about-hero h1 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.about-hero .subtitle {
    color: var(--primary-light);
    font-size: 1.05rem;
    position: relative;
}

.about-hero .hero-divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

/* Story Section */
.about-story {
    padding: 80px 0;
    background: var(--card-bg);
}

.story-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Mission/Vision Cards */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-alt);
}

.mv-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.mv-card .mv-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-card .mv-icon i {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.mv-card h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Stats Counter */
.about-stats {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
}

/* Values Cards */
.about-values {
    padding: 80px 0;
    background: var(--card-bg);
}

.value-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    transition: all var(--transition);
    height: 100%;
}

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

.value-card .value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.value-card .value-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.value-card h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Brand Partners */
.about-partners {
    padding: 70px 0;
    background: var(--bg-alt);
}

.partner-logo-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}

.partner-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-logo-card img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 8px;
}

.partner-logo-card .partner-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}


/* ==========================================================================
   18. Contact Page
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 139, 111, 0.05) 0%, transparent 50%);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    position: relative;
    margin: 0;
}

.contact-hero .hero-divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    background: var(--bg-alt);
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

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

.contact-info-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-card .card-icon i {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

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

/* Contact Form */
.contact-form-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-header {
    background: var(--secondary);
    padding: 24px 28px;
}

.form-header h3 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 5px 0 0;
}

.form-body {
    padding: 28px;
}

.form-body .form-label {
    font-weight: 500;
    color: var(--secondary);
    font-size: 13px;
    margin-bottom: 6px;
}

.form-body .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 11px 15px;
    font-size: 14px;
    transition: all var(--transition);
}

.form-body .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.12);
}

.form-body textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 139, 111, 0.3);
}

/* Alert styles */
.alert-success-custom {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-md);
    color: #166534;
    padding: 14px 18px;
    font-size: 14px;
}

.alert-danger-custom {
    background: #FFF5F5;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    color: #991B1B;
    padding: 12px 16px;
    font-size: 13px;
}

.alert-danger-custom ul {
    margin: 0;
    padding-left: 18px;
}

/* Map & Hours */
.map-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    background: var(--bg-alt);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.hours-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    height: auto;
}

.hours-card h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hours-card .hours-icon {
    color: var(--primary);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.hours-list .time {
    color: var(--text-secondary);
    text-align: right;
    flex-shrink: 0;
}

.hours-list .closed {
    color: var(--danger);
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.hours-footer {
    border-top: 1px solid var(--border);
}

.hours-note {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.hours-note .note-icon {
    color: var(--primary);
}


/* ==========================================================================
   19. Footer
   ========================================================================== */

.site-footer {
    font-family: var(--font-body);
}

/* Newsletter Strip */
.footer-newsletter {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    padding: 48px 0;
}

.newsletter-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 24px;
}

.newsletter-form .input-group {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: #FFFFFF;
}

.btn-newsletter {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
}

.newsletter-message {
    font-size: 13px;
}

/* Main Footer */
.footer-main {
    background: #111111;
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 40px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about-text,
.footer-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer Widget */
.footer-widget-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    font-size: 9px;
    margin-right: 8px;
    color: var(--primary);
    transition: transform var(--transition);
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    margin-right: 12px;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
    font-size: 13px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact li a:hover {
    color: #FFFFFF;
}

/* Payment Methods */
.payment-title {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    transition: border-color var(--transition);
}

.payment-icon:hover {
    border-color: var(--primary);
}

.payment-icon i {
    font-size: 14px;
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: #050505;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.copyright strong {
    color: var(--primary);
}

.footer-credits {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
}

/* Ensure all footer text is visible on dark background */
.footer-main h5,
.footer-main h4,
.footer-main h6 {
    color: #ffffff;
}

.footer-main p {
    color: rgba(255, 255, 255, 0.65);
}

.footer-newsletter p,
.footer-newsletter .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* ==========================================================================
   20. Buttons
   ========================================================================== */

/* Override Bootstrap .btn-primary to use rose gold */
.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    color: #FFFFFF !important;
}

.btn-primary-custom {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192, 139, 111, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 12px;
}


/* ==========================================================================
   21. Forms & Inputs
   ========================================================================== */

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 6px;
}

/* Input group icon styling */
.input-group-text {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--primary);
}


/* ==========================================================================
   22. Pagination
   ========================================================================== */

.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 40px;
}

.pagination-custom .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    background: var(--card-bg);
}

.pagination-custom .page-link:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-custom .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.pagination-custom .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* Bootstrap pagination overrides */
.page-link:focus {
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.15);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}


/* ==========================================================================
   23. Breadcrumbs
   ========================================================================== */

.breadcrumb {
    font-size: 13px;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-hover);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}


/* ==========================================================================
   24. Toast / Flash Notifications
   ========================================================================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.success { border-left-color: var(--success); }
.toast-notification.error { border-left-color: var(--danger); }
.toast-notification.warning { border-left-color: var(--warning); }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Flash messages (Bootstrap alert overrides) */
.alert {
    border-radius: var(--radius-md);
    font-size: 14px;
    border: none;
}

.flash-message {
    animation: slideInRight 0.3s ease;
}


/* ==========================================================================
   25. Loading & Animations
   ========================================================================== */

/* Fade in up on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, var(--bg-alt) 25%, #F0ECE8 50%, var(--bg-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
}

.skeleton-image {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
}

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

/* Spinner */
.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* General page load animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

main {
    animation: fadeIn 0.3s ease;
}


/* ==========================================================================
   26. Back to Top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(181, 120, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}


/* ==========================================================================
   27. Miscellaneous (Testimonials, Brands, Newsletter Home)
   ========================================================================== */

/* Brand Logo Cards (homepage) */
.brand-logo-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.brand-logo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.brand-logo-card img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition);
}

.brand-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo-card span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Newsletter Home Section */
.newsletter-home {
    background: var(--gradient-dark);
    padding: 56px 0;
}

.newsletter-home h3 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
}

.newsletter-home p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.newsletter-home .form-control {
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
}

.newsletter-home .btn-subscribe {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 12px 28px;
    font-weight: 600;
    transition: background var(--transition);
}

.newsletter-home .btn-subscribe:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
}

/* About Snippet (homepage) */
.about-snippet {
    background: var(--card-bg);
}

.about-snippet .about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-snippet .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials (homepage) */
.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
}

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

.testimonial-card .quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-card .testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial-card .author-role {
    font-size: 12px;
    color: var(--text-light);
}

.testimonial-card .testimonial-stars {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 0.8rem;
}

/* ── Homepage Section Spacing ── */

.products-section {
    padding: 80px 0;
    background: var(--bg);
}

.bg-alt {
    background: var(--bg-alt);
}

.cta-banner {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: #FFFFFF;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-snippet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-snippet-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-snippet-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-snippet-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-snippet-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.brands-section {
    padding: 80px 0;
}

.brands-section.bg-alt {
    background: var(--bg-alt);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
    min-width: 120px;
    min-height: 60px;
}

.brand-logo:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.brand-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}


/* ==========================================================================
   28. Track Order Page
   ========================================================================== */

.track-page {
    padding: 40px 0 60px;
}

.track-page .page-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.track-page .page-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.track-search-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.track-search-card .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 6px;
}

.track-search-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.track-search-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.15);
}

.track-search-card .form-text {
    font-size: 12px;
}

.btn-track {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn-track:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(192, 139, 111, 0.4);
}

.btn-track:disabled {
    background: #CCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-track .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0 20px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

#tracking-results {
    display: none;
}

.tracking-results-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.order-info-banner {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.order-info-item {
    flex: 1;
    min-width: 140px;
}

.order-info-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.order-info-item .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.timeline-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
    margin-bottom: 40px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: var(--border);
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all var(--transition);
    border: 3px solid var(--card-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-dot i {
    font-size: 1rem;
    color: var(--text-secondary);
}

.timeline-step.completed .timeline-dot {
    background: var(--success);
}

.timeline-step.completed .timeline-dot i {
    color: #FFFFFF;
}

.timeline-step.active .timeline-dot {
    background: var(--primary);
    animation: timelinePulse 1.5s ease-in-out infinite;
}

.timeline-step.active .timeline-dot i {
    color: #FFFFFF;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 139, 111, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(192, 139, 111, 0); }
}

.timeline-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.timeline-step.completed .timeline-label {
    color: var(--success);
}

.timeline-step.active .timeline-label {
    color: var(--primary);
    font-weight: 600;
}

.timeline-date {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 4px;
}

.timeline-progress {
    position: absolute;
    top: 22px;
    left: 30px;
    height: 3px;
    background: var(--success);
    z-index: 0;
    transition: width 0.5s ease;
}

.scan-history {
    margin-top: 10px;
}

.scan-history-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.scan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.scan-list::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 11px;
    width: 2px;
    background: var(--border);
}

.scan-item {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    position: relative;
}

.scan-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 2px solid var(--card-bg);
}

.scan-item:first-child .scan-dot {
    background: var(--primary);
}

.scan-item:first-child .scan-dot i {
    color: #FFFFFF;
}

.scan-dot i {
    font-size: 8px;
    color: var(--text-secondary);
}

.scan-info {
    flex: 1;
}

.scan-status {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.scan-location {
    font-size: 12px;
    color: var(--text-secondary);
}

.scan-time {
    font-size: 11px;
    color: var(--text-light);
}

.no-tracking {
    text-align: center;
    padding: 40px 20px;
}

.no-tracking-icon {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

.no-tracking h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 8px;
}

.no-tracking p {
    color: var(--text-secondary);
    font-size: 14px;
}

.tracking-error {
    text-align: center;
    padding: 30px 20px;
}

.tracking-error-icon {
    font-size: 2.5rem;
    color: var(--danger);
    margin-bottom: 12px;
}


/* ==========================================================================
   29. Order Confirmation Page
   ========================================================================== */

.confirmation-page {
    padding: 40px 0 60px;
}

.success-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #198754, #28a745);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 8px 30px rgba(25, 135, 84, 0.3);
}

.checkmark-circle i {
    font-size: 2.8rem;
    color: #FFFFFF;
    animation: checkDraw 0.4s ease-out 0.3s both;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkDraw {
    0% { opacity: 0; transform: scale(0) rotate(-45deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

.success-header h1 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.order-info-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.order-info-card .info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.order-info-card .info-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.order-info-card .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.order-info-card .info-value.status-paid {
    color: var(--success);
}

.order-info-card .info-value.status-pending {
    color: var(--warning);
}

.order-items-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.order-items-card h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-alt);
}

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

.confirmation-item-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.confirmation-item-info {
    flex: 1;
    min-width: 0;
}

.confirmation-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.confirmation-item-variant {
    font-size: 12px;
    color: var(--text-secondary);
}

.confirmation-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.confirmation-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
}

.order-totals {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1.5px dashed var(--border);
}

.order-totals .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.order-totals .total-row span:last-child {
    font-weight: 500;
    color: var(--secondary);
}

.order-totals .total-row.discount span:last-child {
    color: var(--success);
}
.order-totals .total-row.prepaid-disc span:last-child {
    color: #16a34a;
    font-weight: 600;
}

.order-totals .total-row.grand-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1.5px solid var(--border);
}

.shipping-info {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.shipping-info strong {
    color: var(--secondary);
}

.confirmation-actions {
    text-align: center;
    margin-top: 10px;
}

.btn-continue-shop {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
    margin: 6px;
}

.btn-continue-shop:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 139, 111, 0.4);
}

.btn-view-order {
    background: var(--card-bg);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
    margin: 6px;
}

.btn-view-order:hover {
    background: var(--secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}


/* ==========================================================================
   30. Checkout Page (Expanded)
   ========================================================================== */

.checkout-page {
    padding: 40px 0 60px;
}

.checkout-page .page-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.checkout-section-title {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.checkout-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 5px;
}

.checkout-form .form-control,
.checkout-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 139, 111, 0.15);
}

.checkout-form .form-control.is-invalid,
.checkout-form .form-select.is-invalid {
    border-color: var(--danger);
}

.checkout-form .invalid-feedback {
    font-size: 12px;
}

.shipping-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin-bottom: 24px;
}

.payment-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 12px;
}

.payment-option:hover {
    border-color: var(--primary-light);
    background: var(--bg-alt);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(192, 139, 111, 0.06);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-option .payment-icon {
    font-size: 1.5rem;
    color: var(--primary);
    width: 36px;
    text-align: center;
}

.payment-option .payment-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.payment-option .payment-info p {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Recommended badge on Razorpay card */
.badge-recommended {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 4px;
}
.prepaid-save-tag {
    display: inline-block;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 4px;
}
.prepaid-save-tag::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 4px;
}
.cod-more-tag {
    display: inline-block;
    color: #dc2626;
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 4px;
}

/* Prepaid discount row in summary */
.prepaid-discount-row span:last-child {
    color: #16a34a !important;
    font-weight: 600;
}

.order-summary-checkout {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.order-summary-checkout h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.checkout-items-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-alt);
}

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

.checkout-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-variant {
    font-size: 11px;
    color: var(--text-secondary);
}

.checkout-item-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.checkout-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    align-self: center;
}

.btn-place-order {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
    cursor: pointer;
}

.btn-place-order:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(192, 139, 111, 0.4);
}

.btn-place-order:disabled {
    background: #CCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-place-order .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

.secure-badge {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-secondary);
}

.secure-badge i {
    color: var(--success);
    margin-right: 4px;
}

.checkout-alert {
    animation: slideInRight 0.3s ease;
}


/* ==========================================================================
   31. Auth Page Extras (Login / Register specifics)
   ========================================================================== */

.input-group-icon {
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: var(--bg-alt);
    color: var(--primary);
}

.input-field-no-left {
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.input-field-no-sides {
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.toggle-password-btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.form-check-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.forgot-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary-hover);
}

.input-icon-group {
    position: relative;
}

.input-icon-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
    z-index: 2;
}

.input-icon-group .form-control {
    padding-left: 40px;
}

.phone-prefix {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: var(--bg-alt);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

.phone-input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.terms-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.terms-label a {
    color: var(--primary);
    text-decoration: none;
}

.terms-label a:hover {
    text-decoration: underline;
}

.terms-checkbox {
    margin-top: 3px;
}

.auth-inline-link {
    color: var(--primary);
    font-weight: 500;
}

.password-requirements {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.password-requirements i {
    font-size: 10px;
    margin-right: 4px;
}

.password-requirements .met {
    color: var(--success);
}

.password-requirements .unmet {
    color: var(--text-secondary);
}


/* ==========================================================================
   32. Footer Missing Classes
   ========================================================================== */

.footer-logo-img {
    max-height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    color: var(--primary);
    margin-right: 12px;
    margin-top: 3px;
    min-width: 16px;
    text-align: center;
    font-size: 13px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-list li a:hover {
    color: #FFFFFF;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-copyright strong {
    color: var(--primary);
}

.footer-designed-by {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-designed-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-designed-by a:hover {
    color: #FFFFFF;
}

.footer-payment-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-payment-icons i {
    transition: color var(--transition);
}

.footer-payment-icons i:hover {
    color: var(--primary);
}

/* btn-outline (used on homepage) */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192, 139, 111, 0.3);
}

/* Cart title icon */
.cart-title-icon {
    color: var(--primary);
}

/* Cart product column width */
.cart-col-product {
    width: 50%;
}

/* Qty button icon */
.qty-btn-icon {
    font-size: 10px;
}

/* Cart free shipping and info */
.cart-free-shipping {
    font-size: 12px;
    color: var(--success);
}

.cart-shipping-info {
    font-size: 12px;
    color: var(--text-secondary);
}


/* ==========================================================================
   33. Mobile Cart Card Layout
   ========================================================================== */

.cart-mobile-card {
    display: none;
}

@media (max-width: 767.98px) {
    .cart-table-wrapper {
        display: none;
    }

    .cart-mobile-card {
        display: block;
    }

    .cart-item-card {
        background: var(--card-bg);
        border-radius: var(--radius-lg);
        padding: 16px;
        margin-bottom: 12px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
    }

    .cart-item-top {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
    }

    .cart-item-card .cart-product-img {
        width: 80px;
        height: 80px;
        border-radius: var(--radius-md);
        object-fit: cover;
        flex-shrink: 0;
    }

    .cart-item-details {
        flex: 1;
        min-width: 0;
    }

    .cart-item-details .cart-product-name {
        display: block;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .cart-item-details .cart-variant-badge {
        margin-bottom: 4px;
    }

    .cart-item-price {
        font-size: 15px;
        font-weight: 600;
        color: var(--primary);
    }

    .cart-item-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid var(--bg-alt);
    }

    .cart-item-total {
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary);
    }
}


/* ==========================================================================
   34. Comprehensive Responsive Breakpoints
   ========================================================================== */

/* ── Large Desktop (max-width: 1200px) ── */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-search .form-control:focus {
        width: 240px;
    }
}

/* ── Tablet (max-width: 992px) ── */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 60px;
    }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Hero */
    .hero-slider .carousel-item { min-height: 400px; }
    .hero-slider .carousel-caption { left: 5%; right: 5%; text-align: center; }
    .hero-slider .carousel-caption h1 { font-size: 2.2rem; }
    .hero-static h1 { font-size: 2.4rem; }
    .hero-static .lead { font-size: 1rem; }
    .hero-slide { min-height: 260px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Snippet */
    .about-snippet-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Category */
    .category-card .category-img-wrap,
    .category-card .category-card-image {
        width: 120px;
        height: 120px;
    }

    /* Cart / Checkout Sidebar */
    .order-summary-card,
    .order-summary-checkout {
        position: static;
        margin-top: 24px;
    }

    /* About */
    .about-hero h1 { font-size: 2.2rem; }
    .stat-number { font-size: 2.2rem; }

    /* Contact */
    .contact-hero h1 { font-size: 2rem; }

    /* Track Order */
    .track-page .page-title { font-size: 1.8rem; }
}

/* ── Mobile Landscape (max-width: 768px) ── */
@media (max-width: 767.98px) {
    :root {
        --section-padding: 48px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .section-title { font-size: 1.5rem; letter-spacing: 1px; }
    .section-subtitle { font-size: 14px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header { margin-bottom: 32px; }

    /* Hero */
    .hero-slider .carousel-item { min-height: 340px; }
    .hero-slider .carousel-caption h1 { font-size: 1.8rem; }
    .hero-slider .carousel-caption p { font-size: 14px; }
    .hero-static { min-height: 400px; }
    .hero-static h1 { font-size: 2rem; }
    .hero-slide { min-height: 220px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-btn { padding: 12px 28px; font-size: 12px; }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* About Snippet */
    .about-snippet-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Section Spacing */
    .categories-section,
    .products-section,
    .features-section,
    .about-snippet-section,
    .brands-section,
    .cta-banner {
        padding: 48px 0;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Product Card adjustments */
    .product-card .product-info { padding: 12px; }
    .product-card .product-card-body { padding: 12px; }
    .product-card .product-name { font-size: 14px; }
    .product-card .product-card-name { font-size: 14px; }
    .product-card .price-current { font-size: 15px; }
    .product-card .product-card-price .current-price { font-size: 15px; }
    .product-card .btn-add-cart { font-size: 12px; padding: 8px; }

    /* Product Detail */
    .product-detail-section { padding: 24px 0 40px; }
    .product-detail-info .product-title { font-size: 1.6rem; }
    .product-tabs .nav-tabs .nav-link { padding: 10px 14px; font-size: 13px; }

    /* Cart */
    .cart-page .page-title { font-size: 1.5rem; }

    /* Checkout */
    .checkout-page .page-title { font-size: 1.5rem; }
    .shipping-card,
    .payment-card,
    .order-summary-checkout { padding: 20px; }

    /* Auth */
    .auth-card-header { padding: 24px 20px 20px; }
    .auth-card-body { padding: 24px 20px 28px; }

    /* Footer */
    .footer-newsletter { padding: 32px 0; }
    .newsletter-title { font-size: 1.3rem; }
    .newsletter-subtitle { font-size: 13px; margin-bottom: 18px; }
    .newsletter-form .input-group {
        flex-direction: column;
        max-width: 100%;
    }
    .newsletter-form .form-control {
        border-radius: 30px;
        margin-bottom: 10px;
        width: 100%;
    }
    .btn-newsletter {
        border-radius: 30px;
        width: 100%;
        padding: 12px 20px;
    }
    .footer-main { padding: 40px 0 30px; }
    .footer-widget { margin-bottom: 8px; }

    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom .row > div {
        text-align: center !important;
    }

    .footer-payment-icons {
        justify-content: center;
        margin-top: 10px;
    }

    /* About */
    .about-hero { padding: 50px 0; }
    .about-hero h1 { font-size: 1.8rem; }
    .about-story,
    .mission-vision,
    .about-values,
    .about-partners { padding: 48px 0; }

    /* Contact */
    .contact-hero { padding: 48px 0; }
    .contact-hero h1 { font-size: 1.8rem; }
    .contact-section { padding: 40px 0 56px; }
    .form-body { padding: 20px; }

    /* Track Order */
    .track-page .page-title { font-size: 1.5rem; }
    .or-divider { margin: 12px 0; }
    .or-divider::before,
    .or-divider::after { display: none; }
    .status-timeline { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
    .timeline-step { min-width: 80px; }
    .timeline-dot { width: 36px; height: 36px; }
    .timeline-dot i { font-size: 0.85rem; }
    .timeline-label { font-size: 11px; }
    .order-info-banner { gap: 14px; }
    .order-info-item { min-width: 120px; }
    .tracking-results-card { padding: 20px; }

    /* Order Confirmation */
    .success-header h1 { font-size: 1.5rem; }
    .order-info-grid { grid-template-columns: 1fr 1fr; }
    .checkmark-circle { width: 80px; height: 80px; }
    .checkmark-circle i { font-size: 2.2rem; }
    .order-items-card { padding: 20px; }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Categories — tighter spacing on mobile */
    .categories-grid {
        gap: 16px;
        padding-bottom: 16px;
    }

    .category-card {
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* CTA Banner */
    .cta-banner h2 { font-size: 1.6rem; }
    .cta-banner p { font-size: 0.95rem; }

    /* Brands grid */
    .brands-grid { gap: 12px; }
    .brand-logo { min-width: 100px; padding: 12px 16px; }

    /* Shop toolbar */
    .shop-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .shop-toolbar .result-count {
        text-align: center;
    }

    .shop-toolbar .d-flex {
        justify-content: center;
    }
}

/* ── Small Mobile (max-width: 576px) ── */
@media (max-width: 575.98px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }

    .section-title { font-size: 1.35rem; }
    .section-header h2 { font-size: 1.4rem; }

    /* Hero */
    .hero-slider .carousel-item { min-height: 300px; }
    .hero-slider .carousel-caption h1 { font-size: 1.5rem; }
    .hero-static { min-height: 360px; }
    .hero-static h1 { font-size: 1.75rem; }
    .btn-gold, .btn-outline-gold { padding: 10px 24px; font-size: 13px; }
    .hero-slide { min-height: 180px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 24px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 2.5px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btn { padding: 12px 32px; font-size: 12px; width: 100%; max-width: 240px; text-align: center; }

    /* Features Grid - stack single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Category */
    .category-card .category-img-wrap,
    .category-card .category-card-image {
        width: 100px;
        height: 100px;
    }

    .category-card h5 { font-size: 0.85rem; }
    .categories-grid { gap: 12px; }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card .product-info { padding: 10px; }
    .product-card .product-card-body { padding: 10px; }
    .product-card .product-brand { font-size: 10px; }
    .product-card .product-card-brand { font-size: 10px; }
    .product-card .product-name { font-size: 13px; }
    .product-card .product-card-name { font-size: 13px; }
    .product-card .price-current { font-size: 14px; }
    .product-card .product-card-price .current-price { font-size: 14px; }
    .product-card .price-original { font-size: 11px; }
    .product-card .product-card-price .original-price { font-size: 11px; }
    .product-card .product-rating .stars { font-size: 10px; }
    .product-card .product-card-rating .stars { font-size: 10px; }
    .product-card .btn-add-cart { font-size: 11px; padding: 8px 6px; }

    /* Product Detail */
    .product-detail-info .product-title { font-size: 1.4rem; }
    .variant-pill { padding: 6px 14px; font-size: 12px; }
    .product-gallery .thumb-item { width: 60px; height: 60px; }

    /* Stat */
    .stat-number { font-size: 2rem; }

    /* Auth */
    .auth-card-header { padding: 20px 16px 18px; }
    .auth-card-body { padding: 20px 16px 24px; }
    .auth-card-header h2 { font-size: 1.5rem; }

    /* Checkout */
    .shipping-card, .payment-card { padding: 16px; }
    .order-summary-checkout { padding: 16px; }

    /* Confirmation */
    .order-info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .order-info-card { padding: 14px; }
    .order-info-card .info-icon { font-size: 1.2rem; }
    .confirmation-actions { display: flex; flex-direction: column; gap: 10px; }
    .btn-continue-shop, .btn-view-order { width: 100%; margin: 0; }

    /* Track Order */
    .track-search-card { padding: 20px; }
    .track-search-card .form-control { padding: 10px 14px; }

    /* Footer */
    .footer-social { justify-content: center; }

    /* Toast */
    .toast-container { left: 10px; right: 10px; top: auto; bottom: 20px; }
    .toast-notification { min-width: auto; max-width: 100%; }
}

/* ── Extra Small Mobile (max-width: 400px) ── */
@media (max-width: 400px) {
    body { font-size: 14px; }

    .hero-slide { min-height: 150px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.85rem; }

    .product-grid { gap: 8px; }
    .product-card .product-info,
    .product-card .product-card-body { padding: 8px; }
    .product-card .product-name,
    .product-card .product-card-name { font-size: 12px; }
    .product-card .price-current,
    .product-card .product-card-price .current-price { font-size: 13px; }
    .product-card .btn-add-cart { font-size: 10px; padding: 7px 4px; letter-spacing: 0; }

    .category-card .category-img-wrap,
    .category-card .category-card-image { width: 80px; height: 80px; }
    .category-card h5 { font-size: 0.8rem; }

    .container { padding-left: 12px; padding-right: 12px; }

    .section-header { margin-bottom: 24px; }

    .order-info-grid { grid-template-columns: 1fr; }

    .auth-card { margin: 0 -4px; border-radius: var(--radius-md); }

    .footer-main { padding: 30px 0 20px; }
}

/* ==========================================================================
   35. Product Detail Page (Full)
   ========================================================================== */

/* ===== Product Detail Styles ===== */
.product-breadcrumbs {
    background: var(--color-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.product-breadcrumbs .breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.product-breadcrumbs .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.product-breadcrumbs .breadcrumb-item.active {
    color: var(--color-text-secondary);
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.main-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.main-image-wrap:hover img {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-gallery .thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: border-color 0.3s;
    background: var(--color-bg);
}

.thumbnail-gallery .thumb.active,
.thumbnail-gallery .thumb:hover {
    border-color: var(--color-primary);
}

.thumbnail-gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-detail-info .pd-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-detail-info .pd-brand a {
    color: inherit;
    text-decoration: none;
}

.product-detail-info .pd-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.product-detail-info .pd-sku {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.product-detail-info .pd-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.product-detail-info .pd-rating .stars {
    color: var(--color-accent);
    font-size: 1rem;
}

.product-detail-info .pd-rating .stars .empty {
    color: #ddd;
}

.product-detail-info .pd-rating .rating-text {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

.product-detail-info .pd-rating .review-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.88rem;
}

.product-detail-info .pd-price-box {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
}

.product-detail-info .pd-price-current {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.product-detail-info .pd-price-original {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-detail-info .pd-discount-badge {
    display: inline-block;
    background: var(--color-danger);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    margin-left: 10px;
    vertical-align: middle;
}

.product-detail-info .pd-savings {
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 600;
    margin-top: 6px;
}

/* Variants */
.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-selector label {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.variant-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.variant-pill.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.variant-pill.out-of-stock {
    opacity: 0.5;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Quantity Selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.qty-selector button {
    width: 42px;
    height: 42px;
    border: none;
    background: var(--color-bg);
    color: var(--color-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector button:hover {
    background: var(--color-primary-light);
    color: #fff;
}

.qty-selector input {
    width: 55px;
    height: 42px;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    -moz-appearance: textfield;
}

.qty-selector input::-webkit-inner-spin-button,
.qty-selector input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.pd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pd-btn-cart {
    flex: 1;
    min-width: 180px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pd-btn-cart:hover {
    background: var(--color-primary);
}

.pd-btn-wishlist {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    background: #fff;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pd-btn-wishlist:hover,
.pd-btn-wishlist.in-wishlist {
    border-color: var(--color-danger);
    color: var(--color-danger);
    background: #fff0f0;
}

.pd-btn-wishlist.in-wishlist i {
    font-weight: 900;
}

/* Stock Info */
.pd-stock {
    font-size: 0.88rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-stock.in-stock {
    color: var(--color-success);
}

.pd-stock.out-of-stock {
    color: var(--color-danger);
}

/* Tabs */
.product-tabs {
    margin-top: 3rem;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--color-border);
}

.product-tabs .nav-tabs .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-secondary);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: var(--color-primary);
    border-color: transparent;
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: transparent;
}

.product-tabs .tab-content {
    padding: 2rem 0;
}

.product-tabs .tab-pane {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Reviews */
.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.review-item .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-item .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-item .review-meta .reviewer-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-secondary);
    margin-bottom: 0;
}

.review-item .review-meta .review-date {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.review-item .review-stars {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.review-item .review-stars .empty { color: #ddd; }

.review-item .review-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.review-item .review-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Review Form */
.review-form {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    margin-top: 1.5rem;
}

.review-form h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.review-form .star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 1rem;
}

.review-form .star-rating-input input {
    display: none;
}

.review-form .star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s;
}

.review-form .star-rating-input input:checked ~ label,
.review-form .star-rating-input label:hover,
.review-form .star-rating-input label:hover ~ label {
    color: var(--color-accent);
}

/* Rating Summary Bar */
.rating-bar-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.rating-bar-wrap .bar-label {
    min-width: 20px;
    text-align: right;
    color: var(--color-text-secondary);
}

.rating-bar-wrap .bar-track {
    flex: 1;
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-wrap .bar-fill {
    height: 100%;
    background: var(--color-accent);
    border-radius: 4px;
    transition: width 0.4s;
}

.rating-bar-wrap .bar-count {
    min-width: 20px;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-share span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.social-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.3s, opacity 0.3s;
}

.social-share a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.social-share .share-fb { background: #1877F2; }
.social-share .share-tw { background: #1DA1F2; }
.social-share .share-wa { background: #25D366; }
.social-share .share-pin { background: #E60023; }
.social-share .share-copy { background: var(--color-secondary); }

/* Product detail share */
.pd-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-share-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.pd-share-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    font-size: 0.95rem;
    line-height: 1;
}

.pd-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff;
}

.pd-share-btn i {
    pointer-events: none;
}

.pd-share-btn.share-whatsapp { background: #25D366; }
.pd-share-btn.share-facebook { background: #1877F2; }
.pd-share-btn.share-x { background: #000; }
.pd-share-btn.share-telegram { background: #229ED9; }
.pd-share-btn.share-pinterest { background: #E60023; }
.pd-share-btn.share-email { background: #6c757d; }
.pd-share-btn.share-copy {
    background: var(--cream, #f5f0e8);
    color: var(--dark-brown, #3d2b1f);
    border-color: #ddd;
}
.pd-share-btn.share-copy:hover {
    color: var(--dark-brown, #3d2b1f);
}
.pd-share-btn.share-copy.copied {
    background: #198754;
    color: #fff;
    border-color: #198754;
}

/* Native share should be visible only on mobile */
.pd-share-btn.share-native {
    display: none;
    background: var(--primary-gold, #c9a84c);
    color: #fff;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: var(--color-bg);
}

/* Product detail section */
.product-detail-section { padding: 2.5rem 0; }

/* Not found icon */
.pd-not-found-icon { font-size: 4rem; color: var(--color-primary); opacity: 0.4; }
.pd-not-found-title { font-family: var(--font-heading); }

/* Short description */
.pd-short-desc { color: var(--color-text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Variant value detail */
.variant-value-detail { opacity: 0.7; }

/* Quantity label */
.qty-label { font-weight: 600; color: var(--color-secondary); font-size: 0.9rem; }

/* Disabled cart button */
.pd-btn-cart.disabled-btn { opacity: 0.5; cursor: not-allowed; }

/* View Cart state */
.pd-btn-cart.view-cart-mode {
    background: #198754;
}
.pd-btn-cart.view-cart-mode:hover {
    background: #157347;
}

/* Buy Now button */
.pd-btn-buynow {
    flex: 1;
    min-width: 140px;
    background: var(--primary-gold, #c9a84c);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pd-btn-buynow:hover {
    background: var(--dark-brown, #3d2b1f);
    color: #fff;
}
.pd-btn-buynow.disabled-btn { opacity: 0.5; cursor: not-allowed; }

/* Rating summary box */
.rating-summary-box { background: var(--color-bg); border-radius: var(--radius-lg); }
.rating-big-number { font-size: 2.5rem; font-weight: 800; color: var(--color-secondary); }
.rating-stars-display { color: var(--color-accent); font-size: 1.1rem; }
.rating-star-empty { color: #ddd; }
.rating-review-count { font-size: 0.85rem; color: var(--color-text-light); }
.bar-star-icon { font-size: 0.6rem; color: var(--color-accent); }

/* No reviews text */
.no-reviews-text { color: var(--color-text-light); }

/* Review form labels */
.review-form-label { font-weight: 500; font-size: 0.9rem; }

/* Review submit button */
.btn-submit-review { background: var(--color-primary); color: #fff; font-weight: 600; padding: 0.6rem 2rem; border-radius: var(--radius-xl); }
.btn-submit-review:hover { opacity: 0.9; color: #fff; }

/* Login to review */
.review-login-text { color: var(--color-text-secondary); }
.review-login-link { color: var(--color-primary); font-weight: 600; }

/* Shipping info */
.shipping-heading { font-family: var(--font-heading); font-weight: 600; margin-bottom: 1rem; }
.shipping-list { list-style: none; padding: 0; }
.shipping-list li { padding: 8px 0; border-bottom: 1px solid var(--color-border); }
.shipping-list li:last-child { border-bottom: none; }
.shipping-list .list-icon { color: var(--color-primary); }

/* Related products heading */
.related-divider { width: 60px; height: 3px; background: var(--color-primary); margin: 0 auto 1rem; border-radius: 2px; }
.related-heading { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.5rem; }
.related-subtitle { color: var(--color-text-secondary); font-size: 0.95rem; margin-bottom: 2rem; }

/* Review message styles */
.review-msg-success { color: var(--color-success); font-size: 0.88rem; }
.review-msg-error { color: var(--color-danger); font-size: 0.88rem; }

/* Responsive */
@media (max-width: 991.98px) {
    .product-detail-info .pd-name { font-size: 1.4rem; }
    .product-detail-info .pd-price-current { font-size: 1.5rem; }
    .product-gallery { position: relative; top: 0; }
}

@media (max-width: 575.98px) {
    .product-detail-info .pd-name { font-size: 1.2rem; }
    .thumbnail-gallery .thumb { width: 58px; height: 58px; }
    .pd-actions { flex-direction: column; }
    .pd-btn-buynow { min-width: unset; }
    .pd-btn-wishlist { width: 100%; height: auto; padding: 0.7rem; }
    .pd-share-btn.share-native { display: inline-flex; }
}

/* ==========================================================================
   36. Account Page (Full)
   ========================================================================== */

.account-section { padding: 40px 0 60px; background: var(--cream); min-height: 70vh; }
.account-sidebar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.06);
    overflow: hidden;
}
.account-sidebar .sidebar-header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-brown-light) 100%);
    padding: 25px 20px;
    text-align: center;
}
.sidebar-header .user-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 600;
    margin: 0 auto 10px;
    font-family: var(--font-heading);
}
.sidebar-header .user-name { color: #fff; font-size: 1.05rem; font-weight: 600; margin: 0; }
.sidebar-header .user-email { color: var(--primary-gold-light); font-size: 0.82rem; margin: 0; }
.sidebar-nav { padding: 10px 0; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    color: var(--dark-brown);
    text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.sidebar-nav a:hover { background: var(--cream); color: var(--primary-gold); border-left-color: var(--primary-gold); }
.sidebar-nav a.active { background: var(--cream); color: var(--primary-gold); border-left-color: var(--primary-gold); font-weight: 600; }
.sidebar-nav a i { width: 20px; text-align: center; color: var(--primary-gold); font-size: 0.95rem; }
.sidebar-nav a.text-danger i { color: #dc3545; }

.account-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(61, 43, 31, 0.06);
    padding: 30px;
    min-height: 400px;
}
.content-title {
    font-family: var(--font-heading);
    color: var(--dark-brown);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cream);
}

/* Dashboard Cards */
.quick-stat-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.quick-stat-card:hover { transform: translateY(-3px); }
.quick-stat-card i { font-size: 2rem; color: var(--primary-gold); margin-bottom: 10px; }
.quick-stat-card h5 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--dark-brown); margin-bottom: 5px; }
.quick-stat-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Orders Table */
.orders-table { font-size: 0.9rem; }
.orders-table th { background: var(--cream); color: var(--dark-brown); font-weight: 600; font-size: 0.85rem; white-space: nowrap; border: none; }
.orders-table td { vertical-align: middle; }
.btn-view-order {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-view-order:hover { background: var(--primary-gold-dark); color: #fff; }

/* Wishlist Grid */
.wishlist-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wishlist-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(61, 43, 31, 0.1); }
.wishlist-card .card-img-top { height: 180px; object-fit: cover; background: #f5f5f5; }
.wishlist-card .card-body { padding: 15px; }
.wishlist-card .product-name { font-family: var(--font-heading); font-size: 0.95rem; color: var(--dark-brown); margin-bottom: 5px; }
.wishlist-card .product-price { font-weight: 600; color: var(--primary-gold); font-size: 1rem; }
.wishlist-card .product-price .original-price { text-decoration: line-through; color: var(--text-muted); font-size: 0.85rem; font-weight: 400; }

.btn-gold-sm {
    background: var(--primary-gold); color: #fff; border: none;
    border-radius: 8px; padding: 6px 14px; font-size: 0.82rem; font-weight: 500;
    transition: all 0.3s ease;
}
.btn-gold-sm:hover { background: var(--primary-gold-dark); color: #fff; }
.btn-outline-sm {
    background: transparent; color: #dc3545; border: 1px solid #dc3545;
    border-radius: 8px; padding: 5px 12px; font-size: 0.82rem; font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-sm:hover { background: #dc3545; color: #fff; }

/* Settings Form */
.settings-form .form-control {
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.9rem;
}
.settings-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.12);
}
.settings-form .form-label { font-weight: 500; color: var(--dark-brown); font-size: 0.88rem; }
.btn-save {
    background: var(--primary-gold); color: #fff; border: none;
    border-radius: 10px; padding: 10px 30px; font-weight: 600;
    transition: all 0.3s ease;
}
.btn-save:hover { background: var(--primary-gold-dark); color: #fff; }

/* Address card */
.address-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px;
}

/* Order detail */
.order-detail-header {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.order-item-row {
    display: flex; gap: 15px; align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--cream-dark);
}
.order-item-row:last-child { border-bottom: none; }
.order-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; background: #f5f5f5; }

.alert-success-custom { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; color: #166534; padding: 12px 16px; font-size: 0.88rem; }
.alert-danger-custom { background: #fff5f5; border: 1px solid #fecaca; border-radius: 10px; color: #991b1b; padding: 12px 16px; font-size: 0.88rem; }

.empty-state { text-align: center; padding: 50px 20px; }
.empty-state i { font-size: 3rem; color: var(--cream-dark); margin-bottom: 15px; }
.empty-state h5 { font-family: var(--font-heading); color: var(--dark-brown); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 991.98px) {
    .account-sidebar { margin-bottom: 20px; }
    .account-content { padding: 20px; }
}


/* ==========================================================================
   37. Category Page (Full)
   ========================================================================== */

/* ===== Category Page Styles ===== */
.cat-breadcrumbs {
    background: var(--color-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cat-breadcrumbs .breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.cat-breadcrumbs .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.cat-breadcrumbs .breadcrumb-item.active {
    color: var(--color-text-secondary);
}

/* Category Banner */
.category-banner {
    background: var(--gradient-dark);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,149,106,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.category-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.category-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.category-banner .cat-count {
    color: var(--color-primary-light);
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

/* Subcategory Grid */
.subcategory-section {
    padding: 2rem 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.subcat-card {
    text-align: center;
    padding: 1.2rem 0.8rem;
    transition: transform 0.3s;
}

.subcat-card:hover {
    transform: translateY(-4px);
}

.subcat-card a {
    text-decoration: none;
    color: inherit;
}

.subcat-card .subcat-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.8rem;
    border: 2px solid var(--color-border);
    background: var(--color-card-bg);
    transition: border-color 0.3s;
}

.subcat-card:hover .subcat-img {
    border-color: var(--color-primary);
}

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

.subcat-card h6 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0;
}

/* Sidebar filters (reuse from shop) */
.cat-sidebar { position: sticky; top: 100px; }

.filter-widget {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-widget h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--color-primary);
}

.filter-widget .form-check { margin-bottom: 0.5rem; }

.filter-widget .form-check-label {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.filter-widget .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-widget .price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-widget .price-inputs input {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.filter-widget .price-inputs input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(196,149,106,0.15);
}

.filter-widget .btn-filter {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    margin-top: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-widget .btn-filter:hover { background: var(--color-primary-dark); }

/* Shop Toolbar */
.shop-toolbar {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.shop-toolbar .product-count {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

.shop-toolbar .product-count strong { color: var(--color-secondary); }

.shop-toolbar .sort-select {
    font-size: 0.85rem;
    padding: 0.4rem 2rem 0.4rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-secondary);
    background-color: #fff;
}

.shop-toolbar .sort-select:focus { border-color: var(--color-primary); outline: none; }

.view-toggle .btn {
    width: 36px; height: 36px; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-border); color: var(--color-text-light);
    background: #fff; font-size: 0.9rem;
}

.view-toggle .btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Product Cards (same as shop/index) */
.product-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

/* Product List Item */
.product-list-item {
    display: flex;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}

.product-list-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.product-list-item .list-img {
    width: 200px;
    min-height: 200px;
    flex-shrink: 0;
    background: var(--color-bg);
    overflow: hidden;
}

.product-list-item .list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-item .list-info {
    padding: 1.2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Pagination */
.shop-pagination .page-link {
    border: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-size: 0.88rem;
    padding: 0.5rem 0.85rem;
    transition: all 0.3s;
}

.shop-pagination .page-link:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: #fff;
}

.shop-pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.shop-pagination .page-item.disabled .page-link { color: var(--color-text-light); }

/* Active Filters */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }

.active-filter-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-primary-light); color: var(--color-secondary);
    font-size: 0.8rem; font-weight: 500; padding: 5px 12px; border-radius: 20px;
}

.active-filter-tag a {
    color: var(--color-secondary); text-decoration: none;
    font-weight: 700; font-size: 1rem; line-height: 1;
}

.active-filter-tag a:hover { color: var(--color-danger); }

/* Mobile Filter */
.btn-mobile-filter {
    display: none;
    background: var(--color-secondary); color: #fff;
    border: none; padding: 0.6rem 1.2rem;
    border-radius: 8px; font-size: 0.88rem;
    font-weight: 600; cursor: pointer;
}

@media (max-width: 991.98px) {
    .btn-mobile-filter { display: inline-flex; align-items: center; gap: 6px; }
    .cat-sidebar { display: none; }
    .cat-sidebar.show {
        display: block; position: fixed; top: 0; left: 0;
        width: 85%; max-width: 340px; height: 100vh; z-index: 1060;
        overflow-y: auto; background: #fff; padding: 1.5rem;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
    .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1055; }
    .sidebar-overlay.show { display: block; }
    .category-banner h1 { font-size: 1.6rem; }
    .product-list-item .list-img { width: 140px; min-height: 140px; }
}

@media (max-width: 575.98px) {
    .category-banner { padding: 2rem 0; }
    .category-banner h1 { font-size: 1.4rem; }
    .subcat-card .subcat-img { width: 70px; height: 70px; }
    .product-list-item { flex-direction: column; }
    .product-list-item .list-img { width: 100%; min-height: 200px; }
}


/* ===================================================================
   38. POLICY PAGES
   =================================================================== */

/* Hero */
.policy-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 3rem 0 2.5rem;
    color: #fff;
}
.policy-breadcrumb .breadcrumb-item a,
.policy-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.55);
}
.policy-breadcrumb .breadcrumb-item.active { color: #B5785A; }
.policy-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.policy-hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Content Section */
.policy-content-section {
    background: #F8FAFC;
    padding: 3rem 0 4rem;
}
.policy-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2.5rem;
}

/* Intro */
.policy-intro {
    background: #FFF7F3;
    border-left: 4px solid #B5785A;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.92rem;
    color: #374151;
}

/* Sections */
.policy-section {
    margin-bottom: 2.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #F1F5F9;
}
.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.policy-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #B5785A;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.policy-section p,
.policy-section ul,
.policy-section ol {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
}
.policy-section ul,
.policy-section ol { padding-left: 1.25rem; }
.policy-section ul li,
.policy-section ol li { margin-bottom: 0.4rem; }
.policy-section a { color: #B5785A; text-decoration: none; font-weight: 500; }
.policy-section a:hover { text-decoration: underline; }

/* Contact Box */
.policy-contact-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 1.1rem 1.4rem;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.9;
}
.policy-contact-box a { color: #B5785A; font-weight: 500; }

/* Highlight Box */
.policy-highlight-box {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: #7F1D1D;
}
.policy-highlight-box ul { padding-left: 1.1rem; margin: 0; }
.policy-highlight-box li { margin-bottom: 0.3rem; }

/* Timeline */
.policy-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.timeline-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.88rem;
    color: #475569;
}
.timeline-badge {
    background: #0F172A;
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Shipping Highlights */
.shipping-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}
.shipping-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}
.shipping-highlight-item i {
    font-size: 1.5rem;
    color: #B5785A;
    margin-bottom: 0.2rem;
}
.sh-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
}
.sh-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
}

/* Policy Table */
.policy-table-wrap { overflow-x: auto; }
.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.policy-table th {
    background: #0F172A;
    color: #fff;
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
.policy-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #E2E8F0;
    color: #374151;
}
.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:nth-child(even) td { background: #F8FAFC; }
.text-success { color: #16A34A !important; }

/* Responsive */
@media (max-width: 767.98px) {
    .policy-hero-title { font-size: 1.9rem; }
    .policy-card { padding: 1.5rem 1.2rem; }
    .shipping-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .policy-hero { padding: 2rem 0 1.75rem; }
    .policy-hero-title { font-size: 1.6rem; }
    .shipping-highlights { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1rem; }
}


/* ===================================================================
   39. FREE SHIPPING BANNER (Cart)
   =================================================================== */

.free-shipping-banner {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.fsb-inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF7ED 100%);
}
.fsb-inner.fsb-achieved {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}
.fsb-icon {
    font-size: 1.2rem;
    color: #B5785A;
    flex-shrink: 0;
}
.fsb-inner.fsb-achieved .fsb-icon { color: #16a34a; }
.fsb-text {
    flex: 1;
    min-width: 0;
}
.fsb-msg {
    font-size: 0.85rem;
    color: #374151;
    display: block;
    margin-bottom: 5px;
}
.fsb-inner.fsb-achieved .fsb-msg { color: #166534; margin-bottom: 0; }
.fsb-bar-wrap {
    height: 6px;
    background: #E2E8F0;
    border-radius: 99px;
    overflow: hidden;
}
.fsb-bar {
    height: 100%;
    background: linear-gradient(90deg, #B5785A, #D4956E);
    border-radius: 99px;
    transition: width 0.5s ease;
    min-width: 4px;
}
.fsb-pct {
    font-size: 0.78rem;
    font-weight: 700;
    color: #B5785A;
    flex-shrink: 0;
}
.fsb-check {
    font-size: 1.3rem;
    color: #16a34a;
    flex-shrink: 0;
}

/* Prepaid discount teaser on cart page */
.prepaid-teaser {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #166534;
}
.prepaid-teaser i { color: #16a34a; font-size: 1rem; flex-shrink: 0; }
.prepaid-teaser strong { color: #15803d; }

/* Cart Policy Links */
.cart-policy-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid #F1F5F9;
}
.cart-policy-links a {
    font-size: 0.75rem;
    color: #94A3B8;
    text-decoration: none;
    white-space: nowrap;
}
.cart-policy-links a:hover { color: #B5785A; }

/* ===================================================================
   40. CHECKOUT POLICY NOTE
   =================================================================== */

.checkout-policy-strip {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: #64748B;
}
.checkout-policy-strip i { color: #B5785A; }
.checkout-policy-strip a { color: #B5785A; text-decoration: none; font-weight: 500; }
.checkout-policy-strip a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   MOBILE APP-LIKE EXPERIENCE
   ══════════════════════════════════════════════════════════════ */

/* Sticky bottom navigation bar for mobile */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1050;
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
    border-top: 1px solid #eee;
}
.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    font-size: 0.65rem;
    padding: 4px 8px;
    position: relative;
    transition: color 0.2s;
}
.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--primary-gold, #c9a84c);
}
.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.mobile-bottom-nav .nav-item .badge-dot {
    position: absolute;
    top: 0;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
}
.mobile-bottom-nav .nav-item .cart-badge {
    position: absolute;
    top: -2px;
    right: 0;
    background: #dc3545;
    color: #fff;
    font-size: 0.55rem;
    padding: 1px 5px;
    border-radius: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mobile-bottom-nav { display: block; }
    body { padding-bottom: 70px; }
    .back-to-top { bottom: 80px; }

    /* Hide desktop footer newsletter on mobile */
    .footer-newsletter { padding: 30px 0; }

    /* Smoother touch scrolling */
    .product-grid, .bundles-grid, .cart-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    /* Larger tap targets */
    .btn, .btn-gold, .btn-track, button {
        min-height: 44px;
    }

    /* Full-width buttons on mobile */
    .pd-actions { flex-direction: column; }
    .pd-btn-cart, .pd-btn-buynow { width: 100%; }

    /* Sticky add-to-cart on product page */
    .pd-actions {
        position: sticky;
        bottom: 70px;
        background: #fff;
        padding: 12px;
        margin: 0 -12px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
        z-index: 100;
        border-radius: 0;
    }

    /* Swipe-friendly product images */
    .product-gallery { touch-action: pan-y pinch-zoom; }

    /* iOS safe area */
    .site-footer { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* Pull-to-refresh visual hint (CSS only) */
@media (max-width: 768px) {
    html { overscroll-behavior-y: contain; }
}

/* Smooth animations for app feel */
.product-card, .bundle-card, .contact-info-card, .order-summary-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Disable text selection on nav (app-like) */
.mobile-bottom-nav, .header-nav {
    -webkit-user-select: none;
    user-select: none;
}

/* Hide scrollbar on mobile for cleaner look */
@media (max-width: 768px) {
    ::-webkit-scrollbar { width: 0; height: 0; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT IMAGE GALLERY — Arrows, Dots, Swipe
   ══════════════════════════════════════════════════════════════ */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    transition: all 0.2s;
    opacity: 0;
}
.main-image-wrap:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: var(--primary-gold, #c9a84c); color: #fff; }
.gallery-arrow-left { left: 10px; }
.gallery-arrow-right { right: 10px; }
.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}
.gallery-dot.active {
    background: var(--primary-gold, #c9a84c);
    width: 20px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .gallery-arrow { opacity: 1; width: 34px; height: 34px; font-size: 12px; }
    .gallery-arrow-left { left: 6px; }
    .gallery-arrow-right { right: 6px; }
}

/* Shop filter offcanvas — extra bottom padding on mobile so Apply Filters button
   is reachable above the fixed mobile-bottom-nav */
@media (max-width: 991.98px) {
    #filterOffcanvas .offcanvas-body {
        padding-bottom: 110px !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    #filterOffcanvas .shop-sidebar {
        padding-bottom: 20px;
    }
}

/* Checkout available coupons list */
.available-coupons { margin: 10px 0 14px; }
.available-coupons .coupon-chip {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 10px 12px; margin-bottom: 8px;
    background: #fdf8f0; border: 1px dashed #c9a84c; border-radius: 8px;
    font-size: 0.85rem;
}
.available-coupons .coupon-chip .coupon-code {
    font-weight: 700; color: #3d2b1f; letter-spacing: 0.5px;
}
.available-coupons .coupon-chip .coupon-desc {
    color: #777; font-size: 0.78rem; display: block;
}
.available-coupons .btn-apply-chip {
    background: #c9a84c; color: #fff; border: none;
    padding: 5px 14px; border-radius: 6px; font-size: 0.78rem;
    font-weight: 600; cursor: pointer; white-space: nowrap;
}
.available-coupons .btn-apply-chip:hover { background: #b79234; }
.available-coupons .btn-apply-chip:disabled { opacity: 0.5; cursor: not-allowed; }

/* Bundle card collage — grid of included product images */
.bundle-collage {
    display: grid;
    gap: 2px;
    width: 100%;
    height: 100%;
    background: #f5f2ec;
}
.bundle-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bundle-collage-1 { grid-template-columns: 1fr; }
.bundle-collage-2 { grid-template-columns: 1fr 1fr; }
.bundle-collage-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.bundle-collage-3 img:first-child { grid-column: 1 / span 2; }
.bundle-collage-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }

/* ── Mobile hero: show full banner image, minimal floating CTA ── */
@media (max-width: 767.98px) {
    .hero-section {
        background: #fff;
    }
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item { height: auto !important; }

    .hero-slide {
        min-height: 0 !important;
        max-height: none !important;
        height: auto !important;
        display: block !important;
        background: #fff;
        position: relative;
    }
    .hero-slide-bg {
        position: static !important;
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
        display: block;
    }
    .hero-slide-overlay {
        display: none !important;
    }

    /* Hide the text caption on mobile — the banner image already has the branding */
    .hero-slide .container {
        position: absolute !important;
        left: 0; right: 0;
        bottom: 14px;
        padding: 0 16px;
        z-index: 3;
    }
    .hero-content { padding: 0; max-width: 100%; text-align: center; }
    .hero-subtitle,
    .hero-content h1,
    .hero-content p { display: none !important; }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    /* Show only the primary CTA on mobile */
    .hero-btn.hero-btn-outline { display: none !important; }
    .hero-btn.hero-btn-primary {
        padding: 10px 30px;
        font-size: 12px;
        letter-spacing: 2px;
        max-width: 220px;
        width: auto;
        border-radius: 30px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    }

    .hero-section .carousel-indicators {
        position: absolute !important;
        bottom: 58px !important;
        margin: 0;
        gap: 6px;
        z-index: 4;
    }
    .hero-section .carousel-indicators button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.55);
        margin: 0;
        transition: all 0.35s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.25);
        opacity: 1;
    }
    .hero-section .carousel-indicators button.active {
        width: 22px;
        border-radius: 4px;
        background: #c9a84c;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }
}
