/* ============================================
   ARVANIQ ROOTS - Fairytale Jungle Theme
   With Advanced Animations + Image Gallery
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #2D5016;
    --medium-green: #4A7C2E;
    --light-green: #7CB342;
    --pale-green: #E8F5E9;
    --frost-green: #F1F8E9;
    --leaf-accent: #8BC34A;
    --gold-accent: #D4A843;
    --light-gold: #F5E6B8;
    --cream: #FFFDF7;
    --white: #FFFFFF;
    --text-dark: #1A2E0A;
    --text-medium: #3D5A1E;
    --text-light: #6B8F4A;
    --text-muted: #8FA87A;
    --border-light: #C8E6C9;
    --shadow-soft: 0 4px 20px rgba(45, 80, 22, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 80, 22, 0.12);
    --shadow-strong: 0 15px 50px rgba(45, 80, 22, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(139, 195, 74, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(45, 80, 22, 0.05) 0%, transparent 50%);
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }



/* ===== LOADING SCREEN ===== */
.preloader {
    position: fixed; inset: 0; z-index: 999999; background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-leaf {
    font-size: 3rem; animation: preloaderSpin 1.5s ease-in-out infinite;
}
.preloader-text {
    font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--medium-green);
    margin-top: 15px; animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderSpin { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.2); } 100% { transform: rotate(360deg) scale(1); } }
@keyframes preloaderPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--primary-green); line-height: 1.3; }
.fairy-text { font-family: 'Great Vibes', cursive; color: var(--medium-green); }
.section-title { font-size: 2.8rem; font-weight: 700; text-align: center; margin-bottom: 5px; }
.section-subtitle { font-family: 'Great Vibes', cursive; font-size: 1.6rem; color: var(--medium-green); text-align: center; margin-bottom: 50px; }
.vine-divider { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 15px 0; }
.vine-divider::before, .vine-divider::after { content: ''; height: 2px; width: 80px; background: linear-gradient(90deg, transparent, var(--leaf-accent), transparent); }
.vine-divider .vine-icon { color: var(--leaf-accent); font-size: 1.4rem; animation: vineSway 3s ease-in-out infinite; }
@keyframes vineSway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* ===== FLOATING LEAVES ===== */
.leaf-particle { position: fixed; pointer-events: none; z-index: 1; opacity: 0.15; font-size: 20px; animation: floatLeaf linear infinite; }
@keyframes floatLeaf {
    0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(110vh) rotate(720deg) translateX(100px); opacity: 0; }
}

/* ===== FIREFLY PARTICLES ===== */
.firefly {
    position: fixed; width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold-accent); box-shadow: 0 0 8px var(--gold-accent), 0 0 20px rgba(212,168,67,0.3);
    pointer-events: none; z-index: 1; animation: fireflyFloat ease-in-out infinite;
}
@keyframes fireflyFloat {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    25% { opacity: 0.8; }
    50% { opacity: 0.4; transform: translate(80px, -60px); }
    75% { opacity: 0.9; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 15px 0; transition: var(--transition);
    background: rgba(255, 253, 247, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled { padding: 8px 0; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-soft); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 50px; width: 50px; border-radius: 50%; border: 2px solid var(--pale-green); transition: var(--transition); }
.nav-logo:hover img { transform: scale(1.05); border-color: var(--leaf-accent); }
.nav-logo-text .brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-green); line-height: 1.1; }
.nav-logo-text .brand-tagline { font-family: 'Great Vibes', cursive; font-size: 0.85rem; color: var(--medium-green); }
.nav-links { display: flex; align-items: center; gap: 5px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-medium); font-size: 0.92rem; font-weight: 500; padding: 8px 18px; border-radius: 50px; transition: var(--transition); position: relative; overflow: hidden; }
.nav-links a::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); border-radius: 50px; transform: scaleX(0); transform-origin: right; transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1); z-index: -1; }
.nav-links a:hover::before, .nav-links a.active::before { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-icons { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--border-light); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); position: relative; color: var(--medium-green); text-decoration: none; font-size: 1.1rem; }
.nav-icon-btn:hover { border-color: var(--medium-green); background: var(--pale-green); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15); color: var(--primary-green); }
.cart-badge { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; background: linear-gradient(135deg, var(--gold-accent), #C4942F); color: var(--white); border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes badgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.mobile-toggle span { width: 25px; height: 2.5px; background: var(--primary-green); border-radius: 2px; transition: var(--transition); }
.nav-search { position: relative; }
.nav-search input { width: 0; padding: 0; border: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; transition: var(--transition); background: var(--frost-green); color: var(--text-dark); }
.nav-search.active input { width: 200px; padding: 8px 40px 8px 18px; border: 2px solid var(--border-light); }
.nav-search input:focus { outline: none; border-color: var(--leaf-accent); }
.nav-search-btn { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: none; background: none; cursor: pointer; color: var(--medium-green); font-size: 1rem; display: flex; align-items: center; justify-content: center; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: var(--transition); border: 2px solid transparent; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.15); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); box-shadow: 0 6px 25px rgba(45, 80, 22, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(45, 80, 22, 0.4); }
.btn-outline { background: transparent; color: var(--primary-green); border-color: var(--primary-green); }
.btn-outline:hover { background: var(--primary-green); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 35px rgba(45, 80, 22, 0.3); }
.btn-gold { background: linear-gradient(135deg, var(--gold-accent), #C4942F); color: var(--white); box-shadow: 0 6px 25px rgba(212, 168, 67, 0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212, 168, 67, 0.4); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--frost-green) 40%, var(--pale-green) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content .hero-fairy-label,
.hero-content h1,
.hero-content p,
.hero-content .hero-btns {
    opacity: 0; transform: translateY(40px);
}
.hero-fairy-label { font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--medium-green); margin-bottom: 10px; display: inline-block; }
.hero h1 { font-size: 3.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 10px; background: linear-gradient(135deg, var(--primary-green), var(--medium-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--gold-accent), #C4942F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 35px; max-width: 500px; }
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; opacity: 0; transform: translateX(60px); }
.hero-image-frame {
    width: 420px; height: 420px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pale-green), var(--frost-green));
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-strong); border: 3px solid var(--border-light); position: relative; overflow: hidden;
}
.hero-image-frame img { width: 85%; height: 85%; object-fit: cover; border-radius: 50%; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-image-frame:hover img { transform: scale(1.08); }
.hero-circle-vine { position: absolute; inset: -15px; border-radius: 50%; border: 2px dashed var(--leaf-accent); opacity: 0.4; animation: rotateSlow 30s linear infinite; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-circle-vine::before { content: '🌿'; position: absolute; top: -15px; left: 50%; font-size: 1.5rem; transform: translateX(-50%); }
.hero-float-badge { position: absolute; background: var(--white); border-radius: var(--radius-md); padding: 12px 18px; box-shadow: var(--shadow-medium); display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-light); }
.hero-float-badge:nth-child(2) { top: 10%; right: -10%; }
.hero-float-badge:nth-child(3) { bottom: 15%; left: -10%; }
.hero-float-badge:nth-child(4) { bottom: 5%; right: 5%; }
.badge-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--pale-green); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.badge-text { font-size: 0.75rem; font-weight: 600; color: var(--primary-green); line-height: 1.3; }
.badge-text span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.7rem; }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, var(--primary-green), var(--medium-green)); padding: 50px 30px; position: relative; overflow: hidden; }
.stats-bar::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%3Cpath d='M30 5 C25 15, 35 25, 30 35 C25 25, 35 15, 30 5Z' fill='rgba(139,195,74,0.06)'/%3E%3C/svg%3E") repeat; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; display: block; line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; opacity: 0.85; font-weight: 300; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 100px 30px; position: relative; z-index: 2; }
.section-alt { background: var(--white); }
.section-frost { background: var(--frost-green); }

/* ===== PRODUCT CARDS — IMAGE BASED ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 1px solid rgba(200, 230, 201, 0.5); position: relative; }
.product-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-strong); border-color: var(--leaf-accent); }
.product-card-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, var(--gold-accent), #C4942F); color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; z-index: 2; }
.product-image { height: 260px; background: var(--frost-green); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-card:hover .product-image img { transform: scale(1.12); }
.product-image .product-emoji { font-size: 4rem; transition: var(--transition); }
.product-card:hover .product-image .product-emoji { transform: scale(1.2) rotate(5deg); }
.product-image .img-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,80,22,0.3), transparent 50%);
    opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 15px; gap: 10px;
}
.product-card:hover .img-overlay { opacity: 1; }
.img-overlay-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary-green); transition: var(--transition); transform: translateY(20px); opacity: 0; font-size: 0.95rem; text-decoration: none; }
.product-card:hover .img-overlay-btn { transform: translateY(0); opacity: 1; }
.product-card:hover .img-overlay-btn:nth-child(2) { transition-delay: 0.05s; }
.img-overlay-btn:hover { background: var(--primary-green); color: var(--white); transform: translateY(-3px) !important; }
.product-info { padding: 20px; }
.product-category { font-size: 0.75rem; color: var(--leaf-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--primary-green); margin-bottom: 8px; font-weight: 600; transition: color 0.3s; }
.product-name:hover { color: var(--medium-green); }
.product-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 15px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary-green); }
.product-old-price { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.product-discount { font-size: 0.78rem; color: #E65100; font-weight: 600; background: #FFF3E0; padding: 2px 8px; border-radius: 50px; }
.product-card-btn { width: 100%; padding: 10px; border-radius: var(--radius-sm); border: 2px solid var(--medium-green); background: transparent; color: var(--medium-green); font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px; }
.product-card-btn:hover { background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); border-color: transparent; box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3); }

/* ===== PRODUCT IMAGE GALLERY (Detail Page) ===== */
.gallery-container { position: relative; }
.gallery-main {
    width: 100%; height: 500px; background: var(--frost-green); border-radius: var(--radius-xl);
    overflow: hidden; position: relative; box-shadow: var(--shadow-medium); border: 1px solid var(--border-light);
    cursor: crosshair;
}
.gallery-main img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.gallery-main .zoom-lens {
    position: absolute; width: 150px; height: 150px; border-radius: 50%;
    border: 3px solid var(--leaf-accent); background: rgba(255,255,255,0.15);
    pointer-events: none; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(1px);
}
.gallery-main:hover .zoom-lens { opacity: 1; }
.gallery-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, var(--gold-accent), #C4942F); color: white; padding: 8px 20px; border-radius: 50px; font-weight: 700; z-index: 2; }
.gallery-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px;
    border-radius: 50%; background: var(--white); border: 2px solid var(--border-light);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--primary-green); font-size: 1.1rem; transition: var(--transition); z-index: 2;
    box-shadow: var(--shadow-soft); opacity: 0;
}
.gallery-container:hover .gallery-nav-btn { opacity: 1; }
.gallery-nav-btn:hover { background: var(--primary-green); color: var(--white); border-color: var(--primary-green); }
.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 15px; overflow-x: auto; padding-bottom: 5px; }
.gallery-thumb {
    width: 80px; height: 80px; min-width: 80px; border-radius: var(--radius-sm); overflow: hidden;
    border: 3px solid transparent; cursor: pointer; transition: var(--transition); position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--leaf-accent); box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.3); }
.gallery-thumb:hover { border-color: var(--medium-green); transform: translateY(-3px); }
.gallery-thumb::after {
    content: ''; position: absolute; inset: 0; background: rgba(45,80,22,0); transition: background 0.3s;
}
.gallery-thumb.active::after { background: rgba(45,80,22,0.1); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 100000; background: rgba(0,0,0,0.92);
    display: none; align-items: center; justify-content: center; opacity: 0;
    transition: opacity 0.4s ease; backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 85vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.5); transition: transform 0.4s ease; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px; width: 50px; height: 50px;
    border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
    color: white; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(5px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 55px; height: 55px;
    border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
    color: white; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); backdrop-filter: blur(5px);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.feature-card { text-align: center; padding: 40px 25px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border-light); transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--leaf-accent), var(--gold-accent)); transform: scaleX(0); transition: transform 0.5s ease; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); border-color: var(--leaf-accent); }
.feature-icon { width: 75px; height: 75px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--pale-green), var(--frost-green)); display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all 0.5s ease; }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); transform: scale(1.1) rotate(5deg); }
.feature-card:hover .feature-icon span { filter: brightness(10); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.feature-text { font-size: 0.88rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); transition: all 0.5s ease; position: relative; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: var(--leaf-accent); }
.testimonial-card::before { content: '"'; position: absolute; top: 15px; right: 25px; font-size: 5rem; color: var(--pale-green); font-family: 'Playfair Display', serif; line-height: 1; }
.testimonial-stars { color: var(--gold-accent); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--medium-green), var(--leaf-accent)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; }
.testimonial-name { font-weight: 600; color: var(--primary-green); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 80px 30px; background: linear-gradient(135deg, var(--frost-green), var(--pale-green)); position: relative; overflow: hidden; }
.newsletter-box { max-width: 700px; margin: 0 auto; text-align: center; background: var(--white); padding: 50px 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-strong); border: 1px solid var(--border-light); position: relative; }
.newsletter-vine { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-size: 2.5rem; }
.newsletter-box h2 { font-size: 1.8rem; margin-bottom: 10px; }
.newsletter-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: 2px solid var(--border-light); border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: var(--transition); background: var(--frost-green); }
.newsletter-form input:focus { outline: none; border-color: var(--leaf-accent); box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.2); }

/* ===== FOOTER ===== */
.footer-vine-top { margin-bottom: -2px; }
.footer-vine-top svg { display: block; width: 100%; height: 60px; }
.main-footer { background: var(--text-dark); color: #ccc; padding: 60px 30px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--leaf-accent); border-radius: 2px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; margin-bottom: 15px; border: 2px solid var(--medium-green); }
.footer-brand p.fairy-text { color: var(--leaf-accent); font-size: 1.2rem; margin-bottom: 5px; }
.footer-about-text { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; opacity: 0.8; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #ccc; transition: var(--transition); text-decoration: none; }
.footer-socials a:hover { background: var(--medium-green); border-color: var(--medium-green); color: var(--white); transform: translateY(-3px); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--leaf-accent); transform: translateX(5px); }
.footer-col ul li a i { font-size: 0.7rem; color: var(--leaf-accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; }
.footer-contact li i { color: var(--leaf-accent); margin-top: 5px; min-width: 16px; }
.footer-bottom { padding: 20px 0; margin-top: 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.8; }
.footer-tagline-fairy { font-size: 1.2rem !important; }

/* ===== FLOATING SOCIALS ===== */
.floating-socials { position: fixed; left: 20px; bottom: 100px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: var(--transition); text-decoration: none; animation: socialPop 0.5s ease-out both; }
.float-btn:nth-child(1) { background: #25D366; animation-delay: 0.1s; }
.float-btn:nth-child(2) { background: #EA4335; animation-delay: 0.2s; }
.float-btn:nth-child(3) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); animation-delay: 0.3s; }
.float-btn:nth-child(4) { background: #1877F2; animation-delay: 0.4s; }
.float-btn:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
@keyframes socialPop { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

/* ===== CHATBOT ===== */
.chatbot-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
.chatbot-toggle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); font-size: 1.5rem; border: none; cursor: pointer; box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.chatbot-toggle:hover { transform: scale(1.1) rotate(10deg); }
.chatbot-window { position: absolute; bottom: 75px; right: 0; width: 380px; height: 500px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--border-light); }
.chatbot-window.active { display: flex; animation: chatSlideIn 0.4s ease-out; }
@keyframes chatSlideIn { from { opacity: 0; transform: translateY(30px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chatbot-header { background: linear-gradient(135deg, var(--primary-green), var(--medium-green)); color: var(--white); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.chatbot-header h4 { color: var(--white); font-size: 1rem; margin: 0; }
.chatbot-status { font-size: 0.75rem; opacity: 0.8; }
.chatbot-close { background: none; border: none; color: var(--white); font-size: 1.2rem; cursor: pointer; }
.chatbot-body { flex: 1; padding: 20px; overflow-y: auto; background: var(--frost-green); display: flex; flex-direction: column; gap: 15px; }
.chat-msg { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; }
.bot-msg { background: var(--white); color: var(--text-dark); border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.user-msg { background: var(--primary-green); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; }
.msg-time { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 5px; text-align: right; }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; }
.chat-options button { padding: 8px 14px; border-radius: 50px; border: 1px solid var(--medium-green); background: var(--white); color: var(--primary-green); font-size: 0.8rem; cursor: pointer; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.chat-options button:hover { background: var(--primary-green); color: var(--white); }
.chatbot-input { padding: 15px; background: var(--white); border-top: 1px solid var(--border-light); display: flex; gap: 10px; }
.chatbot-input input { flex: 1; padding: 10px 18px; border: 1px solid var(--border-light); border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; outline: none; transition: var(--transition); }
.chatbot-input input:focus { border-color: var(--leaf-accent); }
.chatbot-input button { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.chatbot-input button:hover { transform: scale(1.05); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s ease-out; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s ease-out; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== MAGNETIC BUTTON EFFECT ===== */
.magnetic { transition: transform 0.3s ease; }

/* ===== PARALLAX SECTION ===== */
.parallax-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background-attachment: fixed; z-index: 0;
}
.parallax-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.85), rgba(74,124,46,0.8));
}

/* ===== 3D CARD TILT ===== */
.tilt-card { transition: transform 0.4s ease; transform-style: preserve-3d; perspective: 1000px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 35px; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 3rem; }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-main { height: 400px; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 30px 30px; gap: 10px; box-shadow: var(--shadow-strong); transition: right 0.4s ease; z-index: 999; }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; z-index: 1000; }
    .nav-search.active input { width: 150px; }
    .hero h1 { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    .chatbot-window { width: calc(100vw - 40px); right: -10px; }
    .floating-socials { left: 10px; bottom: 80px; }
    .float-btn { width: 40px; height: 40px; font-size: 1rem; }
    .gallery-main { height: 300px; }
    .gallery-thumb { width: 60px; height: 60px; min-width: 60px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2rem; }
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px 40px; background: linear-gradient(160deg, var(--cream) 0%, var(--frost-green) 100%); position: relative; }
.auth-container { display: flex; width: 900px; max-width: 100%; min-height: 650px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-strong); overflow: hidden; border: 1px solid var(--border-light); animation: authSlideUp 0.8s ease-out; }
@keyframes authSlideUp { from { opacity: 0; transform: translateY(40px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.auth-vine-panel { flex: 0 0 380px; background: linear-gradient(160deg, var(--primary-green) 0%, #1A3A08 100%); padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-vine-panel::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 C15 10, 25 20, 20 30 C15 20, 25 10, 20 0Z' fill='rgba(139,195,74,0.1)'/%3E%3C/svg%3E") repeat; opacity: 0.6; }
.vine-panel-content { position: relative; z-index: 1; }
.vine-decoration { margin-top: 40px; display: flex; gap: 10px; font-size: 1.5rem; opacity: 0.7; }
.vine-decoration span:nth-child(odd) { animation: vineSway 2s ease-in-out infinite; }
.vine-decoration span:nth-child(even) { animation: vineSway 2.5s ease-in-out infinite reverse; }
.auth-form-panel { flex: 1; padding: 40px 50px; display: flex; align-items: center; justify-content: center; overflow-y: auto; }
.auth-form-wrapper { width: 100%; }
.auth-form-wrapper h2 { font-size: 2rem; margin-bottom: 5px; }
.auth-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; }
.auth-alert { padding: 12px 18px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; animation: alertPop 0.4s ease-out; }
@keyframes alertPop { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.auth-error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.auth-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-medium); margin-bottom: 8px; }
.form-group label i { color: var(--medium-green); margin-right: 5px; width: 16px; text-align: center; }
.form-group input, .profile-form input, .profile-form textarea, .checkout-form-box input, .checkout-form-box textarea, .contact-form-box input, .contact-form-box textarea { width: 100%; padding: 12px 18px; border: 2px solid var(--border-light); border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: var(--text-dark); background: var(--frost-green); transition: var(--transition); }
.form-group input:focus, .profile-form input:focus, .profile-form textarea:focus, .checkout-form-box input:focus, .checkout-form-box textarea:focus, .contact-form-box input:focus, .contact-form-box textarea:focus { outline: none; border-color: var(--leaf-accent); background: var(--white); box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.15); }
.form-group input.valid { border-color: #4caf50; background: #f1f8e9; }
.form-group input.invalid { border-color: #ef5350; background: #fff8f8; }
.field-error { display: block; font-size: 0.78rem; color: #D32F2F; margin-top: 5px; min-height: 18px; }
.password-wrapper { position: relative; }
.password-wrapper input { padding-right: 50px !important; }
.toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 5px; }
.toggle-password:hover { color: var(--primary-green); }
.password-strength { height: 5px; background: #eee; border-radius: 5px; margin-top: 8px; overflow: hidden; }
.strength-bar { height: 100%; width: 0; transition: width 0.3s, background 0.3s; border-radius: 5px; }
.strength-text { font-size: 0.75rem; font-weight: 600; display: block; margin-top: 3px; }
.auth-btn { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; margin-top: 10px; }
.auth-divider { display: flex; align-items: center; margin: 25px 0; gap: 15px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.auth-divider span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.google-btn { width: 100%; justify-content: center; padding: 12px; border-color: #ddd !important; color: #555 !important; margin-bottom: 20px; }
.google-btn img { width: 20px; height: 20px; }
.google-btn:hover { background: #f5f5f5 !important; border-color: #bbb !important; color: #222 !important; transform: translateY(-2px); }
.auth-switch { text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.auth-switch a { color: var(--medium-green); font-weight: 600; text-decoration: none; transition: var(--transition); }
.auth-switch a:hover { color: var(--primary-green); text-decoration: underline; }
@media (max-width: 768px) { .auth-vine-panel { display: none; } .auth-form-panel { padding: 30px 25px; } .auth-container { min-height: auto; border-radius: var(--radius-lg); } }

/* ============================================
   PROFILE / DASHBOARD
   ============================================ */
.profile-section { padding: 120px 0 60px; min-height: 100vh; background: var(--frost-green); }
.profile-grid { display: grid; grid-template-columns: 320px 1fr; gap: 30px; align-items: start; }
.profile-card-main { background: var(--white); border-radius: var(--radius-lg); padding: 40px 25px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); text-align: center; }
.profile-avatar-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
.profile-avatar-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--pale-green); }
.profile-avatar-text { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); font-size: 2.5rem; font-family: 'Playfair Display', serif; display: flex; align-items: center; justify-content: center; border: 4px solid var(--pale-green); }
.avatar-badge { position: absolute; bottom: 5px; right: 5px; width: 28px; height: 28px; border-radius: 50%; background: var(--white); color: var(--leaf-accent); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; box-shadow: var(--shadow-soft); }
.profile-name { font-size: 1.4rem; margin-bottom: 5px; color: var(--primary-green); }
.profile-email { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; }
.profile-stats { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--border-light); }
.p-stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary-green); }
.p-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.profile-menu { list-style: none; text-align: left; }
.profile-menu li a { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: var(--radius-sm); color: var(--text-medium); text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: var(--transition); }
.profile-menu li a:hover, .profile-menu li.active a { background: var(--pale-green); color: var(--primary-green); }
.profile-menu li a i { width: 20px; text-align: center; }
.dash-title { font-size: 1.8rem; margin-bottom: 0; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.dash-stat-card { background: var(--white); padding: 20px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); }
.dash-stat-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.dash-stat-card h4 { font-size: 1.3rem; margin-bottom: 2px; }
.dash-stat-card p { font-size: 0.8rem; color: var(--text-muted); }
.dash-box { background: var(--white); padding: 30px; border-radius: var(--radius-lg); margin-bottom: 30px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); }
.dash-box h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary-green); display: flex; align-items: center; gap: 10px; }
.profile-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-form .form-group { margin-bottom: 20px; }
.profile-form label, .checkout-form-box label, .contact-form-box label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-medium); margin-bottom: 8px; }
.orders-table-wrap { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th { background: var(--frost-green); padding: 12px 15px; text-align: left; font-size: 0.85rem; color: var(--primary-green); }
.orders-table td { padding: 15px; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.order-status { padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.status-pending { background: #FFF3E0; color: #E65100; }
.status-confirmed { background: #E3F2FD; color: #1565C0; }
.status-shipped { background: #F3E5F5; color: #7B1FA2; }
.status-delivered { background: #E8F5E9; color: #2E7D32; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.empty-state p { margin: 15px 0; }
@media (max-width: 992px) { .profile-grid { grid-template-columns: 1fr; } .profile-card-main { max-width: 400px; margin: 0 auto; } .dash-stats { grid-template-columns: 1fr 1fr; } .profile-form .form-row { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { padding: 140px 30px 60px; background: linear-gradient(160deg, var(--cream) 0%, var(--frost-green) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); border: 4px solid var(--border-light); }
.about-img-card img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.7s ease; }
.about-img-card:hover img { transform: scale(1.05); }
.about-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: 600; color: var(--primary-green); box-shadow: var(--shadow-medium); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.atag { background: var(--pale-green); color: var(--primary-green); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; }
.atag i { color: var(--leaf-accent); margin-right: 5px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vm-card { background: var(--white); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-soft); transition: var(--transition); }
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--leaf-accent); }
.vm-icon { font-size: 3rem; margin-bottom: 20px; }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.vm-card p { color: var(--text-medium); line-height: 1.7; }
.mission-list { list-style: none; color: var(--text-medium); }
.mission-list li { margin-bottom: 12px; padding-left: 25px; position: relative; }
.mission-list li::before { content: '🌿'; position: absolute; left: 0; top: 2px; }
.tagline-marquee { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.tagline-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.tagline-track span { font-family: 'Great Vibes', cursive; font-size: 1.8rem; color: var(--medium-green); white-space: nowrap; margin: 0 50px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px; }
.team-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: var(--leaf-accent); }
.team-avatar { width: 80px; height: 80px; margin: 0 auto 15px; border-radius: 50%; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: var(--white); font-size: 2rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }
.team-socials a { width: 35px; height: 35px; border-radius: 50%; background: var(--frost-green); color: var(--medium-green); display: inline-flex; align-items: center; justify-content: center; margin: 0 5px; transition: var(--transition); text-decoration: none; }
.team-socials a:hover { background: var(--primary-green); color: var(--white); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.partner-card { background: var(--frost-green); padding: 30px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-light); transition: var(--transition); }
.partner-card:hover { border-color: var(--leaf-accent); box-shadow: var(--shadow-soft); }
.partner-icon { font-size: 2rem; color: var(--medium-green); margin-bottom: 10px; }
.partner-card h5 { font-size: 0.9rem; color: var(--text-medium); }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.shop-sidebar { position: sticky; top: 100px; }
.filter-box { background: var(--white); padding: 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); }
.filter-box h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--primary-green); }
.filter-box h3 i { color: var(--leaf-accent); }
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 5px; }
.filter-list a { display: flex; align-items: center; gap: 10px; padding: 10px 15px; border-radius: var(--radius-sm); color: var(--text-medium); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.filter-list a:hover, .active-filter { background: var(--pale-green); color: var(--primary-green); font-weight: 600; }
.filter-list a i { width: 16px; text-align: center; font-size: 0.8rem; }
.search-result-info { background: var(--pale-green); padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; color: var(--text-medium); }
.product-btn-row { display: flex; gap: 10px; }
.product-view-btn { width: 42px; height: 42px; border-radius: var(--radius-sm); border: 2px solid var(--border-light); background: transparent; color: var(--medium-green); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); text-decoration: none; }
.product-view-btn:hover { background: var(--pale-green); border-color: var(--leaf-accent); }
@media (max-width: 992px) { .about-grid, .vm-grid { grid-template-columns: 1fr; } .shop-layout { grid-template-columns: 1fr; } .shop-sidebar { position: static; } }

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.breadcrumb { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 40px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: var(--medium-green); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary-green); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.detail-badge { position: absolute; top: 20px; left: 20px; background: linear-gradient(135deg, var(--gold-accent), #C4942F); color: white; padding: 8px 20px; border-radius: 50px; font-weight: 700; z-index: 2; }
.detail-rating { display: flex; align-items: center; gap: 5px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.detail-price-box { background: var(--frost-green); padding: 20px; border-radius: var(--radius-md); margin-bottom: 25px; }
.detail-current-price { font-size: 2.2rem; font-weight: 700; color: var(--primary-green); }
.detail-old-price { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; margin-left: 15px; }
.variant-selector { margin-bottom: 30px; }
.variant-selector h4 { font-size: 1rem; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.variant-options { display: flex; flex-wrap: wrap; gap: 12px; }
.variant-btn { padding: 12px 20px; border: 2px solid var(--border-light); border-radius: var(--radius-sm); background: var(--white); cursor: pointer; transition: var(--transition); text-align: center; font-family: 'Poppins', sans-serif; }
.variant-btn span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }
.variant-btn:hover, .active-variant { border-color: var(--medium-green); background: var(--pale-green); color: var(--primary-green); }
.active-variant { box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.2); }
.detail-cart-btn { width: 100%; padding: 18px; font-size: 1.1rem; justify-content: center; margin-bottom: 30px; }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.detail-features div { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-medium); }
.detail-features i { color: var(--leaf-accent); width: 20px; text-align: center; }
@media (max-width: 992px) { .detail-grid { grid-template-columns: 1fr; } }

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.cart-item-box { background: var(--white); padding: 20px; border-radius: var(--radius-md); margin-bottom: 15px; display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); transition: var(--transition); }
.cart-item-box:hover { border-color: var(--leaf-accent); }
.cart-item-img { width: 70px; height: 70px; min-width: 70px; border-radius: var(--radius-sm); overflow: hidden; background: var(--frost-green); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-size: 1.1rem; margin-bottom: 5px; }
.cart-item-details h3 a { text-decoration: none; color: var(--primary-green); }
.cart-item-details h3 a:hover { color: var(--medium-green); }
.cart-item-weight, .cart-item-price { font-size: 0.85rem; color: var(--text-muted); }
.cart-item-actions { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 35px; height: 35px; border: none; background: var(--frost-green); cursor: pointer; color: var(--primary-green); transition: var(--transition); }
.qty-control button:hover { background: var(--pale-green); }
.qty-control span { width: 40px; text-align: center; font-weight: 600; font-size: 0.95rem; }
.cart-item-total { font-size: 1.1rem; color: var(--primary-green); }
.cart-remove-btn { background: none; border: none; color: #D32F2F; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cart-remove-btn:hover { color: #B71C1C; transform: scale(1.2); }
.cart-summary-box { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); border: 1px solid var(--border-light); position: sticky; top: 100px; }
.cart-summary-box h3 { font-size: 1.3rem; margin-bottom: 25px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; color: var(--text-medium); }
.summary-total { font-size: 1.2rem; font-weight: 700; color: var(--primary-green); }
.summary-divider { height: 1px; background: var(--border-light); margin: 15px 0; }
@media (max-width: 992px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary-box { position: static; } }
@media (max-width: 600px) { .cart-item-box { flex-direction: column; text-align: center; } .cart-item-actions { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; } }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.checkout-form-box { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); }
.checkout-form-box h3, .checkout-summary-box h3 { font-size: 1.3rem; margin-bottom: 25px; color: var(--primary-green); display: flex; align-items: center; gap: 10px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 15px; border: 2px solid var(--border-light); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.payment-option:hover { border-color: var(--leaf-accent); }
.payment-option input[type="radio"] { accent-color: var(--medium-green); width: 18px; height: 18px; }
.payment-option span { font-size: 0.95rem; color: var(--text-medium); display: flex; align-items: center; gap: 10px; }
.payment-option span i { color: var(--medium-green); width: 20px; text-align: center; }
.checkout-summary-box { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); border: 1px solid var(--border-light); position: sticky; top: 100px; }
.checkout-items-list { max-height: 300px; overflow-y: auto; }
.checkout-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.checkout-item:last-child { border-bottom: none; }
.ci-details { display: flex; align-items: center; gap: 12px; }
.ci-thumb { width: 45px; height: 45px; border-radius: 8px; overflow: hidden; background: var(--frost-green); min-width: 45px; }
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ci-details h4 { font-size: 0.95rem; color: var(--text-dark); font-family: 'Poppins'; font-weight: 600; }
.ci-details p { font-size: 0.8rem; color: var(--text-muted); }
.ci-price { font-weight: 700; color: var(--primary-green); font-size: 0.95rem; }
@media (max-width: 992px) { .checkout-layout { grid-template-columns: 1fr; } .checkout-summary-box { position: static; order: -1; } }

/* ============================================
   ORDER SUCCESS
   ============================================ */
.success-icon { font-size: 5rem; margin-bottom: 20px; animation: successPop 0.6s ease-out; }
@keyframes successPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.success-box { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); margin: 30px auto; text-align: left; border: 1px solid var(--border-light); }
.s-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--frost-green); font-size: 0.95rem; color: var(--text-medium); }
.s-row:last-child { border-bottom: none; }
.s-row strong { color: var(--primary-green); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--white); padding: 25px; border-radius: var(--radius-md); display: flex; align-items: flex-start; gap: 20px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); transition: var(--transition); }
.contact-info-card:hover { transform: translateX(10px); box-shadow: var(--shadow-medium); border-color: var(--leaf-accent); }
.ci-icon { width: 55px; height: 55px; min-width: 55px; border-radius: 50%; background: var(--pale-green); color: var(--primary-green); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.contact-info-card h4 { font-size: 1.05rem; margin-bottom: 5px; color: var(--primary-green); font-family: 'Poppins', sans-serif; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.contact-form-box { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); border: 1px solid var(--border-light); }
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 25px; color: var(--primary-green); }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-section { margin-top: 80px; filter: grayscale(30%); transition: var(--transition); }
.map-section:hover { filter: grayscale(0%); }
@media (max-width: 992px) { .contact-layout { grid-template-columns: 1fr; } .contact-row { grid-template-columns: 1fr; } }

/* ============================================
   ADMIN BACKUP PAGE
   ============================================ */
.admin-backup-wrap { padding: 30px; }
.backup-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; }
.backup-stat-card { background: var(--frost-green); padding: 20px; border-radius: var(--radius-md); text-align: center; border: 1px solid var(--border-light); }
.backup-stat-card h4 { font-size: 1.8rem; color: var(--primary-green); margin-bottom: 5px; }
.backup-stat-card p { font-size: 0.85rem; color: var(--text-muted); }
.backup-table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid var(--border-light); margin-bottom: 30px; }
.backup-table-header { padding: 20px 25px; background: var(--frost-green); border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.backup-table-header h3 { font-size: 1.1rem; color: var(--primary-green); }
.backup-table { width: 100%; border-collapse: collapse; }
.backup-table th { padding: 12px 15px; text-align: left; font-size: 0.85rem; color: var(--primary-green); background: var(--frost-green); border-bottom: 2px solid var(--border-light); }
.backup-table td { padding: 12px 15px; font-size: 0.9rem; border-bottom: 1px solid var(--frost-green); }
.backup-table tr:hover { background: var(--frost-green); }
.restore-btn { padding: 6px 16px; border-radius: 50px; background: linear-gradient(135deg, var(--medium-green), var(--primary-green)); color: white; border: none; cursor: pointer; font-family: 'Poppins'; font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.restore-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(45,80,22,0.3); }
.backup-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.backup-msg { padding: 15px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.9rem; }
.backup-msg.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.backup-msg.error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }