/* ============================================================
   SAWARIYA DRY FRUITS — PREMIUM BLUE DESIGN SYSTEM
   Professional E-Commerce Theme — White & Blue
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* Primary Colors — Royal Blue */
    --primary: #1a56db;
    --primary-dark: #1240a8;
    --primary-light: #3b82f6;
    --primary-rgb: 26, 86, 219;
    --primary-ultralight: #dbeafe;

    /* Secondary / Accent — Amber */
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-cream: #f0f5ff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-blue: #1a56db;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-blue: #1a56db;

    /* Accents */
    --red: #ef4444;
    --red-light: #f87171;
    --gold: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows — Blue-tinted for premium feel */
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.07), 0 2px 4px -2px rgba(15,23,42,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(15,23,42,0.08), 0 4px 6px -4px rgba(15,23,42,0.05);
    --shadow-hover: 0 20px 40px -8px rgba(26,86,219,0.15), 0 8px 16px -4px rgba(15,23,42,0.08);
    --shadow-blue: 0 4px 14px rgba(26,86,219,0.25);

    /* Typography */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 70px 0;
    --card-radius: 14px;
    --btn-radius: 10px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

input, textarea, select {
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
}

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: linear-gradient(135deg, #1e40af 0%, #1a56db 50%, #3b82f6 100%);
    color: var(--text-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
    animation: announcementShimmer 3s ease infinite;
}

@keyframes announcementShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-bar a {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: underline;
}

.announcement-bar .announcement-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.announcement-bar .announcement-close:hover {
    opacity: 1;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(15,23,42,0.08);
    background: rgba(255, 255, 255, 0.97);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--primary);
}

.main-nav > ul > li > a .nav-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.main-nav > ul > li:hover > a .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--primary);
    padding-left: 28px;
}

.dropdown-menu a img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.header-action-btn:hover {
    background: var(--primary-ultralight);
    color: var(--primary);
}

.header-action-btn svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-cream);
    border-bottom: 3px solid var(--primary-ultralight);
}

.hero-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slide a {
    display: block;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-control {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: none;
}

.hero-control:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.hero-dot.active {
    background: var(--bg-white);
    width: 28px;
    border-radius: 5px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
}

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

.section-header .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    margin: 12px auto 16px;
    border-radius: 3px;
}

/* ============================================================
   SHOP BY DRYFRUITS — Circular Category Thumbnails
   ============================================================ */
.section-categories {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.category-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.categories-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    min-width: 120px;
}

.category-item:hover {
    transform: translateY(-8px);
}

.category-thumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--border);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.category-item:hover .category-thumb {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.2);
}

.category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.category-item:hover .category-thumb img {
    transform: scale(1.1);
}

.category-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================================
   CATEGORY BANNER GRID
   ============================================================ */
.section-banners {
    padding: 0 0 60px;
}

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

.banner-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

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

.banner-card:hover img {
    transform: scale(1.08);
}

.banner-card .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.banner-card .banner-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.banner-card .banner-overlay p {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 20px 40px -8px rgba(26,86,219,0.12), 0 8px 16px -4px rgba(15,23,42,0.06);
    transform: translateY(-8px);
    border-color: rgba(26,86,219,0.15);
}

.product-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}

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

.product-card .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.product-card .wishlist-btn:hover {
    background: var(--red);
    color: white;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-cream);
}

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

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

.product-image .quick-add {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 10px 28px;
    border-radius: var(--btn-radius);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.product-card:hover .product-image .quick-add {
    bottom: 15px;
}

.product-image .quick-add:hover {
    background: var(--primary-dark);
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-rating .stars {
    color: var(--secondary);
    font-size: 13px;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .current {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price .original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price .discount {
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================================
   PRODUCT CAROUSEL/SLIDER
   ============================================================ */
.product-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.product-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
}

.product-slider .product-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-badges {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: var(--card-radius);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-ultralight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
    box-shadow: none;
    border: none;
    transition: all var(--transition-normal);
}

.trust-item:hover .trust-icon {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-blue);
}

.trust-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 12px;
    color: var(--text-secondary);
    max-width: 180px;
}

/* ============================================================
   FEATURED SECTION (Masti Makhana / Go Nuts)
   ============================================================ */
.section-featured {
    padding: var(--section-padding);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26,86,219,0.08);
}

.featured-image {
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-text {
    padding: 50px 40px 50px 0;
}

.featured-text h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-text .btn {
    display: inline-flex;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.2);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary), #f97316);
    color: white;
    border: none;
}

.btn-gold:hover {
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--border);
}

.btn-white:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
}

/* ============================================================
   WHY MINISTRY OF NUTS — Value Proposition
   ============================================================ */
.section-why {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.section-why::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: rgba(59,130,246,0.06);
    transform: rotate(30deg);
}

.section-why::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: rgba(59,130,246,0.04);
    transform: rotate(-15deg);
    border-radius: 50%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition-normal);
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(59,130,246,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    transition: all var(--transition-normal);
}

.why-item:hover .why-icon {
    background: rgba(59,130,246,0.35);
    color: white;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.7;
}

/* ============================================================
   GOOGLE REVIEWS BADGE
   ============================================================ */
.section-reviews-badge {
    padding: 50px 0;
    background: var(--bg-cream);
    text-align: center;
}

.reviews-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.reviews-badge-rating {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.reviews-badge-info {
    text-align: left;
}

.reviews-badge-stars {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 2px;
}

.reviews-badge-count {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.section-blog {
    padding: var(--section-padding);
}

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

.blog-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 20px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.blog-read-more:hover {
    gap: 10px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.section-faq {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 20px;
    transition: transform var(--transition-normal);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CTA / DISTRIBUTORSHIP SECTION
   ============================================================ */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1240a8 0%, #1a56db 40%, #3b82f6 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.04);
    transform: rotate(30deg);
    border-radius: 50%;
}

.section-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.section-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
    position: relative;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(148,163,184,0.8);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59,130,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(147,197,253,0.7);
    font-size: 18px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(59,130,246,0.15);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,86,219,0.3);
    border-color: var(--primary);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    border-radius: 2px;
}

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

.footer-column ul li a {
    font-size: 14px;
    color: rgba(148,163,184,0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-column ul li a:hover {
    color: #93c5fd;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(59,130,246,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(148,163,184,0.5);
}

.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-payments img {
    height: 28px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-payments img:hover {
    opacity: 1;
}

/* ============================================================
   CART SIDEBAR DRAWER
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9999;
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background var(--transition-fast);
}

.cart-drawer-close:hover {
    background: var(--bg-cream);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cart-item-info .cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background var(--transition-fast);
    color: var(--text-primary);
}

.cart-qty-btn:hover {
    background: var(--bg-cream);
}

.cart-qty-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
}

.cart-item-remove {
    color: var(--text-light);
    font-size: 18px;
    transition: color var(--transition-fast);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--red);
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
}

.cart-shipping-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty-icon {
    font-size: 60px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 90%;
    max-width: 700px;
    transform: translateY(-30px);
    transition: transform var(--transition-normal);
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-input-wrapper input {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    border: none;
    background: transparent;
}

.search-input-wrapper button {
    padding: 18px 24px;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.search-close:hover {
    opacity: 1;
}

.search-results {
    background: var(--bg-white);
    border-radius: 0 0 12px 12px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.has-results {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

.search-result-item:hover {
    background: var(--bg-cream);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-item h4 {
    font-size: 14px;
    font-weight: 500;
}

.search-result-item .price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
    padding: 40px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Image Gallery */
.pd-gallery {
    position: sticky;
    top: 100px;
}

.pd-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    cursor: zoom-in;
}

.pd-main-image:hover img {
    transform: scale(1.15);
}

.pd-thumbnails {
    display: flex;
    gap: 10px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
    opacity: 0.6;
}

.pd-thumb.active,
.pd-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.pd-info {
    padding: 0 20px;
}

.pd-breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.pd-breadcrumb a:hover {
    text-decoration: underline;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pd-rating .stars {
    color: var(--secondary);
    font-size: 16px;
}

.pd-rating .reviews-link {
    font-size: 13px;
    color: var(--primary);
    text-decoration: underline;
}

.pd-price-block {
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-cream);
    border-radius: 10px;
}

.pd-price-current {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.pd-price-original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 12px;
}

.pd-price-discount {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px;
    margin-left: 12px;
}

.pd-price-tax {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Variant Selector */
.pd-variants {
    margin-bottom: 24px;
}

.pd-variant-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.pd-variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-variant-option {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pd-variant-option:hover {
    border-color: var(--primary-light);
    box-shadow: 0 2px 5px rgba(26, 86, 219, 0.15);
}

.pd-variant-option.active {
    border: 2px solid var(--primary);
    background: var(--primary-ultralight);
    color: var(--primary-dark);
    padding: 9px 17px; /* Compensate for 2px border so it doesn't jump */
    box-shadow: 0 0 0 1px rgba(26, 86, 219, 0.1);
}

/* Quantity + Add to Cart */
.pd-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: center;
}

.pd-quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.pd-qty-btn {
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.pd-qty-btn:hover {
    background: var(--bg-cream);
}

.pd-qty-input {
    width: 50px;
    height: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 16px;
    font-weight: 700;
}

.pd-add-cart {
    flex: 1;
}

.pd-buy-now {
    width: 100%;
    margin-bottom: 20px;
}

/* Trust badges on product page */
.pd-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-cream);
    border-radius: 10px;
}

.pd-trust-item {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
}

.pd-trust-item span {
    display: block;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 4px;
}

/* Product description */
.pd-description {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.pd-description h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pd-description ul {
    list-style: disc;
    padding-left: 20px;
}

.pd-description ul li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.pd-description p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ============================================================
   SHOP / COLLECTION PAGE
   ============================================================ */
.shop-page {
    padding: 40px 0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.shop-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.shop-filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: 14px;
    cursor: pointer;
    background: var(--bg-white);
    min-width: 180px;
}

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

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
    padding: 40px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.checkout-form h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: 14px;
    transition: border-color var(--transition-fast);
    background: var(--bg-white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--bg-cream);
    border-radius: var(--card-radius);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.order-item-info .price {
    font-weight: 700;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: 14px;
}

.order-totals {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.order-total-row.total {
    font-size: 18px;
    font-weight: 700;
    padding-top: 12px;
    border-top: 2px solid var(--border);
    margin-top: 8px;
}

/* ============================================================
   LOGIN / REGISTER PAGES
   ============================================================ */
.auth-page {
    padding: 60px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    width: 100%;
}

.auth-card h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-divider {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

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

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-message {
    padding: 14px 20px;
    border-radius: var(--btn-radius);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.flash-error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.flash-info {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary);
    border: 1px solid rgba(45, 80, 22, 0.2);
}

/* ============================================================
   FLOATING TRADE PARTNER BUTTON
   ============================================================ */
.floating-partner-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 990;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: -4px 0 20px rgba(26,86,219,0.2);
}

.floating-partner-btn:hover {
    padding-right: 14px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: -6px 0 30px rgba(26,86,219,0.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    padding: 16px 0;
    flex-wrap: wrap;
}

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

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

.breadcrumb .separator {
    color: var(--border);
}

/* ============================================================
   BECOME TRADE PARTNER BUTTON (Side)
   ============================================================ */
.section-partner-cta {
    padding: 60px 0;
    background: var(--bg-cream);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ============================================================
   LUCIDE ICONS SETUP
   ============================================================ */
i[data-lucide], svg[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    stroke-width: 2;
}
