/* ================================================================
   WindTech Appliances — Professional 3D Design System v3.0
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
    --primary:        #0d9488;
    --primary-dark:   #0f766e;
    --primary-light:  #2dd4bf;
    --secondary:      #f97316;
    --secondary-dark: #ea580c;
    --accent:         #8b5cf6;
    --dark:           #0f172a;
    --dark-2:         #1e293b;
    --dark-3:         #334155;
    --mid:            #475569;
    --light:          #f8fafc;
    --light-2:        #f1f5f9;
    --border:         #e2e8f0;
    --success:        #10b981;
    --danger:         #ef4444;
    --warning:        #f59e0b;
    --white:          #ffffff;
    --text:           #1e293b;
    --text-muted:     #64748b;

    --shadow-sm:   0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg:   0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.10);
    --shadow-xl:   0 30px 80px rgba(0,0,0,0.25), 0 10px 30px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(22,160,133,0.3), 0 0 80px rgba(22,160,133,0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Poppins', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .btn, .navbar-menu a, .section-title, .product-name, .footer h4 {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
}

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

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

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

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 4px 20px rgba(22,160,133,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(22,160,133,0.5);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(22,160,133,0.3);
}

.btn-dark {
    background: var(--dark);
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.5); }

.btn-large { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; align-items: center; border-radius: var(--radius-full); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
/*
 * ┌─────────────────────────────────────────────────────────────┐
 * │  NAVBAR COLOR — Pick ONE option, comment out the other      │
 * ├─────────────────────────────────────────────────────────────┤
 * │  OPTION 1 (active) : Dark Navy Glassmorphism                │
 * │      Semi-transparent deep navy, blurs content behind it    │
 * │                                                             │
 * │  OPTION 2          : Solid Pure Black                       │
 * │      Classic full black, clean & bold                       │
 * └─────────────────────────────────────────────────────────────┘
*/

/* ── OPTION 1 : Dark Navy Glassmorphism ─── CURRENTLY ACTIVE ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 0;
    background: rgba(10, 15, 30, 0.88);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid rgba(22,160,133,0.18);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 15, 30, 0.98);
    border-bottom-color: rgba(22,160,133,0.35);
    box-shadow: 0 4px 30px rgba(0,0,0,0.45);
}

/*
── OPTION 2 : Solid Pure Black ── (to activate: remove the slashes below)

.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 0;
    background: #000000;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(22,160,133,0.25);
    transition: var(--transition);
}
.navbar.scrolled {
    background: #000000;
    border-bottom-color: rgba(22,160,133,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

 */

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

.navbar-brand a { display: flex; align-items: center; gap: 12px; }

.logo {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(22,160,133,0.4));
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.navbar-menu a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: white;
    background: rgba(22,160,133,0.15);
}

.navbar-menu a.active {
    color: var(--primary-light);
}

.cart-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(22,160,133,0.4);
}
.cart-toggle:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(22,160,133,0.5) !important;
    background: rgba(22,160,133,0.15) !important;
}

.cart-count {
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    min-width: 22px;
    text-align: center;
}

/* Navbar right cluster (cart + hamburger) */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: var(--dark);
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-container { position: relative; height: 100%; }

.slider-wrapper {
    position: relative;
    height: 100%;
    perspective: 1200px;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
    /* Each slide gets its own rich dark gradient background */
    background: linear-gradient(135deg, #0a0f1e 0%, #0d2233 60%, #0a1a18 100%);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Individual slide colour themes */
.slide:nth-child(1) {
    background: linear-gradient(135deg, #0a0f1e 0%, #0e2d24 50%, #0a1510 100%);
}
.slide:nth-child(2) {
    background: linear-gradient(135deg, #0a0f1e 0%, #1e1208 50%, #160a0a 100%);
}
.slide:nth-child(3) {
    background: linear-gradient(135deg, #0a0f1e 0%, #0a1628 50%, #07101e 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,15,30,0.6) 0%,
        rgba(22,160,133,0.08) 50%,
        rgba(10,15,30,0.5) 100%);
    z-index: 1;
}

/* Slide inner — two-column layout: text left, visual right */
.slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.slide-content {
    text-align: left;
    padding: 0;
}

/* Visual panel — product emoji showcase */
.slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-emoji-ring {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.15) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22,160,133,0.15);
    box-shadow: 0 0 60px rgba(22,160,133,0.1), inset 0 0 40px rgba(22,160,133,0.05);
    animation: float 6s ease-in-out infinite;
}

.slide-emoji-main {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px rgba(22,160,133,0.4));
    animation: float 4s ease-in-out infinite reverse;
}

.slide-float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.75;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.slide-float-icon:nth-child(2) { animation-delay: 0.8s; }
.slide-float-icon:nth-child(3) { animation-delay: 1.6s; }
.slide-float-icon:nth-child(4) { animation-delay: 2.4s; }

.slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    animation: heroTextIn 0.8s ease both;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: heroTextIn 0.8s ease 0.2s both;
}

.slide-content .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroTextIn 0.8s ease 0.4s both;
}

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

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--primary-light);
    width: 28px;
    box-shadow: 0 0 10px rgba(22,160,133,0.6);
}

/* Hero floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; background: rgba(22,160,133,0.12); top: -100px; left: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 300px; height: 300px; background: rgba(132,94,194,0.10); bottom: -80px; right: -80px; animation-delay: 3s; }
.hero-shape-3 { width: 200px; height: 200px; background: rgba(255,107,53,0.08); top: 40%; right: 15%; animation-delay: 1.5s; }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -30px) scale(1.05); }
    66%       { transform: translate(-15px, 20px) scale(0.95); }
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 28px 0;
    border-bottom: 1px solid rgba(22,160,133,0.2);
}

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

.stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── SECTION WRAPPER ─────────────────────────────────────────── */
.section {
    padding: 90px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22,160,133,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(22,160,133,0.2);
}

/* ── TOP SELLERS ─────────────────────────────────────────────── */
.top-sellers {
    padding: 90px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

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

/* ── PRODUCTS GRID ───────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}
/* Shop page — cards with sidebar present */
.shop-main .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.shop-main .product-image { height: 220px; padding: 16px 20px; }
.shop-main .product-info { padding: 14px 16px 10px; gap: 6px; }
.shop-main .product-footer { padding: 0 14px 16px; }
.shop-main .product-price { font-size: 1.15rem; }
.shop-main .product-name { font-size: 0.93rem; }

/* ── PRODUCT CARD (3D Enhanced) ─────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    border: 1px solid var(--border);
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card:hover {
    transform: translateY(-14px) scale(1.015);
    box-shadow: 0 28px 60px rgba(0,0,0,0.14), 0 8px 20px rgba(22,160,133,0.1),
                0 0 0 1px rgba(22,160,133,0.18);
    border-color: rgba(22,160,133,0.2);
}
.product-card:hover::before { opacity: 1; }

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 4;
}
.product-card:hover::after { left: 130%; }

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f8f5 0%, #d1f0e8 60%, #c5ebe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    box-sizing: border-box;
}

.product-image::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.product-card:hover .product-image img { transform: scale(1.1); }

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

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

.badge-top  { background: linear-gradient(135deg, #ff6b35, #e5511b); color: white; }
.badge-new  { background: linear-gradient(135deg, #845EC2, #6b42b0); color: white; }
.badge-sale { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.badge-out  { background: rgba(0,0,0,0.7); color: rgba(255,255,255,0.8); }

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    transform: translateX(60px);
    transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); }

.action-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    transition: var(--transition);
}
.action-btn:hover { background: var(--primary); color: white; transform: scale(1.1); box-shadow: 0 6px 20px rgba(22,160,133,0.4); }

.product-info {
    padding: 18px 20px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-category {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(22,160,133,0.08);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-model {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars { display: flex; gap: 2px; }
.stars i { font-size: 0.75rem; color: var(--warning); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

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

.product-footer {
    padding: 0 16px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-family: inherit;
    position: relative;
    z-index: 5;
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22,160,133,0.5);
}
.add-to-cart-btn:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.view-btn {
    width: 42px; height: 42px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    z-index: 5;
}
.view-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(22,160,133,0.06); }

/* ── PRODUCT DETAIL MODAL (pd-*) ─────────────────────────────── */
.pd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.pd-modal {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 940px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(22,160,133,0.15);
    overflow: hidden;
    animation: pdSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: auto;
}

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

.pd-close-btn {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 20;
    transition: var(--transition);
    line-height: 1;
}
.pd-close-btn:hover { background: var(--danger); transform: rotate(90deg) scale(1.1); }

.pd-top {
    display: grid;
    grid-template-columns: 380px 1fr;
}

.pd-img-wrap {
    background: linear-gradient(145deg, #0a1929 0%, #0d2137 50%, #162f44 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.pd-img-wrap::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.pd-img-wrap::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(22,160,133,0.05);
    bottom: -60px; right: -40px;
    pointer-events: none;
}

.pd-img-wrap img {
    width: 82%;
    height: 82%;
    max-height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
}
.pd-img-emoji {
    font-size: 5.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.pd-img-discount {
    position: absolute;
    top: 14px; left: 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    z-index: 5;
}

.pd-oos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pd-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    overflow-y: auto;
    max-height: 500px;
}

.pd-category-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(22,160,133,0.1);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
}

.pd-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.pd-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.pd-meta-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pd-meta-item i { color: var(--primary); font-size: 0.75rem; }

.pd-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-stars-row .stars i { font-size: 0.88rem; }
.pd-review-link {
    font-size: 0.8rem;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.pd-price-main {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.pd-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.pd-discount-pill {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pd-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    width: fit-content;
}
.pd-stock-badge.in-stock  { background: rgba(22,160,133,0.1);  color: var(--primary); }
.pd-stock-badge.out-stock { background: rgba(239,68,68,0.1);   color: var(--danger); }
.pd-stock-badge.preorder  { background: rgba(245,158,11,0.1);  color: var(--warning); }

.pd-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.pd-features {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
}
.pd-feature-item {
    font-size: 0.8rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pd-feature-item i { color: var(--primary); font-size: 0.72rem; flex-shrink: 0; }

.pd-add-row {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 4px;
    margin-top: auto;
}
.pd-qty-input {
    width: 72px;
    padding: 11px 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    text-align: center;
    font-family: inherit;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition);
}
.pd-qty-input:focus { outline: none; border-color: var(--primary); background: white; }

/* ── REVIEWS ────────────────────────────────────────────────── */
.pd-reviews-section {
    border-top: 1px solid var(--border);
    padding: 28px 32px;
    background: var(--light);
}
.pd-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.pd-reviews-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-reviews-title i { color: var(--warning); }

.pd-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.pd-review-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-reviewer-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pd-reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.pd-review-date { font-size: 0.73rem; color: var(--text-muted); margin-left: auto; white-space: nowrap; }
.pd-review-stars i { font-size: 0.72rem; color: var(--warning); }
.pd-review-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

.pd-no-reviews {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.87rem;
    padding: 16px 0 24px;
    grid-column: 1/-1;
}

.pd-write-review-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.pd-review-form-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.pd-review-form-inner .pd-form-full { grid-column: 1 / -1; }

.pd-star-picker {
    display: flex;
    gap: 6px;
    align-items: center;
    grid-column: 1 / -1;
}
.pd-star-picker label { font-size: 0.8rem; color: var(--text-muted); margin-right: 4px; }
.pd-star-picker i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.12s, transform 0.12s;
}
.pd-star-picker i.lit { color: var(--warning); }
.pd-star-picker i:hover { transform: scale(1.2); }

.pd-ri, .pd-rt {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.87rem;
    font-family: inherit;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    width: 100%;
}
.pd-ri:focus, .pd-rt:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(22,160,133,0.1);
}
.pd-rt { resize: vertical; min-height: 80px; }

@media (max-width: 720px) {
    .pd-top { grid-template-columns: 1fr; }
    .pd-img-wrap { min-height: 220px; }
    .pd-info { padding: 22px; max-height: none; }
    .pd-features { grid-template-columns: 1fr; }
    .pd-reviews-section { padding: 22px; }
    .pd-review-form-inner { grid-template-columns: 1fr; }
    .pd-review-form-inner .pd-form-full { grid-column: 1; }
    .pd-reviews-list { grid-template-columns: 1fr; }
}

/* ── CATEGORIES SECTION ──────────────────────────────────────── */
.categories-section {
    padding: 90px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,160,133,0.08), rgba(22,160,133,0));
    opacity: 0;
    transition: opacity 0.3s;
}
.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(22,160,133,0.15);
}
.category-card:hover::before { opacity: 1; }

/* ── CATEGORY BACKGROUND COLORS ── */
.bg-grey  { background-color: #f1f5f9 !important; border-color: #e2e8f0 !important; }
.bg-green { background-color: #ecfdf5 !important; border-color: #d1fae5 !important; }
.bg-cyan  { background-color: #ecfeff !important; border-color: #cffafe !important; }
.bg-blue  { background-color: #eff6ff !important; border-color: #dbeafe !important; }
.bg-rose  { background-color: #fff1f2 !important; border-color: #ffe4e6 !important; }
.bg-amber { background-color: #fffbeb !important; border-color: #fef3c7 !important; }


.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}
.category-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.12));
}
.category-card:hover .category-icon { transform: scale(1.15) translateY(-5px); }

.category-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

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

/* ── FEATURES SECTION ────────────────────────────────────────── */
.features {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316A085' fill-opacity='0.04'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
    position: relative;
}

.feature-box {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(22,160,133,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--shadow-glow);
}
.feature-box:hover::after { transform: scaleX(1); }

.feature-box i {
    font-size: 2.4rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(22,160,133,0.4));
    transition: transform 0.3s;
}
.feature-box:hover i { transform: scale(1.1) rotateY(20deg); }

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}
.newsletter::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -100px;
    left: -50px;
}

.newsletter h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.newsletter p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.25);
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.newsletter-form .btn:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, rgba(22,160,133,0.15) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(22,160,133,0.2);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(22,160,133,0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    position: relative;
}

/* ── SHOP PAGE ───────────────────────────────────────────────── */
.shop-section { padding: 60px 0; }

.shop-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.shop-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-sm);
}

.filter-group { margin-bottom: 32px; }
.filter-group:last-child { margin-bottom: 0; }

.filter-group h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    padding: 7px 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.filter-options label:hover { background: var(--light); padding-left: 10px; }

.filter-options input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.price-range-slider {
    padding: 8px 0;
}

.price-slider {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
    height: 4px;
    border-radius: 2px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.product-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.product-count strong { color: var(--primary); font-weight: 700; }

.sort-select {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    transition: var(--transition);
}
.sort-select:focus { outline: none; border-color: var(--primary); }

/* ── CART SIDEBAR ────────────────────────────────────────────── */
.cart-sidebar {
    position: fixed;
    right: -440px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 1200;
    box-shadow: -10px 0 60px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
}

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

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1190;
    display: none;
    transition: opacity 0.3s;
}
.cart-overlay.active { display: block; }

.cart-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: white;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(22,160,133,0.2);
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.close-cart:hover { background: var(--danger); }

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}
.cart-item:hover { border-color: rgba(22,160,133,0.3); }

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--white);
    flex-shrink: 0;
    border: 1px solid var(--border);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 1rem; }
.cart-item-qty { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.remove-item-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    opacity: 0.6;
    flex-shrink: 0;
}
.remove-item-btn:hover { opacity: 1; background: rgba(239,68,68,0.1); }

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 48px 0;
}
.empty-cart i { font-size: 3rem; margin-bottom: 12px; display: block; opacity: 0.3; }

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

.cart-summary { margin-bottom: 16px; }

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

.summary-row.total {
    border-top: 2px solid var(--border);
    padding-top: 10px;
    margin-top: 6px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
}

.cart-footer .btn { margin-bottom: 10px; border-radius: var(--radius-md); }

/* ── CHECKOUT PAGE ───────────────────────────────────────────── */
.checkout-section { padding: 60px 0; background: var(--light); }

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 36px;
    align-items: start;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.checkout-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card h3 i { color: var(--primary); }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22,160,133,0.1);
}

/* ── ORDER SUMMARY SIDEBAR ───────────────────────────────────── */
.order-sidebar {
    position: sticky;
    top: 90px;
}

.order-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.order-summary-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-items { margin-bottom: 20px; max-height: 260px; overflow-y: auto; }

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
.order-item:last-child { border-bottom: none; }

.order-item-name { color: var(--text); font-weight: 500; flex: 1; }
.order-item-qty { color: var(--text-muted); margin: 0 12px; }
.order-item-price { font-weight: 700; color: var(--primary); white-space: nowrap; }

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

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.total-row.grand {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    border-top: 2px solid var(--border);
    padding-top: 12px;
    margin-top: 8px;
}

/* Payment methods */
.payment-options { display: flex; flex-direction: column; gap: 10px; }

.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.payment-option:hover { border-color: var(--primary); background: rgba(22,160,133,0.02); }
.payment-option.selected { border-color: var(--primary); background: rgba(22,160,133,0.06); }

.payment-option input[type="radio"] { accent-color: var(--primary); }
.payment-option-icon { font-size: 1.2rem; color: var(--primary); width: 24px; text-align: center; }
.payment-option-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.payment-option-desc { font-size: 0.78rem; color: var(--text-muted); }

.payment-detail-panel {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 10px;
    display: none;
    font-size: 0.85rem;
    line-height: 1.8;
}
.payment-detail-panel.active { display: block; }

.bank-detail {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.bank-detail strong { color: var(--primary); display: block; margin-bottom: 4px; }
.bank-field { display: flex; justify-content: space-between; padding: 2px 0; }
.bank-field span:first-child { color: var(--text-muted); }
.bank-field span:last-child { font-weight: 600; color: var(--text); }

/* Coupon input */
.coupon-row {
    display: flex;
    gap: 10px;
}
.coupon-row input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    text-transform: uppercase;
}
.coupon-row input:focus { outline: none; border-color: var(--primary); }

/* Shipping options */
.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.shipping-option {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.shipping-option:hover { border-color: var(--primary); }
.shipping-option.selected { border-color: var(--primary); background: rgba(22,160,133,0.04); }
.shipping-option input[type="radio"] { accent-color: var(--primary); }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(22,160,133,0.15) 0%, transparent 60%);
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; position: relative; }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; position: relative; }

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

.about-content h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(22,160,133,0.35);
}
.team-name { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.team-role { font-size: 0.78rem; color: var(--primary); font-weight: 500; margin-top: 4px; }

/* Why grid — 3 per row on index page */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* 3D Why section container */
.why-section-3d {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161f2c 45%, #0d2137 100%);
    position: relative;
    overflow: hidden;
}
.why-section-3d::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.12) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    pointer-events: none;
}
.why-section-3d::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    pointer-events: none;
}
.why-section-3d .section-tag { color: rgba(255,255,255,0.7); background: rgba(22,160,133,0.15); border-color: rgba(22,160,133,0.3); }
.why-section-3d .section-title { color: white; }
.why-section-3d .section-subtitle { color: rgba(255,255,255,0.65); }

.why-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 24px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: default;
    min-height: 110px;
}
.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,160,133,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: inherit;
}
.why-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(22,160,133,0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(22,160,133,0.12);
}
.why-item:hover::before { opacity: 1; }

/* Icon circle badge */
.why-item > i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22,160,133,0.25), rgba(22,160,133,0.1));
    border: 1px solid rgba(22,160,133,0.35);
    border-radius: 14px;
    color: var(--primary-light) !important;
    font-size: 1.2rem !important;
    margin-top: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.why-item:hover > i {
    background: linear-gradient(135deg, rgba(22,160,133,0.5), rgba(22,160,133,0.2));
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(22,160,133,0.3);
}

.why-item-text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 1;
}
.why-item-text strong { color: white; font-size: 1rem; display: block; margin-bottom: 5px; }

/* About-page why-item (light bg override) */
.why-list .why-item {
    background: var(--light);
    border: none;
    border-left: 3px solid var(--primary);
    backdrop-filter: none;
    min-height: unset;
    transform-style: flat;
}
.why-list .why-item:hover { background: rgba(22,160,133,0.06); transform: translateX(4px); box-shadow: none; }
.why-list .why-item > i { width: auto; height: auto; background: none; border: none; border-radius: 0; color: var(--primary) !important; font-size: inherit !important; margin-top: 2px; }
.why-list .why-item:hover > i { background: none; transform: none; box-shadow: none; }
.why-list .why-item-text { color: var(--text); }
.why-list .why-item-text strong { color: var(--text); }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}
.contact-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-lg); }

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(22,160,133,0.3);
}

.contact-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.85rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.contact-form-wrapper .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-form-wrapper .contact-form > div:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-form-wrapper .contact-form textarea {
    flex: 1;
    min-height: 100px;
}
.contact-form-wrapper h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-muted); margin-bottom: 28px; }

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(22,160,133,0.1); }
.contact-form textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(22,160,133,0.2);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2316A085' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(22,160,133,0.4));
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-section ul a::before { content: '→'; color: var(--primary); font-size: 0.8rem; opacity: 0; transform: translateX(-8px); transition: all 0.2s; }
.footer-section ul a:hover { color: white; padding-left: 8px; }
.footer-section ul a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact p i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary-light); }

.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-list li strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.hours-list li .closed { color: var(--danger); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--primary-light); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.2);
    z-index: 900;
    transition: var(--transition-bounce);
    text-decoration: none;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
    animation: none;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ── TOAST NOTIFICATIONS ─────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--dark);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    pointer-events: auto;
    animation: toastIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 360px;
    text-align: center;
}
.toast.toast-success { background: var(--success); border-color: rgba(255,255,255,0.2); }
.toast.toast-error { background: var(--danger); border-color: rgba(255,255,255,0.2); }
.toast.toast-info { background: var(--primary); border-color: rgba(255,255,255,0.2); }
.toast.hide { animation: toastOut 0.3s ease both; }

@keyframes toastIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(10px); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutRight { from { opacity: 1; } to { opacity: 0; transform: translateX(60px); } }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}
.modal-backdrop.active { opacity: 1; }

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border);
}
.modal-backdrop.active .modal { transform: scale(1) translateY(0); }

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.modal-icon.success { background: rgba(16,185,129,0.1); color: var(--success); }
.modal-icon.danger  { background: rgba(239,68,68,0.1);  color: var(--danger); }
.modal-icon.warning { background: rgba(245,158,11,0.1); color: var(--warning); }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }

.modal-body { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.modal-footer { display: flex; gap: 12px; justify-content: flex-end; }

/* ── ADMIN PANEL ─────────────────────────────────────────────── */
.login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, rgba(22,160,133,0.08) 100%);
    position: relative;
    overflow: hidden;
}

.login-screen::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,160,133,0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.login-screen::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(132,94,194,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.login-box {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 44px;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.login-logo img { height: 46px; filter: brightness(0) invert(1); }

.login-box h2 {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.login-box > p {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 36px;
}

.login-box .form-group { margin-bottom: 18px; }

.login-box .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-box .form-group input {
    width: 100%;
    padding: 13px 18px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}
.login-box .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(22,160,133,0.15);
}
.login-box .form-group input::placeholder { color: rgba(255,255,255,0.25); }

.login-box .btn {
    width: 100%;
    padding: 14px;
    justify-content: center;
    margin-top: 8px;
}

.login-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 16px;
    padding: 10px;
    background: rgba(239,68,68,0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(239,68,68,0.2);
    display: none;
}

/* Admin Dashboard */
.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: var(--light);
}

.admin-sidebar {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid rgba(22,160,133,0.2);
}

.admin-sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-sidebar-header img { height: 38px; filter: brightness(0) invert(1); }
.admin-sidebar-header span { font-weight: 700; font-size: 1rem; }

.admin-sidebar-nav { padding: 20px 0; }
.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
}
.admin-sidebar-nav a:hover { color: white; background: rgba(255,255,255,0.05); border-left-color: var(--primary); }
.admin-sidebar-nav a.active { color: var(--primary-light); background: rgba(22,160,133,0.08); border-left-color: var(--primary); }
.admin-sidebar-nav a i { width: 18px; text-align: center; font-size: 0.95rem; }

.admin-sidebar-section {
    padding: 8px 24px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
}

.admin-main { padding: 32px; overflow-y: auto; }

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    flex-wrap: wrap;
}
.admin-topbar h1 { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.admin-user-badge .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
}

.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }

.admin-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.admin-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.admin-stat-card:hover::before { transform: scaleX(1); }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.stat-icon.teal  { background: rgba(22,160,133,0.1);  color: var(--primary); }
.stat-icon.blue  { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.stat-icon.orange{ background: rgba(249,115,22,0.1);  color: #f97316; }
.stat-icon.purple{ background: rgba(132,94,194,0.1);  color: var(--accent); }
.stat-icon.red   { background: rgba(239,68,68,0.1);   color: var(--danger); }

.stat-info { flex: 1; }
.stat-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-info p  { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.admin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 28px;
}

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

.admin-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-card-header h3 i { color: var(--primary); }

.admin-card-body { padding: 24px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
    background: var(--light);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid var(--border);
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--light); }

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.badge-active   { background: rgba(16,185,129,0.1);  color: var(--success); }
.badge-inactive { background: rgba(239,68,68,0.1);   color: var(--danger); }
.badge-pending  { background: rgba(245,158,11,0.1);  color: var(--warning); }
.badge-role-super { background: rgba(132,94,194,0.1); color: var(--accent); }
.badge-role-mgr   { background: rgba(22,160,133,0.1); color: var(--primary); }

.admin-form { display: flex; flex-direction: column; gap: 18px; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.admin-form label { font-size: 0.82rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,160,133,0.1); }
.admin-form textarea { min-height: 90px; resize: vertical; }

.admin-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition);
    flex: 1;
    max-width: 300px;
}
.admin-search i { color: var(--text-muted); font-size: 0.9rem; }
.admin-search input { border: none; background: transparent; font-size: 0.9rem; color: var(--text); font-family: inherit; width: 100%; }
.admin-search input:focus { outline: none; }
.admin-search:focus-within { border-color: var(--primary); background: white; }

/* Activity log */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.activity-dot.green  { background: var(--success); box-shadow: 0 0 6px rgba(16,185,129,0.4); }
.activity-dot.blue   { background: #3b82f6; box-shadow: 0 0 6px rgba(59,130,246,0.4); }
.activity-dot.orange { background: var(--secondary); box-shadow: 0 0 6px rgba(249,115,22,0.4); }
.activity-dot.red    { background: var(--danger); box-shadow: 0 0 6px rgba(239,68,68,0.4); }
.activity-text { font-size: 0.87rem; color: var(--text); flex: 1; }
.activity-text strong { color: var(--dark); }
.activity-time { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.activity-meta { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }

/* ── ORDER SUCCESS PAGE ──────────────────────────────────────── */
.success-page { padding: 80px 0; text-align: center; }
.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #34d399);
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(16,185,129,0.35);
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

.success-page h1 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.success-page p { color: var(--text-muted); font-size: 1.05rem; }

.order-details-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 560px;
    margin: 40px auto;
    box-shadow: var(--shadow-lg);
    text-align: left;
}

/* ── TERMS, PRIVACY ──────────────────────────────────────────── */
.legal-page { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }

/* ── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs span { color: var(--text-muted); }

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }

/* Loading */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(22,160,133,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-12px) rotate(1deg); }
    66%       { transform: translateY(-6px) rotate(-1deg); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-fade    { animation: fadeIn 0.6s ease both; }

/* Scroll reveal — starts hidden, JS adds .visible class.
   CSS fallback animation ensures visibility after 1.8s even if JS doesn't run. */
@keyframes revealFallback {
    to { opacity: 1; transform: none; }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: revealFallback 0s 1.8s forwards;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: revealFallback 0s 1.8s forwards;
}
.stagger.visible > * { animation: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.20s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(n+5) { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .shop-wrapper { grid-template-columns: 240px 1fr; gap: 24px; }
    .checkout-wrapper { grid-template-columns: 1fr; }
    .order-sidebar { position: static; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 14px; }
    .section { padding: 60px 0; }

    .navbar .container { height: 76px; }
    .menu-toggle { display: flex; }
    /* On mobile: cart label hidden, icon-only button */
    .cart-label { display: none; }
    .cart-toggle {
        padding: 8px 10px !important;
        gap: 0 !important;
        background: rgba(22,160,133,0.12) !important;
        box-shadow: none !important;
    }
    .navbar-menu {
        display: none;
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: rgba(10,15,30,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 0 20px;
        gap: 2px;
        border-bottom: 1px solid rgba(22,160,133,0.2);
        animation: menuSlideDown 0.28s ease;
        z-index: 9000;
    }
    .navbar-menu.open { display: flex; }
    @keyframes menuSlideDown {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .navbar-menu a { padding: 12px 28px; border-radius: 0; border-left: 3px solid transparent; }
    .navbar-menu a.active { border-left-color: var(--primary); }

    .hero-slider { height: 520px; }
    .slide-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
    .slide-visual { display: none; }
    .slide-content { text-align: center; }
    .hero-btns { justify-content: center; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 0.95rem; }

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

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }

    .features-grid { grid-template-columns: 1fr 1fr; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form input { text-align: center; }

    .shop-wrapper { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .cart-sidebar { width: 100%; right: -100%; }
    .cart-sidebar.active { right: 0; }

    .form-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }

    .footer-bottom { justify-content: center; text-align: center; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.35rem; }

    .admin-form .form-row { grid-template-columns: 1fr; }
    .admin-form .form-row-3 { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .admin-main { padding: 20px 16px; }

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

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

@media (max-width: 480px) {
    .hero-slider { height: 460px; }
    .slide-content h1 { font-size: 1.6rem; }
    .slide-inner { padding: 0 16px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-image { height: 180px; }
    .product-info { padding: 14px; gap: 7px; }
    .product-footer { padding: 0 14px 14px; }
}

/* ── PAGE ENTRY ANIMATIONS ───────────────────────────────────── */
/* Fade-in body on page load */
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.page-header,
.hero-slider,
.breadcrumb-bar + section,
.breadcrumb-bar + .product-detail-page {
    animation: pageEnter 0.55s ease both;
}

/* Section tag pop */
@keyframes tagPop {
    0%   { opacity: 0; transform: scale(0.8) translateY(8px); }
    60%  { transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.section-tag { animation: tagPop 0.5s ease both; }

/* Stat box subtle scale-in (uses existing stagger transition) */
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s !important; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s !important; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s !important; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s !important; }

/* Product card hover lift — reinforce */
.product-card { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; }

/* Why-item appear */
.why-item.scroll-reveal.visible {
    animation: fadeInUp 0.5s ease both;
}

/* Smooth link transitions */
a { transition: color 0.2s, opacity 0.2s; }

/* Admin page entry */
.admin-section.active .admin-table-container,
.admin-section.active .admin-cards { animation: fadeInUp 0.4s ease both; }
