/* ============================================================
   ORGANIC MALL RAJKOT — Luxury Premium v6.0
   Design: Luxury, Premium, Animated, Big-Company Vibe
   Palette: Deep Forest Green + Warm Gold + Pure White
   Animations: AOS + GSAP Powered
   ============================================================ */

/* ===== 1. CSS Variables ===== */
:root {
    /* Primary Palette */
    --green-900: #0A3D1A;
    --green-800: #0F5D32;
    --green-700: #166534;
    --green-600: #16A34A;
    --green-500: #22C55E;
    --green-400: #4ADE80;
    --green-300: #86EFAC;
    --green-200: #BBF7D0;
    --green-100: #DCFCE7;
    --green-50: #F0FDF4;

    /* Gold / Warm Luxury Accent */
    --gold-700: #92400E;
    --gold-600: #B45309;
    --gold-500: #D97706;
    --gold-400: #F59E0B;
    --gold-300: #FBBF24;
    --gold-200: #FDE68A;
    --gold-100: #FEF3C7;
    --gold-50: #FFFBEB;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Semantic */
    --danger: #EF4444;
    --danger-dark: #DC2626;
    --warning: #F59E0B;
    --info: #3B82F6;
    --success: #16A34A;

    /* Theming */
    --bg-body: var(--gray-50);
    --bg-surface: #F0F5EE;
    --bg-card: var(--white);
    --bg-elevated: #E8F0E4;
    --bg-dark: var(--green-800);

    /* Text */
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-500);
    --text-muted: var(--gray-400);
    --text-light: var(--gray-50);

    /* Borders */
    --border: var(--gray-200);
    --border-light: var(--gray-100);
    --border-focus: var(--green-500);

    /* Shadows — premium depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow-green: 0 4px 24px rgba(22, 163, 74, 0.3);
    --shadow-glow-gold: 0 4px 24px rgba(217, 119, 6, 0.3);

    /* Radii */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography — luxury serif for headings, clean sans for body */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    font-weight: 500;
    font-size: 15px;
    overflow-x: hidden;
}

/* ===== 2b. Scroll Progress Bar ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--green-400));
    z-index: 99998;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.4);
}

/* ===== 2d. Cursor Follower ===== */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--green-400);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.cursor-follower.visible {
    opacity: 0.6;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--gold-400);
    background: rgba(217, 119, 6, 0.08);
}

/* ===== 2e. Section Reveal Animation ===== */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== 2f. Floating Particles Background ===== */
.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.15;
    color: var(--white);
    font-size: 16px;
}

/* ===== 3. Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

p { color: var(--text-secondary); line-height: 1.7; font-weight: 500; }

a {
    color: var(--green-600);
    text-decoration: none;
    transition: var(--transition-base);
}
a:hover { color: var(--green-700); }

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

::selection {
    background: var(--green-600);
    color: var(--white);
}

.highlight {
    color: var(--green-600);
}

.highlight-gold {
    color: var(--gold-500);
}

/* ===== 4. Utility Classes ===== */
.text-green { color: var(--green-600) !important; }
.text-gold { color: var(--gold-500) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-white { color: var(--white) !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }

.section-padding { padding: clamp(40px, 8vw, 100px) 0; }

.gradient-text {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 5. Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-50);
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid var(--green-200);
}

.section-tag i {
    font-size: 0.7rem;
}

.section-header .section-title {
    margin-bottom: 12px;
}

/* ===== 6. Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

/* Ripple effect on click */
.btn .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-sm { padding: 8px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-xl { padding: 18px 44px; font-size: 1.125rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    border: none;
    box-shadow: 0 3px 15px rgba(22, 163, 74, 0.2);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}
.btn-primary:active {
    transform: translateY(-1px) scale(0.97);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--text-primary);
    border-color: var(--gray-200);
}
.btn-secondary:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--green-600);
    color: var(--green-600);
    background: var(--green-50);
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, #B8860B, var(--gold-500), #DAA520);
    background-size: 200% 200%;
    animation: shimmerGold 3s ease-in-out infinite;
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
    animation: shimmerRotate 5s linear infinite;
    pointer-events: none;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #8B6914, var(--gold-600), #B8860B);
    background-size: 200% 200%;
    color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.5);
}

.btn-dark {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}
.btn-dark:hover {
    background: var(--green-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}
.btn-danger:hover {
    background: var(--danger-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}
.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

.btn-white {
    background: var(--white);
    color: var(--green-700);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--green-50);
    color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-outline-light::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300), var(--green-400)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}
.btn-outline-light:hover {
    border-color: transparent;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-outline-light:hover::before {
    opacity: 1;
}

/* ===== 7. Cards ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}
.card:hover {
    box-shadow: var(--shadow-md);
}
.card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-body { padding: 22px; }
.card-footer {
    padding: 16px 22px;
    border-top: 1px solid var(--border-light);
}

/* ===== 8. Product Cards (High-Conversion) ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--green-600));
    background-size: 200% 100%;
    animation: shimmerGold 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.2);
    transform: translateY(-6px);
}

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

.product-badges .badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-surface);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.product-actions-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
    z-index: 5;
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.product-actions-overlay .action-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.product-actions-overlay .action-btn:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: scale(1.1);
}

/* Always-visible wishlist button on product cards */
.action-btn.wishlist-btn-visible {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    opacity: 1 !important;
    transform: none !important;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}
.action-btn.wishlist-btn-visible:hover {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
    transform: scale(1.12) !important;
    box-shadow: 0 4px 15px rgba(239,68,68,0.3);
}
.action-btn.wishlist-btn-visible.wishlisted {
    background: rgba(239,68,68,0.12);
    color: var(--danger);
    border-color: rgba(239,68,68,0.2);
}
.action-btn.wishlist-btn-visible.wishlisted:hover {
    background: var(--danger);
    color: var(--white);
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .product-name {
    font-weight: 700;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.3;
    transition: var(--transition-fast);
}

.product-card .product-name:hover {
    color: var(--green-600);
}

.product-weight {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

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

.product-rating i {
    font-size: 0.75rem;
    color: var(--gold-400);
}

.product-rating .rating-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: auto;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-600);
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge-text {
    font-size: 0.7rem;
    color: var(--danger);
    font-weight: 600;
}

.stock-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.btn-wishlist-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    margin-top: 6px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
    letter-spacing: 0.3px;
}
.btn-wishlist-card:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(239,68,68,0.04);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(239,68,68,0.1);
}
.btn-wishlist-card.wishlisted,
.btn-wishlist-card.wishlisted:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(239,68,68,0.06);
}
.btn-wishlist-card i {
    font-size: 0.85rem;
}

.product-card .add-to-cart-btn {
    margin-top: auto;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    width: 100%;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border: none;
    color: var(--white);
    box-shadow: 0 3px 12px rgba(22, 163, 74, 0.2);
    letter-spacing: 0.3px;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.product-card .add-to-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}
.product-card .add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}
.product-card .add-to-cart-btn:active {
    transform: translateY(0) scale(0.97);
}

/* ===== 9. Category Cards ===== */
.category-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    text-decoration: none;
    position: relative;
}

.category-card:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-surface);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-image .category-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-300);
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
}

.category-info {
    padding: 18px;
    text-align: center;
}

.category-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.category-card:hover .category-info h5 {
    color: var(--green-600);
}

.category-info .product-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* ===== 10. Forms ===== */
.form-control, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-card);
    transition: all var(--transition-fast);
    line-height: 1.5;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

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

.form-control.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.input-group {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.input-group .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.input-group .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    flex-shrink: 0;
}

/* ===== 11. Header & Navigation ===== */

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    color: var(--green-300);
    text-align: center;
    padding: 7px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), var(--green-300), var(--gold-400), transparent);
    animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.announcement-bar i {
    margin-right: 5px;
    color: var(--gold-400);
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-bar .announcement-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-fast);
}

.announcement-bar .announcement-text:hover {
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background: var(--green-800);
    padding: 6px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    transition: var(--transition-fast);
    margin-left: 10px;
    position: relative;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar i {
    margin-right: 4px;
    color: var(--gold-400);
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.top-bar .top-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition-base);
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.top-bar .top-link::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300), var(--green-400)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.top-bar .top-link:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.top-bar .top-link:hover::before {
    opacity: 1;
}

.top-bar .top-link:hover i {
    color: var(--gold-300);
    transform: scale(1.2);
}

.top-bar .top-link:active {
    transform: translateY(0) scale(0.97);
}

.top-bar .top-link i {
    font-size: 0.78rem;
    color: var(--gold-400);
    transition: all var(--transition-fast);
}

/* Special highlight for Login/Register or primary actions */
.top-bar .top-link.top-link-primary {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    border-color: var(--gold-500);
    color: var(--white) !important;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
}
.top-bar .top-link.top-link-primary:hover {
    background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
    border-color: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}
.top-bar .top-link.top-link-primary::before {
    display: none;
}
.top-bar .top-link.top-link-primary i {
    color: rgba(255,255,255,0.9);
}
.top-bar .top-link.top-link-primary:hover i {
    color: var(--white);
}

/* Main Header */
.main-header {
    background: rgba(255,255,255,0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.92);
}

.main-header .navbar {
    padding: 0;
    min-height: 76px;
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(22, 163, 74, 0.25);
    transition: all var(--transition-base);
    animation: brandPulse 3s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2); }
    50% { box-shadow: 0 2px 16px rgba(22, 163, 74, 0.4); }
}

.brand-icon i {
    font-size: 24px;
    color: var(--white);
    transition: transform var(--transition-base);
}

.brand:hover .brand-icon i {
    transform: rotate(-10deg) scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    letter-spacing: -0.3px;
}

.brand:hover .brand-name {
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-location {
    font-size: 0.65rem;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
    transition: var(--transition-fast);
    text-shadow: 0 0 20px rgba(217, 119, 6, 0.15);
}

.brand:hover .brand-location {
    letter-spacing: 4px;
}

/* Navigation Links */
.main-header .navbar-nav {
    gap: 4px;
}

.main-header .navbar-nav .nav-link {
    font-weight: 700;
    color: var(--gray-700) !important;
    padding: 22px 18px !important;
    font-size: 0.92rem;
    transition: all var(--transition-base);
    position: relative;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

.main-header .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    inset: 8px 4px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: -1;
    pointer-events: none;
}

.main-header .navbar-nav .nav-link:hover::before,
.main-header .navbar-nav .nav-link.active::before {
    opacity: 1;
    inset: 4px;
}

.main-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500));
    border-radius: 2px;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
    color: var(--green-700) !important;
    text-shadow: 0 0 20px rgba(22, 163, 74, 0.12);
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-link.active::after {
    width: 40%;
}

.main-header .navbar-nav .nav-link i {
    margin-right: 7px;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-block;
}

.main-header .navbar-nav .nav-link:hover i {
    transform: scale(1.15) translateY(-1px);
}

.main-header .navbar-nav .nav-link.active i {
    transform: scale(1.1);
}

/* Highlighted nav link (e.g. Track Order) */
.main-header .navbar-nav .nav-link.nav-link-highlight {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white) !important;
    border-radius: var(--radius-full);
    padding: 8px 18px !important;
    margin: 16px 4px;
    box-shadow: 0 3px 12px rgba(22, 163, 74, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.main-header .navbar-nav .nav-link.nav-link-highlight:hover {
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

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

.main-header .navbar-nav .nav-link.nav-link-highlight i {
    color: rgba(255,255,255,0.9);
    margin-right: 4px;
    font-size: 0.85rem;
}

.main-header .navbar-nav .nav-link.nav-link-highlight:hover i {
    transform: scale(1.15);
}

/* Premium nav icon colors — preserved on hover to maintain multi-color design */
.main-header .navbar-nav .nav-link .fa-home,
.main-header .navbar-nav .nav-link:hover .fa-home { color: var(--green-500); }
.main-header .navbar-nav .nav-link .fa-th-large,
.main-header .navbar-nav .nav-link:hover .fa-th-large { color: var(--gold-500); }
.main-header .navbar-nav .nav-link .fa-box-open,
.main-header .navbar-nav .nav-link:hover .fa-box-open { color: var(--green-600); }
.main-header .navbar-nav .nav-link .fa-blog,
.main-header .navbar-nav .nav-link:hover .fa-blog { color: var(--info); }
.main-header .navbar-nav .nav-link .fa-envelope,
.main-header .navbar-nav .nav-link:hover .fa-envelope { color: var(--gold-600); }
.main-header .navbar-nav .nav-link .fa-info-circle,
.main-header .navbar-nav .nav-link:hover .fa-info-circle { color: var(--info); }
.main-header .navbar-nav .nav-link .fa-headset,
.main-header .navbar-nav .nav-link:hover .fa-headset { color: var(--green-500); }

/* Nav link dropdown toggle */
.main-header .navbar-nav .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform var(--transition-fast);
    color: var(--text-muted);
}

.main-header .navbar-nav .nav-link.dropdown-toggle:hover::after {
    transform: rotate(-180deg);
    color: var(--green-600);
}

/* Hide the nav-item ::before z-index conflict */
.main-header .navbar-nav .nav-item {
    position: relative;
}

.main-header .navbar-nav .nav-item.dropdown {
    z-index: 2;
}

/* Header Actions (Cart, Wishlist, Search) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

/* Desktop: header-actions inside collapse — pushed right */
@media (min-width: 992px) {
    .collapse.navbar-collapse {
        flex: 1 1 auto;
    }
    .collapse.navbar-collapse .header-actions {
        margin-left: auto;
        flex-shrink: 0;
        padding-left: 1rem;
    }
}

/* Mobile header-actions (outside collapse): right of brand */
.header-actions.d-lg-none {
    margin-left: auto;
    margin-right: 4px;
    gap: 3px;
}
.header-actions.d-lg-none .action-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
}
.header-actions.d-lg-none .action-btn .badge {
    min-width: 15px;
    height: 15px;
    font-size: 0.48rem;
    top: -4px;
    right: -4px;
    border-width: 1.5px;
}

.header-actions .action-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    font-size: 0.95rem;
    text-decoration: none;
    flex-shrink: 0;
    overflow: visible;
}

.header-actions .action-btn::before {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--gray-800);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-actions .action-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.header-actions .action-btn i {
    font-size: 1rem;
    transition: all var(--transition-base);
    line-height: 1;
}

.header-actions .action-btn:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.header-actions .action-btn:hover i {
    transform: scale(1.1);
}

.header-actions .action-btn:active {
    transform: translateY(-1px) scale(0.95);
}

.header-actions .action-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.55rem;
    min-width: 19px;
    height: 19px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 5px;
    font-weight: 700;
    border: 2px solid var(--bg-card);
    transition: all var(--transition-fast);
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-count { background: var(--green-600) !important; color: var(--white) !important; }
.wishlist-count { background: var(--danger) !important; color: var(--white) !important; }



/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    margin-top: 8px !important;
    border-top: 3px solid transparent;
    position: relative;
    animation: dropdownFade 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

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

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500));
    border-radius: 3px 3px 0 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    background: var(--green-50);
    color: var(--green-600);
    padding-left: 26px;
}

.dropdown-item i {
    font-size: 0.75rem;
    width: 16px;
    color: var(--green-400);
    transition: var(--transition-fast);
}

.dropdown-item:hover i {
    color: var(--green-600);
    transform: scale(1.1);
}

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

/* Main Header Mobile Toggle Animation */
.navbar-toggler {
    border: none !important;
    padding: 8px !important;
    transition: var(--transition-base);
}

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

.navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 2px;
    background: var(--green-600);
    position: relative;
    transition: var(--transition-base);
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green-600);
    transition: var(--transition-base);
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== 12. Search Overlay ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.search-overlay.active { display: flex; }

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

.search-overlay-content {
    width: 100%;
    max-width: 640px;
    padding: 20px;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-close:hover {
    color: var(--green-600);
    background: var(--green-50);
    transform: rotate(90deg);
}

.search-input-group {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.search-input {
    flex: 1;
    padding: 18px 22px !important;
    font-size: 1.1rem !important;
    border: 2px solid var(--border) !important;
    border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
    background: var(--white) !important;
}

.search-input:focus {
    border-color: var(--green-500) !important;
    box-shadow: 0 0 0 4px rgba(22,163,74,0.08) !important;
}

.search-submit-btn {
    padding: 18px 32px;
    background: var(--green-600);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-submit-btn:hover {
    background: var(--green-700);
}

.search-suggestions {
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-suggestions.active {
    display: block;
    animation: slideUp 0.2s ease;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.search-tag {
    padding: 8px 18px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.search-tag:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
    transform: translateY(-1px);
}

/* ===== 13. Hero Section ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-fullframe .hero-carousel {
    position: relative;
}

.hero-fullframe .hero-slide-full {
    display: flex;
    align-items: center;
    min-height: clamp(400px, 70vh, 650px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-fullframe .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 61, 30, 0.88) 0%, rgba(22, 163, 74, 0.55) 100%);
    z-index: 1;
}

/* Hero Video Background */
.hero-fullframe .hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-fullframe .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-fullframe .hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero-fullframe .hero-slide-full.hero-video-slide {
    position: relative;
    overflow: hidden;
    background: var(--green-800);
}

.hero-fullframe .hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 61, 30, 0.80) 0%, rgba(15, 61, 30, 0.35) 100%);
    z-index: 1;
}

.hero-fullframe .hero-bg-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--green-300);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Offer Badge (simple pill) */
.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.5s both;
    position: relative;
    overflow: hidden;
}

.hero-offer-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-offer-badge i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.hero-offer-badge strong {
    background: var(--white);
    color: var(--green-700);
    padding: 2px 10px;
    border-radius: var(--radius-xs);
    margin: 0 4px;
    position: relative;
    z-index: 1;
}

/* Owl Carousel Hero Dots */
.hero-fullframe .owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--green-500) !important;
    width: 28px !important;
    border-radius: 4px !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.3) !important;
    transition: all var(--transition-base);
    width: 10px;
    height: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-secondary) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: all var(--transition-base) !important;
    box-shadow: var(--shadow-md) !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--green-600) !important;
    border-color: var(--green-600) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

/* ===== 14. Features Strip ===== */
.features-strip {
    padding: 32px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500));
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-item:hover {
    background: var(--green-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-item:hover::before {
    width: 60%;
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--green-600);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: var(--green-600);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}

.feature-item h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 2px 0 0;
    position: relative;
    z-index: 1;
}

/* ===== 14b. Animated Section Dividers ===== */
.section-divider {
    position: relative;
    height: 6px;
    width: 100%;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--green-200) 15%, 
        var(--green-400) 30%, 
        var(--gold-400) 50%, 
        var(--green-400) 70%, 
        var(--green-200) 85%, 
        transparent 100%
    );
    animation: dividerSweep 4s ease-in-out infinite;
}

.section-divider-wave {
    position: relative;
    height: 40px;
    overflow: hidden;
    margin-top: -1px;
}

.section-divider-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    fill: var(--green-50);
}

@keyframes dividerSweep {
    0% { transform: translateX(0%); }
    100% { transform: translateX(50%); }
}

/* ===== 14c. Image Reveal Animation ===== */
.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-600);
    transform: translateX(0);
    animation: imgReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes imgReveal {
    0% { transform: translateX(0); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); visibility: hidden; }
}

/* ===== 15. Footer ===== */
.main-footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--green-400));
}

.footer-top { padding: 70px 0 40px; }

.footer-widget { margin-bottom: 30px; }

.footer-widget .brand-name {
    color: var(--white);
}

.footer-widget .brand-location {
    color: var(--gold-400);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin: 16px 0 20px;
    font-weight: 500;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.footer-contact-item i {
    color: var(--green-400);
    width: 16px;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

.footer-links li a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '›';
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-400);
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--green-300);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-base);
    font-size: 1rem;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    border-color: #dd2a7b;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.payment-methods {
    margin-top: 16px;
}

.payment-methods h5 {
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.payment-methods h5::after {
    display: none;
}

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

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xs);
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 600;
}

.payment-icon i {
    font-size: 0.75rem;
    color: var(--green-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--green-300);
}

/* ===== 16. Newsletter Section ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    padding: 60px 0;
}

.newsletter-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.newsletter-content h3 i {
    color: var(--green-600);
    margin-right: 8px;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition-fast);
    background: var(--white);
}

.newsletter-form .input-group:focus-within {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(22,163,74,0.08);
}

.newsletter-form .form-control {
    border: none !important;
    padding: 14px 18px;
    background: transparent !important;
    box-shadow: none !important;
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 28px;
}

/* ===== 17. Auth Pages ===== */
.auth-section {
    padding: clamp(40px, 8vw, 80px) 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon-lg {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(22,163,74,0.25);
    transition: var(--transition-base);
}

.auth-icon-lg i {
    font-size: 1.8rem;
    color: var(--white);
}

.auth-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Auth Tabs */
.auth-tabs {
    justify-content: center;
    gap: 8px;
    background: var(--green-50);
    padding: 6px;
    border-radius: var(--radius-md);
    border: 1px solid var(--green-100);
}

.auth-tabs .nav-pills .nav-link {
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.auth-tabs .nav-pills .nav-link i {
    margin-right: 6px;
}

.auth-tabs .nav-pills .nav-link.active {
    background: var(--green-600);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

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

.auth-divider span {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}

/* Google Button */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    width: 100%;
}

.btn-google:hover {
    border-color: #4285f4;
    background: #f8fbff;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(66,133,244,0.15);
}

.btn-google img {
    width: 20px;
    height: 20px;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.auth-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* OTP Input */
.otp-input {
    letter-spacing: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    font-family: monospace;
}

/* Password Strength */
.password-strength {
    height: 5px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 8px;
}

.password-strength .strength-bar {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Verification Results */
.verification-icon-success {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #34d058);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.25);
    animation: fadeInUp 0.6s ease;
}

.verification-icon-success i {
    font-size: 2.2rem;
    color: var(--white);
}

.verification-icon-info {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.25);
    animation: fadeInUp 0.6s ease;
}

.verification-icon-info i {
    font-size: 2.2rem;
    color: var(--white);
}

.verification-icon-error {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--danger), #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25);
    animation: fadeInUp 0.6s ease;
}

.verification-icon-error i {
    font-size: 2.2rem;
    color: var(--white);
}

/* ===== 18. Dashboard ===== */
.dashboard-sidebar .nav-link {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    background: var(--green-50);
    color: var(--green-600);
}

.dashboard-sidebar .nav-link i {
    width: 18px;
    text-align: center;
}

/* ===== 19. Category Sidebar ===== */
.filter-sidebar .card-header {
    background: linear-gradient(135deg, var(--green-800), var(--green-600)) !important;
    border-bottom: none;
}

.filter-sidebar .card-header h5 {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-sidebar .category-list {
    display: flex;
    flex-direction: column;
}

.filter-sidebar .category-link {
    padding: 12px 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.filter-sidebar .category-link:last-child {
    border-bottom: none;
}

.filter-sidebar .category-link:hover,
.filter-sidebar .category-link.active {
    background: rgba(22, 163, 74, 0.06);
    color: var(--green-600);
    padding-left: 24px;
}

.filter-sidebar .category-link .badge {
    margin-left: auto;
    font-size: 0.65rem;
}

/* ===== 20. Blog Featured Post ===== */
.featured-post-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.featured-post-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

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

.featured-post-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}

.featured-post-content {
    padding: 40px;
}

/* ===== 21. Blog Article ===== */
.blog-article-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.article-meta-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.article-meta-bar span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-meta-bar i {
    margin-right: 6px;
    color: var(--green-500);
}

.article-content-body {
    line-height: 1.8;
    font-size: 1rem;
}

.article-content-body p {
    margin-bottom: 20px;
}

/* ===== 22. Contact Page ===== */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-card h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== 23. Support Page ===== */
.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
    text-decoration: none;
    display: block;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-400);
}

.support-card-link {
    text-decoration: none;
    color: inherit;
}

.support-card-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--green-600);
    transition: var(--transition-base);
}

.support-card:hover .support-card-icon {
    background: var(--green-600);
    color: var(--white);
}

.support-card h6 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* FAQ Card */
.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    height: 100%;
    transition: all var(--transition-base);
}

.faq-card:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-sm);
    background: var(--green-50);
}

.faq-card h6 {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Ticket List */
.ticket-list-item {
    text-decoration: none;
    color: inherit;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

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

.ticket-list-item:hover {
    background: var(--green-50);
}

/* Contact Icon Small */
.contact-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ===== 24. Error Pages ===== */
.error-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.error-card {
    text-align: center;
    padding: 60px 40px;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(135deg, var(--green-600), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.error-message {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 32px;
}

/* ===== 25. Pre-footer Breadcrumb Section ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    padding: 40px 0;
    color: var(--white);
}

.breadcrumb-section h1 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.breadcrumb-section .breadcrumb-item {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--green-300);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ===== 19. Breadcrumb ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 24px;
}

.breadcrumb-item {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.breadcrumb-item a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

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

/* ===== 20. Trust Badges / Social Proof ===== */
.social-proof-bar {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.proof-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.proof-item i {
    font-size: 0.85rem;
}

.proof-item.urgent i,
.proof-item.low-stock i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.trust-badge-item:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--green-600);
}

.trust-badge-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== 21. Purchase Section ===== */
.btn-buy-now-main {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #B8860B, var(--gold-500), #DAA520);
    background-size: 200% 200%;
    animation: shimmerGold 3s ease-in-out infinite;
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-md);
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none !important;
    box-shadow: 0 4px 25px rgba(184, 134, 11, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-buy-now-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmerRotate 4s linear infinite;
    pointer-events: none;
}

@keyframes shimmerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-buy-now-main:hover {
    color: var(--white) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.5);
}

.btn-buy-now-main:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-add-cart-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-add-cart-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

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

.btn-add-cart-main:hover {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

.btn-add-cart-main:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== 21b. Wishlist Button (Product Page) ===== */
.btn-wishlist-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 2px solid #fecaca;
    border-radius: var(--radius-md);
    color: #dc2626;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    font-family: inherit;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.06);
}

.btn-wishlist-sm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.btn-wishlist-sm:hover {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border-color: #ef4444;
    color: #991b1b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

.btn-wishlist-sm:hover::before {
    opacity: 1;
}

.btn-wishlist-sm:active {
    transform: translateY(-1px) scale(0.97);
}

.btn-wishlist-sm.active {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    border-color: #ef4444;
    color: #991b1b;
    box-shadow: 0 2px 12px rgba(239, 68, 68, 0.15);
}

.btn-wishlist-sm i {
    font-size: 1.1rem;
    transition: transform var(--transition-bounce);
}

.btn-wishlist-sm:hover i {
    transform: scale(1.25);
}

.btn-wishlist-sm.active i {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ===== 22. Cart ===== */
.cart-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

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

.cart-item-image img,
.no-image-sm {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.no-image-sm {
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cart-item-name {
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.cart-item-name:hover {
    color: var(--green-600);
}

.cart-item-weight {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-item-price {
    font-weight: 600;
    color: var(--gold-500);
    margin-top: 4px;
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity .qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1rem;
    font-weight: 600;
}

.cart-quantity .qty-btn:hover {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}

.cart-quantity .qty-input {
    width: 48px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    height: 36px;
    border-radius: 0;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-500);
}

.cart-summary,
.checkout-summary {
    position: sticky;
    top: 100px;
}

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

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 8px;
}

.total-amount {
    color: var(--gold-500);
}

.applied-coupon {
    background: var(--green-50);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--green-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.free-delivery-progress {
    background: var(--gold-50);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--gold-200);
}

.empty-cart {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.empty-cart .empty-icon i {
    color: var(--border) !important;
}

/* ===== 23. Checkout ===== */
.address-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.address-card:hover {
    border-color: var(--green-400);
    background: var(--green-50);
}

.address-card.selected {
    border-color: var(--green-600);
    background: rgba(22,163,74,0.04);
    box-shadow: 0 0 0 2px rgba(22,163,74,0.12);
}

.payment-option input[type="radio"] { display: none; }

.payment-card-lg {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-base);
    background: var(--bg-card);
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-card-lg:hover {
    border-color: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.payment-option input[type="radio"]:checked + .payment-card-lg {
    border-color: var(--gold-500);
    background: var(--gold-50);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.payment-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-icon-wrap i {
    font-size: 1.4rem;
    color: var(--gold-500);
}

.payment-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.payment-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ===== 24. Testimonials ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
}

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

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold-400);
    font-size: 1rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h6 {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== 25. Blog Cards ===== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

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

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-surface);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-300);
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
}

.blog-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green-600);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    text-align: center;
    line-height: 1.2;
    box-shadow: var(--shadow-sm);
}

.blog-date .date-day {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.blog-date .date-month {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.blog-content h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 800;
}

.blog-content h4 a:hover {
    color: var(--green-600);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--green-700);
    gap: 10px;
}

/* ===== 26. Pagination ===== */
.pagination {
    gap: 4px;
}

.page-link {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-base);
    background: var(--bg-card);
}

.page-link:hover {
    border-color: var(--green-400);
    color: var(--green-600);
    background: var(--green-50);
}

.page-item.active .page-link {
    background: var(--green-600);
    border-color: var(--green-600);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(22,163,74,0.2);
}

.page-item.disabled .page-link {
    opacity: 0.5;
}

/* ===== 27. Badges ===== */
.badge {
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    line-height: 1.2;
}

.badge.bg-success { background: var(--green-600) !important; }
.badge.bg-danger { background: var(--danger) !important; }
.badge.bg-warning { background: var(--gold-500) !important; color: var(--white) !important; }
.badge.bg-warning.text-dark { color: #1f2937 !important; }
.badge.bg-info { background: var(--info) !important; }
.badge.bg-secondary { background: var(--gray-400) !important; }

/* ===== 28. Alerts ===== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert i {
    font-size: 1rem;
}

.alert-success {
    background: var(--green-50);
    border-color: var(--green-200);
    color: var(--green-800);
}

.alert-danger {
    background: rgba(239,68,68,0.06);
    border-color: rgba(239,68,68,0.12);
    color: #991b1b;
}

.alert-warning {
    background: var(--gold-50);
    border-color: var(--gold-200);
    color: #92400e;
}

.alert-info {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.12);
    color: #1e40af;
}

/* ===== 29. Product Tabs Card ===== */
.product-tabs-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.product-tabs-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-tabs-card .card-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.product-tabs-card .card-header .nav-tabs {
    border-bottom: none;
    padding: 0 8px;
}

.product-tabs-card .card-header .nav-link {
    padding: 16px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    border-radius: 0;
    margin: 0 2px;
    position: relative;
    transition: all var(--transition-base);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tabs-card .card-header .nav-link i {
    font-size: 0.85rem;
    color: var(--green-400);
    transition: var(--transition-base);
}

.product-tabs-card .card-header .nav-link:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.product-tabs-card .card-header .nav-link:hover i {
    color: var(--green-600);
    transform: scale(1.1);
}

.product-tabs-card .card-header .nav-link.active {
    color: var(--green-800);
    background: transparent;
}

.product-tabs-card .card-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--gold-500));
    border-radius: 3px 3px 0 0;
    transform: none;
}

.product-tabs-card .card-body {
    padding: 32px;
}

/* ===== 30. Product Purchase Section ===== */
.purchase-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,245,238,0.98));
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.purchase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-600), var(--gold-500), var(--green-600));
    background-size: 100% 200%;
    animation: shimmerGold 3s ease-in-out infinite;
    border-radius: 0 3px 3px 0;
    box-shadow: 2px 0 20px rgba(22, 163, 74, 0.15);
}

.purchase-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 70% 30%, rgba(217, 119, 6, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Premium Product Info */
.product-info-main {
    padding: 0;
}

.product-info-main h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.pricing-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.pricing-block .current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-600);
}

.pricing-block .old-price-lg {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-block .save-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Specs Grid */
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 0;
}

.product-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-spec-item small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-spec-item strong {
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* ===== 31. Review Cards ===== */
.review-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

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

.review-card:hover {
    padding-left: 12px;
    padding-right: 12px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    margin: 0 -12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-body {
    margin-top: 10px;
}

.review-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(22, 163, 74, 0.08);
    color: var(--green-700);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}

/* Rating Distribution */
.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.rating-bar-row .star-label {
    white-space: nowrap;
    min-width: 45px;
    color: var(--text-secondary);
    font-weight: 500;
}

.rating-bar-row .rating-progress {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.rating-bar-row .rating-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rating-bar-row .rating-count {
    min-width: 24px;
    text-align: right;
    color: var(--text-muted);
}

/* Review Summary Box */
.review-summary-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}

.review-summary-box .big-rating {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.review-summary-box .rating-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== 32. Review Form ===== */
.review-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.review-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--gold-400));
}

.review-form-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ===== 33. Login Prompt Card ===== */
.login-prompt-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.login-prompt-card a {
    color: var(--green-600);
    font-weight: 700;
    text-decoration: underline;
}

/* Product Description */
.product-description {
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 12px;
    font-weight: 500;
}

/* ===== 34. Shipping Info ===== */
.shipping-info-list {
    list-style: none;
    padding: 0;
}

.shipping-info-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

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

.shipping-info-list li i {
    color: var(--green-600);
    font-size: 1.1rem;
}

/* ===== 35. Trust Micro ===== */
.trust-micro {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-micro span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(22, 163, 74, 0.05);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.trust-micro span:hover {
    background: var(--green-50);
    transform: translateY(-1px);
}

.trust-micro i {
    font-size: 0.7rem;
}

/* ===== 36. Qty Selector Premium ===== */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-card);
}

.qty-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-selector button:hover {
    background: var(--green-600);
    color: var(--white);
}

.qty-selector input {
    width: 56px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    height: 40px;
    outline: none;
}

/* ===== 37. Sticky Purchase Bar (Upgraded) ===== */
.sticky-purchase-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.92);
    border-top: 1px solid rgba(22, 163, 74, 0.12);
    padding: 14px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.sticky-purchase-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-400), var(--gold-400), transparent);
    animation: shimmerBar 3s ease-in-out infinite;
}

.sticky-purchase-bar.visible {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sticky-thumb img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border);
}

.sticky-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sticky-price {
    font-size: 0.85rem;
}

.sticky-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.sticky-qty button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-qty button:hover {
    background: var(--green-600);
    color: var(--white);
}

.sticky-qty span {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Tabs ===== */
.nav-tabs {
    border-bottom: 1px solid var(--border);
    gap: 0;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px 24px;
    font-size: 0.85rem;
    position: relative;
    transition: var(--transition-fast);
    background: transparent;
}

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

.nav-tabs .nav-link:hover {
    color: var(--green-600);
}

.nav-tabs .nav-link.active {
    color: var(--green-600);
    background: transparent;
}

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

/* ===== 30. Table ===== */
.table {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    color: var(--text-secondary);
    border-top: none;
    padding: 12px 14px;
    border-bottom: 2px solid var(--border);
    background: var(--gray-50);
}

.table td {
    padding: 12px 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background: var(--green-50);
}

/* ===== 31. Progress ===== */
.progress {
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    height: 8px;
}

.progress-bar {
    background: var(--green-600);
    height: 100%;
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

/* ===== 32. Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-custom {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    font-size: 0.85rem;
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--green-600);
}

.toast-custom.error {
    border-left-color: var(--danger);
}

.toast-custom i {
    font-size: 1.2rem;
}

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

/* ===== 33. Floating Elements ===== */

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    background: var(--green-800);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--green-600);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

.back-to-top:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}

.back-to-top.visible {
    display: flex;
    animation: fadeInUp 0.4s ease;
}

/* Compare Float */
.compare-float {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--green-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(22,163,74,0.3);
    transition: all var(--transition-base);
    font-size: 1.1rem;
}

.compare-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}

.compare-float .compare-count {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.6rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 4px;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* ===== 35. Product Gallery ===== */
.product-gallery .main-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.product-gallery .main-image-wrapper img {
    width: 100%;
    min-height: 400px;
    object-fit: contain;
    padding: 24px;
}

.thumbnails-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    padding: 4px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* ===== 36. Star Rating Input ===== */
.star-rating-input i {
    cursor: pointer;
    color: var(--border);
    transition: color var(--transition-fast);
}

.star-rating-input i.active,
.star-rating-input i:hover,
.star-rating-input i:hover ~ i {
    color: var(--gold-400);
}

/* ===== 37. Urgency Timer ===== */
.urgency-timer {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.12);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

/* ===== 38. Brands Carousel ===== */
.brand-item {
    padding: 20px;
    text-align: center;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.brand-link:hover .brand-logo {
    border-color: var(--green-400);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.brand-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--green-300);
}

.brand-link .brand-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== 39. Promo Section ===== */
.promo-section {
    position: relative;
    overflow: hidden;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-100);
    color: var(--gold-700);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.promo-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.promo-offer-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-offer-simple {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(217, 119, 6, 0.3);
}

.promo-offer-simple .offer-big {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 8px 0;
}

.promo-offer-simple .offer-label {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===== 40. Loading Skeleton ===== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

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

/* ===== 41. Modal Custom ===== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

/* ===== 42. Tooltip Custom ===== */
.tooltip-custom {
    position: relative;
}

.tooltip-custom .tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
    z-index: 10;
}

.tooltip-custom:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ===== 43. Responsive ===== */

/* Tablet */
@media (max-width: 991px) {
    .main-header {
        background: rgba(255,255,255,0.98);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        max-width: calc(100% - 130px);
        overflow: hidden;
    }

    .brand-logo-img {
        max-width: 80px;
        height: auto !important;
        flex-shrink: 0;
    }

    .main-header .navbar-nav .nav-link {
        padding: 14px 18px !important;
        border-bottom: 1px solid var(--border-light);
        font-weight: 700;
    }

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

    .main-header .navbar-nav .nav-link i {
        width: 20px;
        text-align: center;
        margin-right: 10px;
    }

    .header-actions {
        gap: 4px;
        margin-left: auto;
        margin-right: 6px;
    }

    .collapse.navbar-collapse {
        flex-basis: 100%;
    }

    .header-actions .action-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .header-actions .action-btn .badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.5rem;
        top: -4px;
        right: -4px;
    }

    .hero-fullframe .hero-slide-full {
        min-height: 400px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .newsletter-inner {
        padding: 30px;
    }

    .product-image {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .announcement-bar {
        font-size: 0.7rem;
        padding: 5px 0;
    }

    .main-header .navbar {
        min-height: 60px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-icon i {
        font-size: 20px;
    }

    .brand-logo-img {
        max-width: 50px;
        height: auto !important;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-location {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .navbar-brand {
        max-width: calc(100% - 110px);
    }

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

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

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

    .hero-fullframe .hero-slide-full {
        min-height: 350px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .product-image {
        height: 180px;
    }

    .category-image {
        height: 140px;
    }

    .footer-top {
        padding: 40px 0 20px;
    }

    .auth-card {
        padding: 24px;
    }

    .newsletter-inner {
        padding: 24px;
    }

    .breadcrumb {
        margin-bottom: 16px;
    }

    .social-proof-bar {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .testimonial-card {
        padding: 24px;
    }

    .empty-cart {
        padding: 30px;
    }

    .product-gallery .main-image-wrapper img {
        min-height: 280px;
    }

    .thumb-item {
        width: 60px;
        height: 60px;
    }

    .payment-card-lg {
        min-height: 130px;
        padding: 16px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-card .product-name {
        font-size: 0.8rem;
    }

    .current-price {
        font-size: 1rem;
    }

    .cart-item {
        padding: 14px;
    }

    .cart-item-image img,
    .no-image-sm {
        width: 60px;
        height: 60px;
    }
}

/* ===== 44. Luxury Premium Animations ===== */

/* Staggered card entrance */
.stagger-enter {
    opacity: 0;
    transform: translateY(40px);
}
.stagger-enter.stagger-visible {
    animation: staggerFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes staggerFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scale on hover with premium shadow */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Border glow effect */
.hover-glow {
    transition: box-shadow var(--transition-base);
}
.hover-glow:hover {
    box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

/* Premium card glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shimmer gold effect for special badges */
.shimmer-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300), var(--gold-500));
    background-size: 200% 200%;
    animation: shimmerGold 2s ease-in-out infinite;
}

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

/* Heart animation for wishlist */
.heart-animate {
    animation: heartBeat 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
}

/* Cart added animation */
.animate-cart {
    animation: cartBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.2); }
    60% { transform: scale(0.9); }
}

/* Section entrance with gradient reveal */
.section-reveal {
    position: relative;
    overflow: hidden;
}

.section-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-500), var(--gold-400), transparent);
    transform: translateX(-100%);
    animation: revealLine 1.5s ease forwards;
}

@keyframes revealLine {
    to { transform: translateX(100%); }
}

/* Luxury corner accent */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-400);
    opacity: 0.3;
}

.corner-accent::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-accent::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* ===== 45. Tracking Timeline ===== */
.tracking-timeline {
    position: relative;
    padding-left: 40px;
}

.tracking-step {
    position: relative;
    padding-bottom: 30px;
    border-left: 2px solid var(--gray-300);
    padding-left: 20px;
    margin-left: 10px;
}

.tracking-step:last-child {
    border-left: none;
    padding-bottom: 0;
}

.tracking-step.completed {
    border-left-color: var(--green-600);
}

.tracking-step .step-icon {
    position: absolute;
    left: -14px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--gray-300);
    color: var(--gray-400);
}

.tracking-step.completed .step-icon {
    background: var(--green-600);
    color: var(--white);
}

.tracking-step.current .step-icon {
    background: var(--gold-500);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.3);
}

.tracking-step .step-content {
    padding-top: 2px;
}

/* ===== 46. Ticket Reply Styles ===== */
.ticket-reply.customer {
    background: var(--green-50);
    border-left: 3px solid var(--green-600);
}

.ticket-reply.admin {
    background: #e8f4fd;
    border-left: 3px solid var(--info);
}

/* ===== 47. Order Confirmation ===== */
.confirmation-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
}

.confirmation-box .success-icon {
    font-size: 5rem;
    color: var(--green-600);
    margin-bottom: 20px;
}

.confirmation-box .order-details {
    background: var(--green-50);
    border-radius: var(--radius-md);
    padding: 20px;
}

.confirmation-box .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--green-200);
}

.confirmation-box .detail-row:last-child {
    border-bottom: none;
}

/* ===== 48. Search Bar ===== */
.search-bar-lg {
    max-width: 600px;
}

.search-bar-lg input {
    padding: 16px 60px 16px 24px;
    border-radius: var(--radius-full) !important;
    border: 2px solid var(--border);
    font-size: 1rem;
}

.search-bar-lg input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

/* ===== 49. Track Order ===== */
.track-search-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
}

.track-search-box .track-icon {
    font-size: 4rem;
    color: var(--green-600);
    margin-bottom: 20px;
}

/* ===== 50. Print Styles ===== */
@media print {
    .main-header,
    .main-footer,
    .whatsapp-float,
    .back-to-top,
    .compare-float,
    .sticky-purchase-bar,
    .search-overlay,
    .toast-container,
    .announcement-bar,
    .top-bar {
        display: none !important;
    }

    body {
        background: white;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}
