@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --color-primary: #1b3d1b; /* Deep Forest Green — Logo */
    --color-primary-dark: #132a13;
    --color-secondary: #2d5a2d; /* Sage Forest Green — Logo Leaf */
    --color-secondary-dark: #1b3d1b;
    --color-bg: #f7faf7; /* Cool green-tinted off-white */
    --color-surface: #ffffff;
    --color-text: #1c1c1c;
    --color-text-light: #5a5a5a;
    --color-border: rgba(0,0,0,0.06);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 8px 24px rgba(0,0,0,0.02);
    --shadow-md: 0 16px 40px rgba(0,0,0,0.04);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 35px; }
.section { padding: 75px 0; }
.bg-surface { background-color: var(--color-surface); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-text); font-weight: 500; letter-spacing: -0.5px; }
.sec-title { text-align: center; margin-bottom: 40px; }
.sec-subtitle { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px; color: var(--color-primary); font-size: 13px; font-weight: 600; display: block; margin-bottom: 15px; }
.sec-title h2 { font-size: 48px; line-height: 1.2; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 40px; font-weight: 500; font-family: var(--font-body); font-size: 14px;
    border-radius: 50px; transition: var(--transition); cursor: pointer;
    text-transform: uppercase; letter-spacing: 1.5px;
    border: none; gap: 10px; position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: rgba(0,0,0,0.15); transition: var(--transition); z-index: -1;
}
.btn:hover::before { width: 100%; }

.btn-primary { background-color: var(--color-primary); color: #fff; box-shadow: 0 10px 20px rgba(27, 61, 27, 0.2); }
.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(27, 61, 27, 0.3); }
.btn-secondary { background-color: var(--color-secondary); color: #fff; }
.btn-outline { border: 1px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background-color: var(--color-primary); color: #fff; }
.btn-outline-white { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background-color: #fff; color: var(--color-text); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-bg); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease;
}
.loader { display: flex; gap: 12px; }
.loader .dot { width: 12px; height: 12px; background-color: var(--color-primary); border-radius: 50%; animation: bounce 1.5s infinite ease-in-out both; }
.loader .dot:nth-child(1) { animation-delay: -0.3s; }
.loader .dot:nth-child(2) { animation-delay: -0.15s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); opacity: 0.3; } 40% { transform: scale(1); opacity: 1; } }

/* ===== HEADER (GLASSMORPHISM) ===== */
.header { width: 100%; position: absolute; top: 0; left: 0; z-index: 1000; background: transparent; border: none; }

.top-bar { background-color: var(--color-secondary); color: rgba(255,255,255,0.9); font-size: 13px; padding: 10px 0; letter-spacing: 0.5px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-brand-tag { font-weight: 500; color: #fff; opacity: 0.95; flex: 1.2; text-align: left; font-size: 13px; letter-spacing: 0.2px; }
.top-announcement-ticker { flex: 2; display: flex; justify-content: center; position: relative; height: 20px; overflow: hidden; align-items: center; }
.ticker-text { position: absolute; opacity: 0; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease; transform: translateY(20px); white-space: nowrap; font-weight: 600; color: #ffeb3b; letter-spacing: 0.5px; }
.ticker-text.active { opacity: 1; transform: translateY(0); }
.ticker-text.exit { opacity: 0; transform: translateY(-20px); }
.top-social { display: flex; gap: 18px; flex: 1.2; justify-content: flex-end; }
.top-social a { color: #fff; opacity: 0.7; transition: var(--transition); }
.top-social a:hover { opacity: 1; transform: translateY(-2px); }

.middle-bar { display: none; /* Hide middle bar for luxury minimal look */ }

.bottom-bar { position: relative; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.03); transition: var(--transition); padding: 8px 0; }
.bottom-bar.sticky { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; box-shadow: var(--shadow-sm); animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1); padding: 5px 0; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.bottom-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 50px; width: auto; display: block; transition: var(--transition); }
.bottom-bar.sticky .logo img { height: 42px; }

.main-nav ul { display: flex; }
.main-nav ul li { position: relative; }
.main-nav ul li a { display: block; padding: 10px 18px; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; color: var(--color-text); }
.main-nav ul li:hover > a { color: var(--color-primary); }

/* Dropdown Menu overrides flex layout of parent ul */
.main-nav ul li .dropdown {
    position: absolute; top: 100%; left: 0; width: 240px;
    background: #fff; box-shadow: var(--shadow-lg); border-radius: 0 0 12px 12px;
    opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: var(--transition); z-index: 99; padding: 10px 0;
    display: block;
}
.main-nav ul li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav ul li .dropdown li { width: 100%; }
.main-nav ul li .dropdown li a { padding: 12px 25px; font-size: 14px; font-weight: 400; color: var(--color-text-light); }
.main-nav ul li .dropdown li:hover a { background: transparent; padding-left: 30px; color: var(--color-primary); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.cart-btn, .search-btn, .account-btn { position: relative; font-size: 22px; color: var(--color-secondary); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; }
.cart-btn:hover, .search-btn:hover, .account-btn:hover { color: var(--color-primary); background: rgba(27, 61, 27, 0.05); }
.cart-count { position: absolute; top: 0; right: 0; background: var(--color-primary); color: #fff; font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; border: 1.5px solid #fff; }
.mobile-toggle { display: none; font-size: 28px; cursor: pointer; color: var(--color-secondary); }

/* ===== PAGE BANNER ===== */
.page-banner {
    background-color: var(--color-secondary); padding: 160px 0 100px; text-align: center; color: #fff;
    background-image: linear-gradient(rgba(19, 42, 19, 0.8), rgba(19, 42, 19, 0.8)), url('images/sesame_bg.jpg');
    background-size: cover; background-position: center;
}
.page-banner h1 { color: #fff; font-size: 56px; margin-bottom: 15px; font-weight: 400; }
.breadcrumb { display: flex; justify-content: center; gap: 12px; font-size: 14px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-primary); }

/* ===== SWIPER GLOBALS ===== */
.swiper-button-next, .swiper-button-prev { color: var(--color-secondary) !important; background: #fff; width: 50px !important; height: 50px !important; border-radius: 50%; box-shadow: var(--shadow-md); transition: var(--transition); z-index: 10; border: 1px solid var(--color-border); }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--color-secondary); color: #fff !important; border-color: transparent; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px !important; }
.swiper-pagination-bullet { background: var(--color-border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--color-primary) !important; }


/* ===== SPLIT HERO SECTION ===== */
.hero-split { position: relative; width: 100%; background: #000; padding-top: 100px; overflow: hidden; border-bottom: none; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 1; }
.hero-split::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 1; }
.hero-split-container { display: flex; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 40px; min-height: 72vh; position: relative; z-index: 1; }
.hero-split-left { flex: 1; padding-right: 50px; }
.hero-split-left h1 { font-size: 72px; line-height: 1.1; margin-bottom: 30px; color: #ffffff; letter-spacing: -1.5px; font-weight: 500; font-family: var(--font-heading); text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero-split-left h1 i { font-style: italic; color: var(--color-primary); font-weight: 400; text-shadow: none; }
.hero-split-left p { font-size: 18px; color: rgba(255,255,255,0.95); margin-bottom: 45px; max-width: 520px; line-height: 1.7; font-weight: 400; letter-spacing: 0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-actions { display: flex; align-items: center; gap: 40px; }

.btn-yellow { background: var(--color-primary); color: #fff; padding: 18px 45px; border-radius: 50px; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; transition: var(--transition); box-shadow: 0 10px 30px rgba(27, 61, 27, 0.3); border: none; }
.btn-yellow:hover { background: #fff; color: var(--color-secondary); transform: translateY(-4px); box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3); }

.btn-watch { display: flex; align-items: center; gap: 18px; color: #ffffff; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.btn-watch:hover { color: var(--color-primary); }
.play-icon { width: 55px; height: 55px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #ffffff; transition: var(--transition); background: rgba(255,255,255,0.05); }
.btn-watch:hover .play-icon { background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 10px 20px rgba(27, 61, 27, 0.2); }

.hero-split-right { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; padding: 60px 0; }
.hero-circle-bg { width: 100%; max-width: 500px; aspect-ratio: 1/1; background: radial-gradient(circle, rgba(27, 61, 27,0.08) 0%, rgba(252,251,249,0) 70%); border-radius: 50%; position: relative; display: flex; justify-content: center; align-items: center; margin: 0 auto; }
.main-hero-img { height: 130%; object-fit: contain; z-index: 2; transform: translateY(-30px); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15)); transition: transform 0.8s ease; mix-blend-mode: multiply; }
.main-hero-img:hover { transform: translateY(-40px) scale(1.02); }

.guarantee-badge { position: absolute; top: 20px; right: 0px; width: 140px; height: 140px; background: var(--color-primary); border-radius: 50%; z-index: 3; display: flex; align-items: center; justify-content: center; transform: rotate(10deg); box-shadow: 0 15px 40px rgba(27, 61, 27, 0.3); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(5px); }
.badge-inner { text-align: center; color: #fff; display: flex; flex-direction: column; }
.badge-inner .stars { font-size: 14px; letter-spacing: 3px; margin-bottom: 5px; color: rgba(255,255,255,0.9); }
.badge-inner .text-main { font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.badge-inner .text-sub { font-size: 10px; font-weight: 400; letter-spacing: 2px; opacity: 0.9; }

.floating-dot { position: absolute; background: var(--color-primary); border-radius: 50%; opacity: 0.3; }
.dot-1 { width: 12px; height: 12px; top: 40px; left: 30px; animation: float 5s ease-in-out infinite; }
.dot-2 { width: 8px; height: 8px; bottom: 80px; right: 20px; animation: float 4s ease-in-out infinite reverse; }
.dot-3 { width: 20px; height: 20px; top: 80%; left: -30px; background: var(--color-secondary); animation: float 6s ease-in-out infinite; opacity: 0.1; }

@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }

/* Trust Bar */
.hero-trust-bar { display: flex; justify-content: center; gap: 70px; padding: 50px 0; background: var(--color-surface); width: 100%; flex-wrap: wrap; box-shadow: var(--shadow-sm); position: relative; z-index: 10; margin-top: -30px; border-radius: 12px; max-width: 1300px; margin-left: auto; margin-right: auto; }
.trust-item { display: flex; align-items: center; gap: 20px; }
.t-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(27, 61, 27, 0.05); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-primary); transition: var(--transition); }
.trust-item:hover .t-icon { background: var(--color-primary); color: #fff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(27, 61, 27, 0.2); }
.trust-item span { font-size: 13px; font-weight: 500; line-height: 1.5; color: var(--color-text); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 991px) {
    .hero-split-container { flex-direction: column; text-align: center; padding-top: 60px; min-height: auto; }
    .hero-split-left { padding-right: 0; margin-bottom: 60px; }
    .hero-split-left p { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-trust-bar { gap: 30px; padding: 40px 20px; margin-top: 0; border-radius: 0; box-shadow: none; border-top: 1px solid var(--color-border); }
    .hero-circle-bg { max-width: 400px; }
    .hero-split-left h1 { font-size: 52px; }
}

@media (max-width: 575px) {
    .hero-split-left h1 { font-size: 38px; }
    .hero-circle-bg { max-width: 300px; }
    .hero-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px 15px; }
    .hero-trust-bar .trust-item:last-child { grid-column: span 2; justify-self: center; width: auto; }
    .trust-item { width: 100%; flex-direction: column; text-align: center; gap: 10px; }
    .guarantee-badge { width: 100px; height: 100px; right: -10px; }
    .badge-inner .text-main { font-size: 11px; }
    .badge-inner .text-sub { font-size: 8px; }
}

/* ===== PREMIUM E-COMMERCE TABS & GRID ===== */
.premium-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 60px; }
.prem-tab { padding: 12px 35px; background: transparent; border: 1px solid var(--color-border); border-radius: 50px; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); color: var(--color-text-light); cursor: pointer; transition: var(--transition); }
.prem-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.prem-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 10px 20px rgba(27, 61, 27, 0.2); }

/* Swiper Carousel for Premium Products */
.premium-slider-container { position: relative; width: 100%; margin-top: 30px; }
.premium-product-swiper { width: 100%; padding: 15px 5px 35px 5px !important; }
.premium-product-swiper .swiper-slide { height: auto !important; display: flex; }
.premium-prev, .premium-next { position: absolute; top: 50% !important; transform: translateY(-50%); width: 45px !important; height: 45px !important; margin-top: 0 !important; background: #fff; border: 1px solid var(--color-border); border-radius: 50%; box-shadow: var(--shadow-sm); z-index: 10; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.premium-prev { left: -20px !important; }
.premium-next { right: -20px !important; }
.premium-prev:hover, .premium-next:hover { background: var(--color-primary); color: #fff !important; border-color: transparent; }
@media (max-width: 768px) {
    .premium-prev, .premium-next { display: none !important; }
}

.premium-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.prem-card { background: #fff; border: none; border-radius: 12px; overflow: hidden; transition: var(--transition); position: relative; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; width: 100%; }
.prem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.prem-card-top { position: relative; padding: 0; background: #fdfcfb; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.02); overflow: hidden; }
.heart-btn { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; background: #fff; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; color: var(--color-text-light); transition: var(--transition); font-size: 16px; z-index: 10; }
.heart-btn:hover { color: #e74c3c; transform: scale(1.1); box-shadow: 0 8px 20px rgba(231, 76, 60, 0.15); }

.prem-img-wrap { height: 185px; width: 100%; display: block; overflow: hidden; }
.prem-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.prem-card:hover .prem-img-wrap img { transform: scale(1.08); }

.prem-banner { position: absolute; top: 12px; left: 12px; background: var(--color-secondary); color: #fff; font-size: 10px; font-weight: 600; text-transform: uppercase; padding: 5px 10px; letter-spacing: 1px; border-radius: 30px; box-shadow: 0 5px 15px rgba(19, 42, 19, 0.2); }

.prem-card-body { padding: 16px 14px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.prem-title { font-size: 15px; font-weight: 500; line-height: 1.35; margin-bottom: 8px; font-family: var(--font-heading); height: 42px; overflow: hidden; letter-spacing: -0.2px; }
.prem-title a { color: var(--color-text); }
.prem-title a:hover { color: var(--color-primary); }

.prem-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.prem-rating i { color: #ffca28; font-size: 13px; }
.review-count { font-size: 11px; color: var(--color-text-light); margin-left: 6px; font-weight: 500; }

.prem-price-wrap { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.old-price { font-size: 13px; color: var(--color-text-light); font-weight: 400; text-decoration: line-through; }
.new-price { font-size: 18px; font-weight: 600; color: var(--color-secondary); }
.per-unit { font-size: 12px; color: var(--color-text-light); margin-bottom: 12px; }

.add-cart { display: flex; justify-content: center; align-items: center; gap: 6px; background: var(--color-surface); color: var(--color-text); width: 100%; padding: 10px 0; border-radius: 50px; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); border: 1px solid var(--color-border); cursor: pointer; }
.add-cart:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 10px 20px rgba(27, 61, 27, 0.2); transform: translateY(-2px); }
.add-cart i { font-size: 18px; }

/* ===== REGULAR PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); text-align: center; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.product-img { padding: 30px; background: #fdfdfb; }
.product-img img { width: 100%; height: 250px; object-fit: contain; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.1); }
.product-info { padding: 25px; }
.product-info h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--font-body); }
.product-info h3 a { color: var(--color-text); transition: var(--transition); }
.product-info h3 a:hover { color: var(--color-primary); }
.product-info .price { color: var(--color-primary); font-size: 22px; font-weight: 700; margin-bottom: 15px; }

/* ===== FEATURES GRID (Why Choose Us) ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.feature-box { text-align: center; padding: 40px 30px; background: #fff; border-radius: 8px; border: 1px solid var(--color-border); transition: var(--transition); }
.feature-box:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--color-primary); }
.f-icon { width: 80px; height: 80px; background: rgba(138, 115, 63, 0.1); color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 20px; transition: var(--transition); }
.feature-box:hover .f-icon { background: var(--color-primary); color: #fff; transform: rotateY(180deg); }
.feature-box h3 { font-size: 20px; margin-bottom: 15px; }
.feature-box p { color: var(--color-text-light); font-size: 15px; }

/* ===== PREMIUM ABOUT SNIPPET ===== */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.1fr; 
    gap: 80px; 
    align-items: center; 
}
.about-visual {
    position: relative;
    padding: 30px;
}
.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 115, 63, 0.08) 0%, rgba(27, 61, 27, 0.04) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.about-img-frame {
    position: relative;
    z-index: 1;
}
.about-img-frame::before {
    content: '';
    position: absolute;
    inset: -15px 15px 15px -15px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
    transition: var(--transition);
}
.about-visual:hover .about-img-frame::before {
    transform: translate(-10px, 10px);
}
.about-img-frame img { 
    border-radius: 20px; 
    width: 100%; 
    height: 520px; 
    object-fit: cover; 
    box-shadow: var(--shadow-lg); 
}

/* Rotating Badge */
.about-badge-spin {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
    border: 4px solid var(--color-primary);
}
.badge-circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}
.badge-circle-text text {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    fill: var(--color-secondary);
    text-transform: uppercase;
}
.badge-center-icon {
    font-size: 32px;
    color: var(--color-primary);
    animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Info Card */
.about-float-card {
    position: absolute;
    top: 50px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 240px;
    animation: floatVertical 6s ease-in-out infinite;
}
.about-float-card i {
    font-size: 28px;
    color: #fff;
    background: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(138, 115, 63, 0.2);
}
.about-float-card h5 {
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 600;
}
.about-float-card p {
    font-size: 12px;
    color: var(--color-text-light);
    margin: 0;
}

/* About Text Styling */
.about-text .sec-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.about-text .sec-subtitle i {
    font-size: 16px;
}
.about-text h2 { 
    font-size: 46px; 
    margin-bottom: 20px; 
    line-height: 1.25; 
}
.about-text h2 span {
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-primary);
}
.about-text .about-desc { 
    margin-bottom: 30px; 
    color: var(--color-text-light); 
    font-size: 16.5px; 
    line-height: 1.65;
}

/* Feature Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}
.about-feat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 20px 24px;
    border-radius: 12px;
    transition: var(--transition);
}
.about-feat-card:hover {
    background: #fff;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27,61,27,0.05);
}
.feat-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.feat-icon-title i {
    color: var(--color-primary);
    font-size: 22px;
    background: rgba(138, 115, 63, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.about-feat-card:hover .feat-icon-title i {
    background: var(--color-primary);
    color: #fff;
}
.feat-icon-title h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.about-feat-card p {
    font-size: 13.5px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Keyframes */
@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.85; }
}

/* ===== THE PROCESS ===== */
.process-wrapper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-wrapper::before { content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: var(--color-border); z-index: 1; }
.process-step { text-align: center; position: relative; z-index: 2; }
.p-number { width: 80px; height: 80px; background: var(--color-surface); border: 2px solid var(--color-primary); color: var(--color-primary); font-family: var(--font-heading); font-size: 30px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 25px; transition: var(--transition); box-shadow: 0 0 0 10px var(--color-bg); }
.process-step:hover .p-number { background: var(--color-primary); color: #fff; }
.process-step h4 { font-size: 22px; margin-bottom: 15px; }
.process-step p { color: var(--color-text-light); font-size: 15px; padding: 0 10px; }

/* ===== IMMERSIVE CTA BANNER ===== */
.immersive-cta {
    background: linear-gradient(135deg, #0d1f0d 0%, #1b3d1b 40%, #2d5a2d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
}
.cta-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: ctaFloat 15s ease-in-out infinite; }
.cta-shape-2 { width: 400px; height: 400px; bottom: -150px; left: -80px; animation: ctaFloat 12s ease-in-out infinite reverse; }
.cta-shape-3 { width: 200px; height: 200px; top: 50%; left: 40%; animation: ctaFloat 10s ease-in-out infinite 3s; }
@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.cta-content { max-width: 580px; color: #fff; }
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: #b8e6b8;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}
.cta-content h2 {
    font-size: 52px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-content h2 em {
    font-style: italic;
    color: #b8e6b8;
}
.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}
.cta-buttons { display: flex; align-items: center; gap: 25px; }
.cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}
.cta-link i { font-size: 28px; }
.cta-link:hover { color: #fff; transform: translateX(5px); }
.cta-visual { flex-shrink: 0; }
.cta-deco-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(184, 230, 184, 0.15);
}
.cta-deco-circle-1 {
    width: 100%;
    height: 100%;
    animation: decoSpin 25s linear infinite;
    border-style: dashed;
}
.cta-deco-circle-2 {
    width: 80%;
    height: 80%;
    animation: decoSpin 20s linear infinite reverse;
    border-color: rgba(184, 230, 184, 0.1);
}
@keyframes decoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cta-deco-icon {
    position: absolute;
    top: -5px;
    right: 30%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(184, 230, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bottleFloat 4s ease-in-out infinite;
}
.cta-deco-icon i {
    font-size: 24px;
    color: #b8e6b8;
}
.cta-deco-text {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-deco-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}
.cta-deco-label {
    display: block;
    font-size: 16px;
    color: #b8e6b8;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ===== STATS SECTION (GLASSMORPHISM) ===== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f7f0 0%, var(--color-bg) 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(27, 61, 27, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), #6ea980);
    opacity: 0;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 61, 27, 0.12);
    background: #fff;
}
.stat-card:hover::before { opacity: 1; }
.stat-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}
.stat-icon-wrap i {
    font-size: 36px;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}
.stat-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 61, 27, 0.1) 0%, transparent 70%);
    animation: statPulse 3s ease-in-out infinite;
}
@keyframes statPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}
.stat-card h3 {
    font-size: 48px;
    display: inline;
    color: var(--color-text);
    line-height: 1;
    font-weight: 600;
}
.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.stat-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    margin-bottom: 15px;
}
.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(27, 61, 27, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* ===== PREMIUM TESTIMONIALS ===== */
.testimonials-premium {
    background: linear-gradient(180deg, #fff 0%, #f5faf5 100%);
    position: relative;
    overflow: hidden;
}
.testimonial-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.testi-leaf {
    position: absolute;
    font-size: 120px;
    color: var(--color-primary);
    opacity: 0.04;
}
.testi-leaf-1 { top: 10%; left: 5%; transform: rotate(-30deg); }
.testi-leaf-2 { bottom: 10%; right: 5%; transform: rotate(150deg); }
.sec-desc {
    color: var(--color-text-light);
    font-size: 17px;
    max-width: 550px;
    margin: 15px auto 0;
    line-height: 1.7;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testi-card {
    position: relative;
    transition: var(--transition);
}
.testi-card:hover { transform: translateY(-8px); }
.testi-card-inner {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.testi-card:hover .testi-card-inner {
    box-shadow: 0 20px 60px rgba(27, 61, 27, 0.1);
    border-color: rgba(27, 61, 27, 0.15);
}
.testi-card-featured .testi-card-inner {
    background: linear-gradient(135deg, #1b3d1b 0%, #2d5a2d 100%);
    border-color: transparent;
}
.testi-card-featured .testi-quote-mark,
.testi-card-featured .testi-text,
.testi-card-featured .testi-author-info h4 { color: #fff; }
.testi-card-featured .testi-author-info span { color: rgba(255,255,255,0.6); }
.testi-card-featured .testi-verified { color: rgba(255,255,255,0.5); }
.testi-card-featured .testi-stars i { color: #ffca28; }
.testi-quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 0.8;
    color: var(--color-primary);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: 700;
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.testi-stars i { color: #ffca28; font-size: 18px; }
.testi-text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 25px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.testi-card-featured .testi-author { border-top-color: rgba(255,255,255,0.1); }
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-avatar span {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}
.testi-author-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 600;
}
.testi-author-info span {
    font-size: 13px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.testi-verified {
    margin-left: auto;
    font-size: 12px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== PRODUCT DETAILS ===== */
.product-single { display: grid; grid-template-columns: 420px 1fr; gap: 60px; }
.product-gallery { background: #ffffff; border-radius: 12px; padding: 15px; text-align: center; border: 1px solid var(--color-border); align-self: start; box-shadow: var(--shadow-sm); }
.product-gallery img { width: 100%; max-height: 450px; object-fit: contain; display: block; margin: 0 auto; transition: transform 0.5s ease; }
.product-gallery:hover img { transform: scale(1.05); }
.product-data h1 { font-size: 44px; margin-bottom: 15px; }
.product-data .price { font-size: 32px; font-weight: 700; color: var(--color-primary); margin-bottom: 25px; }
.product-desc { color: var(--color-text-light); margin-bottom: 35px; font-size: 17px; }
.cart-form { display: flex; gap: 20px; margin-bottom: 40px; }
.cart-form input { width: 100px; padding: 15px; border: 2px solid var(--color-border); border-radius: 5px; text-align: center; font-size: 18px; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.contact-info { background: var(--color-secondary); color: #fff; padding: 50px 40px; border-radius: 8px; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.contact-info h3 { color: #fff; font-size: 32px; margin-bottom: 30px; }
.c-item { display: flex; gap: 20px; margin-bottom: 35px; }
.c-item i { font-size: 30px; color: #fff; background: rgba(255,255,255,0.2); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.c-item h4 { color: #fff; font-size: 20px; margin-bottom: 5px; }
.c-item p { color: rgba(255,255,255,0.8); font-size: 16px; }

.contact-form { padding: 50px; background: #fff; border-radius: 8px; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: span 2; }
.form-control { width: 100%; padding: 18px 20px; border: 1px solid var(--color-border); border-radius: 5px; font-family: var(--font-body); font-size: 16px; background: var(--color-bg); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--color-primary); background: #fff; box-shadow: 0 0 0 3px rgba(138, 115, 63, 0.1); }
textarea.form-control { height: 180px; resize: vertical; }

/* ===== SIDE CART ===== */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.side-cart { position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100vh; background: #fff; z-index: 1000; box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; transition: right 0.4s ease; }
.side-cart.active { right: 0; }
.cart-header { padding: 25px; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 24px; margin: 0; }
.close-cart { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--color-text-light); transition: var(--transition); }
.close-cart:hover { color: #e74c3c; transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 25px; }
.cart-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--color-border); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 5px; border: 1px solid var(--color-border); }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 15px; margin-bottom: 5px; line-height: 1.3; }
.cart-item-info p { color: var(--color-primary); font-weight: 700; font-size: 15px; margin: 0; }
.remove-item { background: none; border: none; color: #e74c3c; font-size: 20px; cursor: pointer; transition: var(--transition); }
.remove-item:hover { transform: scale(1.1); }
.cart-footer { padding: 25px; border-top: 1px solid var(--color-border); background: var(--color-bg); }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ===== PROMO BANNER ===== */
.promo-banner-sec { background: #cead86; margin: 80px auto; max-width: 1300px; border-radius: 12px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 60px 50px; justify-content: space-between; }
.promo-leaf { position: absolute; left: -30px; top: 50%; transform: translateY(-50%); opacity: 0.8; width: 100px; z-index: 1; }
.promo-dots { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 120px; height: 150px; background-image: radial-gradient(#fff 2px, transparent 2px); background-size: 15px 15px; opacity: 0.3; z-index: 1; }
.promo-content-wrapper { display: flex; align-items: center; gap: 50px; position: relative; z-index: 2; width: 100%; justify-content: center; }
.promo-img { max-width: 400px; position: relative; }
.promo-img img { width: 100%; display: block; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); transform: scale(1.1); mix-blend-mode: multiply; }
.promo-text { color: #fff; max-width: 500px; }
.promo-text h2 { font-size: 42px; line-height: 1.2; margin-bottom: 15px; color: #fff; font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.5px; }
.promo-text p { font-size: 14px; margin-bottom: 30px; opacity: 0.9; font-weight: 400; letter-spacing: 0.5px; }
.promo-btn { background: #ffca28; color: #1a1a1a; padding: 15px 40px; border-radius: 50px; font-weight: 600; font-size: 15px; display: inline-block; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; border: none; box-shadow: 0 10px 20px rgba(255, 202, 40, 0.3); cursor: pointer; }
.promo-btn:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

@media (max-width: 991px) {
    .promo-content-wrapper { flex-direction: column; text-align: center; }
    .promo-leaf, .promo-dots { display: none; }
    .promo-img { margin-bottom: 30px; }
    .promo-banner-sec { padding: 40px 20px; margin: 40px 15px; }
    .promo-text h2 { font-size: 32px; }
}

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px; }
.team-card { text-align: center; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.team-avatar-wrap {
    padding: 40px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfcf9;
}
.team-avatar-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    border: 4px solid #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.team-avatar-circle svg {
    width: 80px;
    height: 80px;
    color: #b5b5b5;
    transition: var(--transition);
    margin-top: 15px; /* lower the silhouette head for correct alignment */
}
.team-card:hover .team-avatar-circle {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(27, 61, 27, 0.15);
    border-color: var(--color-primary);
    background: #e6eee6;
}
.team-card:hover .team-avatar-circle svg {
    color: var(--color-primary);
}
.team-info { padding: 25px; border-top: 1px solid var(--color-border); }
.team-info h3 { font-size: 22px; margin-bottom: 5px; }
.team-info p { color: var(--color-text-light); font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.team-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}
.team-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(138, 115, 63, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.team-social-links a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== PREMIUM FOOTER ===== */
.footer-premium {
    position: relative;
    background: transparent;
}
.footer-wave {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}
.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}
.footer-inner {
    background: #0d1f0d;
    color: #a0a0a0;
    padding: 80px 0 0;
}
.footer-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.f-brand p { font-size: 15px; line-height: 1.8; margin-bottom: 25px; }
.f-logo { display: inline-block; margin-bottom: 25px; }
.f-logo img { height: 85px; width: auto; display: block; filter: brightness(0) invert(1); }
.f-social {
    display: flex;
    gap: 12px;
}
.f-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 18px;
    transition: var(--transition);
}
.f-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 61, 27, 0.3);
}
.f-links-col h3,
.f-contact-col h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.f-links-col h3::after,
.f-contact-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 14px; }
.f-links a {
    font-size: 15px;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.f-links a i {
    font-size: 14px;
    color: var(--color-secondary);
    transition: var(--transition);
}
.f-links a:hover {
    color: #fff;
    transform: translateX(6px);
}
.f-links a:hover i { color: #b8e6b8; }
.f-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.f-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(45, 90, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #b8e6b8;
    font-size: 18px;
    border: 1px solid rgba(45, 90, 45, 0.3);
}
.f-contact-col h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.f-contact-col p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
    line-height: 1.5;
}
.footer-bottom-row {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .middle-info { display: none; }
    .main-nav { display: none; }
    .main-nav.active { display: block; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: var(--shadow-md); border-top: 1px solid var(--color-border); z-index: 1000; }
    .main-nav ul { flex-direction: column; }
    .main-nav ul li a { padding: 15px 20px; border-bottom: 1px solid var(--color-bg); }
    .main-nav ul li .dropdown { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; display: none; }
    .main-nav ul li:hover .dropdown { display: block; }
    .mobile-toggle { display: block; }
    .d-none-mobile { display: none !important; }
    .bottom-bar-inner { padding: 15px 20px; }
    .hero-split { padding-top: 120px; }
    .hero-split-left { padding-right: 0; text-align: center; }
    .hero-split-left h1 { font-size: 50px; }
    .hero-split-left p { margin: 0 auto 30px; }
    .hero-actions { justify-content: center; }
    .hero-slider { height: 60vh; min-height: 500px; }
    .slide-content h1 { font-size: 45px; }
    .about-grid, .product-single, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; gap: 50px; }
    .about-visual { padding: 15px 0; }
    .about-float-card { left: 0; top: 10px; padding: 12px 18px; max-width: 200px; }
    .about-float-card i { width: 38px; height: 38px; font-size: 20px; }
    .about-float-card h5 { font-size: 13px; }
    .about-badge-spin { right: 0; bottom: -5px; width: 100px; height: 100px; border-width: 3px; }
    .about-badge-spin svg { display: none; }
    .about-badge-spin .badge-center-icon { font-size: 22px; }
    .about-img-frame img { height: 380px; }
    .process-wrapper { grid-template-columns: 1fr 1fr; }
    .process-wrapper::before { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; }
    .cta-visual { display: none; }
    .cta-content h2 { font-size: 38px; }
    .nl-card { flex-direction: column; }
    .nl-card-left { padding: 40px 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .footer-top-row { grid-template-columns: 1fr 1fr; }
    .promo-banner-sec { padding: 40px 20px; margin: 40px 15px; }
    .promo-text h2 { font-size: 32px; }
}

@media (max-width: 767px) {
    .top-bar { display: none; }
    .hero-split { padding-top: 100px; padding-bottom: 0; }
    .hero-split-left h1 { font-size: 38px; margin-bottom: 15px; }
    .hero-split-left p { font-size: 16px; margin-bottom: 25px; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .footer-top-row { grid-template-columns: 1fr; }
    .slide-content h1 { font-size: 35px; }
    .slide-btns { flex-direction: column; }
    .process-wrapper, .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 30px 20px; }
    .stat-card h3 { font-size: 36px; }
    .stat-suffix { font-size: 28px; }
    .sec-title h2 { font-size: 36px; }
    .section { padding: 80px 0; }
    .sec-title { margin-bottom: 50px; }
    .immersive-cta { padding: 80px 0; }
    .cta-content h2 { font-size: 32px; }
    .product-single { gap: 30px; }
    .product-data h1 { font-size: 32px; }
    .contact-wrapper { gap: 30px; }
    .newsletter-premium { padding: 60px 0; }
    .nl-card-right h2 { font-size: 28px; }
    .nl-form { flex-direction: column; }
    .nl-form .nl-input-wrap { border-radius: 50px; }
    .nl-form button { border-radius: 50px; width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG GRID & CARDS (Premium) ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.blog-img .blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(27, 61, 27, 0.3);
}
.blog-img .blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.blog-content {
    padding: 35px 30px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 500;
}
.blog-meta i {
    color: var(--color-primary);
    margin-right: 5px;
    font-size: 15px;
}
.blog-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.5px;
}
.blog-title a:hover {
    color: var(--color-primary);
}
.blog-content p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.blog-read-more i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.blog-read-more:hover {
    color: var(--color-secondary);
    gap: 15px;
}
.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ===== GENERIC CONTENT (Terms, Privacy) ===== */
.generic-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.generic-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 50px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(27, 61, 27, 0.15);
    color: var(--color-secondary);
    position: relative;
}
.generic-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}
.generic-content h2:first-child {
    margin-top: 0;
}
.generic-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--color-text);
}
.generic-content p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.generic-content ul, .generic-content ol {
    padding-left: 25px;
    margin-bottom: 25px;
}
.generic-content li {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    list-style: disc;
}
.generic-content ol li {
    list-style: decimal;
}
.generic-content strong {
    color: var(--color-text);
    font-weight: 600;
}
.last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    font-style: italic;
    color: var(--color-text-light);
    font-size: 14px;
}

/* ===== PREMIUM NEWSLETTER ===== */
.newsletter-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 50%, #f5faf5 100%);
    position: relative;
    overflow: hidden;
}
.nl-shapes { position: absolute; inset: 0; pointer-events: none; }
.nl-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.06;
}
.nl-shape-1 {
    width: 500px; height: 500px;
    background: var(--color-primary);
    top: -150px; right: -100px;
    animation: nlFloat 20s ease-in-out infinite;
}
.nl-shape-2 {
    width: 300px; height: 300px;
    background: var(--color-secondary);
    bottom: -100px; left: -50px;
    animation: nlFloat 15s ease-in-out infinite reverse;
}
.nl-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0.06;
}
.nl-circle-1 { width: 80px; height: 80px; top: 20%; left: 10%; }
.nl-circle-2 { width: 120px; height: 120px; bottom: 15%; right: 15%; }
.nl-circle-3 { width: 50px; height: 50px; top: 60%; left: 50%; }
@keyframes nlFloat {
    0%, 100% { transform: translate(0,0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-3deg); }
}
.nl-container { position: relative; z-index: 2; }
.nl-card {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(27, 61, 27, 0.08);
    border: 1px solid rgba(27, 61, 27, 0.06);
}
.nl-card-left {
    background: linear-gradient(135deg, #1b3d1b 0%, #2d5a2d 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-width: 280px;
}
.nl-icon-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}
.nl-icon-stack i {
    font-size: 42px;
    color: #fff;
    position: relative;
    z-index: 2;
}
.nl-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    animation: nlRing 3s ease-in-out infinite;
}
@keyframes nlRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.8; }
}
.nl-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    color: #b8e6b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.nl-card-right {
    padding: 60px 50px;
    flex: 1;
}
.nl-card-right h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 15px;
    color: var(--color-text);
}
.nl-card-right h2 em {
    font-style: italic;
    color: var(--color-primary);
}
.nl-card-right > p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.nl-form {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}
.nl-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg);
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 50px 0 0 50px;
    padding: 5px 5px 5px 25px;
    transition: var(--transition);
}
.nl-input-wrap:focus-within {
    border-color: var(--color-primary);
    background: #fff;
}
.nl-input-wrap i {
    color: var(--color-text-light);
    font-size: 20px;
    flex-shrink: 0;
}
.nl-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 0;
    outline: none;
    color: var(--color-text);
}
.nl-input-wrap input::placeholder { color: #999; }
.nl-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 35px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nl-form button:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 10px 30px rgba(27, 61, 27, 0.25);
}
.nl-form button i { font-size: 20px; transition: var(--transition); }
.nl-form button:hover i { transform: translateX(4px); }
.nl-note {
    color: var(--color-text-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nl-note i { color: var(--color-primary); font-size: 16px; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
    color: #fff;
    font-size: 32px;
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(27, 61, 27, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(19, 42, 19, 0.3);
}

/* ===== TEAM CARD SOCIAL OVERLAY ===== */
.team-card .team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}
.team-card:hover .team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}
.team-social-overlay a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
}
.team-social-overlay a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== PAGE BANNER PREMIUM ===== */
.page-banner {
    background-color: var(--color-secondary);
    padding: 180px 0 100px;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(135deg, rgba(19, 42, 19, 0.95) 0%, rgba(19, 42, 19, 0.8) 50%, rgba(10, 23, 10, 0.95) 100%), url('images/sesame.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(27, 61, 27, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.page-banner h1 {
    color: #fff;
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb {
    position: relative;
    z-index: 1;
}

/* ===== GOOGLE MAP ===== */
.map-section {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PRODUCT DETAILS ENHANCEMENTS ===== */
.product-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.product-feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 61, 27, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}
.product-feature-badge i {
    color: var(--color-primary);
    font-size: 18px;
}
.product-tabs {
    margin-top: 60px;
}
.product-tab-btns {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    gap: 0;
    margin-bottom: 30px;
}
.product-tab-btn {
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition);
}
.product-tab-btn.active, .product-tab-btn:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.product-tab-content {
    display: none;
    padding: 20px 0;
}
.product-tab-content.active {
    display: block;
}
.product-tab-content p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}
.related-products {
    padding: 80px 0;
}

/* ===== REVIEW CARDS ===== */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.review-card {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.reviewer-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
}
.review-stars i {
    color: #ffca28;
    font-size: 16px;
}
.review-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
}
.review-date {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 12px;
    display: block;
}

/* ===== INSTAGRAM SECTION ===== */
.insta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--color-surface);
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 40px;
}
.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.insta-item::after {
    content: '\f16d';
    font-family: 'boxicons';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 61, 27, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: var(--transition);
}
.insta-item:hover img {
    transform: scale(1.1);
}
.insta-item:hover::after {
    opacity: 1;
}

/* ===== NAV ACTIVE CLASS ===== */
.nav-active > a {
    color: var(--color-primary) !important;
}

/* ===== FORM SUCCESS ===== */
.form-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    font-weight: 500;
}
.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== ADDITIONAL RESPONSIVE (ALL NEW SECTIONS) ===== */
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .product-single { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .page-banner { padding: 150px 0 80px; }
    .page-banner h1 { font-size: 42px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .product-features { justify-content: center; }
}

@media (max-width: 575px) {
    .blog-grid { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .page-banner h1 { font-size: 34px; }
    .page-banner { padding: 130px 0 60px; }
    .team-grid { grid-template-columns: 1fr; }
    .product-tab-btns { flex-wrap: wrap; }
    .product-tab-btn { padding: 12px 20px; font-size: 12px; }
    .whatsapp-float { bottom: 20px; left: 20px; width: 50px; height: 50px; }
    .whatsapp-float i { font-size: 26px; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .about-features-grid { grid-template-columns: 1fr; }
    .generic-content h2 { font-size: 24px; }
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 31, 13, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

.search-overlay-content h3 {
    font-size: 28px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.search-input-wrap {
    position: relative;
    margin-bottom: 30px;
}

.search-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 15px 40px 15px 15px;
    font-size: 18px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.search-input-wrap input:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.search-input-wrap i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(255,255,255,0.5);
}

.search-results {
    max-height: 350px;
    overflow-y: auto;
    text-align: left;
}

/* ===== CART BADGE & OVERRIDES ===== */
.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--color-primary);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
.cart-btn {
    position: relative;
}

/* ===== HIDE NUMBER INPUT SPINNERS ===== */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}


