/* ============================================================
   GreenRoots — Organic Fresh Farm Theme (Website 2)
   Earthy, natural, warm colour palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #4A7C59;
    --primary-dark: #2D5940;
    --primary-light: #6EAB82;
    --secondary: #C17F3C;
    --secondary-light: #E09B55;
    --cream: #FDF6E3;
    --warm: #F5EDD6;
    --brown-dark: #3D2B1F;
    --brown-mid: #6B4A32;
    --white: #FFFFFF;
    --light: #FAF6EE;
    --border: #E8D9BE;
    --text: #3D2B1F;
    --text-muted: #8B6E52;
    --shadow: 0 4px 24px rgba(61, 43, 31, 0.1);
    --shadow-hover: 0 10px 40px rgba(61, 43, 31, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.32s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', sans-serif;
}

body.dark-mode {
    --white: #1A1A14;
    --light: #111109;
    --cream: #1E1E16;
    --warm: #2A2A1E;
    --border: #3A3A28;
    --text: #EDE8DC;
    --text-muted: #A09070;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; transition: background 0.3s, color 0.3s; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); }

/* ── Preloader ── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--cream); display: flex; align-items: center; justify-content: center; transition: opacity 0.4s, visibility 0.4s; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-spinner { width: 50px; height: 50px; border: 4px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 10px auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ── */
.toast-notification { position: fixed; bottom: 30px; right: 30px; z-index: 9998; background: var(--primary); color: #fff; padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 10px; transform: translateX(110%); transition: transform 0.35s ease; box-shadow: var(--shadow-hover); }
.toast-notification.show { transform: translateX(0); }

/* ── Navbar ── */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--cream); border-bottom: 2px solid var(--border); transition: var(--transition); padding: 0; }
.navbar.scrolled { box-shadow: var(--shadow); background: rgba(253, 246, 227, 0.97); backdrop-filter: blur(10px); }
.navbar-top { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 7px 0; font-family: var(--font-body); }
.navbar-top a { color: rgba(255,255,255,0.7); }
.navbar-top a:hover { color: #fff; }
.navbar-main { padding: 16px 0; }
.navbar-brand .brand-name { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.navbar-brand .brand-name span { color: var(--secondary); }
.navbar-brand small { font-family: var(--font-body); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.search-form { flex: 1; max-width: 480px; }
.search-form .input-group { border-radius: 30px; overflow: hidden; border: 2px solid var(--border); }
.search-form input { border: none; padding: 10px 18px; font-family: var(--font-body); background: var(--white); color: var(--text); font-size:0.9rem; }
.search-form input:focus { outline: none; box-shadow: none; }
.search-form .btn-search { background: var(--primary); color: #fff; border: none; padding: 10px 18px; cursor: pointer; }
.search-form .btn-search:hover { background: var(--primary-dark); }
.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn { position: relative; background: var(--warm); border: 1.5px solid var(--border); cursor: pointer; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--brown-dark); transition: var(--transition); }
.nav-icon-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-count, .wishlist-count { position: absolute; top: -4px; right: -4px; background: var(--secondary); color: #fff; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.navbar-nav .nav-link { font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; color: var(--brown-dark) !important; padding: 8px 14px !important; border-radius: 8px; transition: var(--transition); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--warm); }
.dropdown-menu { border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-hover); background: var(--cream); padding: 10px; }
.dropdown-item { border-radius: 8px; font-family: var(--font-body); font-size: 0.88rem; padding: 8px 14px; color: var(--text); font-weight: 600; }
.dropdown-item:hover { background: var(--warm); color: var(--primary); }

/* ── Hero ── */
.hero-section { background: linear-gradient(135deg, #2D5940 0%, #4A7C59 40%, #6EAB82 80%, #8AC59A 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%); }
.hero-leaf { position: absolute; font-size: clamp(8rem, 15vw, 18rem); opacity: 0.05; right: -20px; top: 50%; transform: translateY(-50%) rotate(-20deg); line-height: 1; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 7px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-body); }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: #FFE082; }
.hero-subtitle { color: rgba(255,255,255,0.85); font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; }
.hero-features { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-feature { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; font-family: var(--font-body); }
.hero-feature i { font-size: 1rem; color: #FFE082; }
.hero-img { max-height: 480px; width: auto; margin: 0 auto; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3)); animation: float 3.5s ease-in-out infinite alternate; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-15px); } }

/* ── Buttons ── */
.btn-leaf { background: var(--secondary); color: #fff; border: 2px solid var(--secondary); padding: 12px 30px; border-radius: 30px; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-leaf:hover { background: var(--secondary-light); border-color: var(--secondary-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(193, 127, 60, 0.35); }
.btn-leaf-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 11px 30px; border-radius: 30px; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-leaf-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); padding: 12px 30px; border-radius: 30px; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-white-outline:hover { background: #fff; color: var(--primary); }

/* ── Section Headers ── */
.section-header { margin-bottom: 50px; }
.section-kicker { font-family: var(--font-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary); display: inline-block; margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--brown-dark); line-height: 1.2; margin-bottom: 14px; }
.section-title span { color: var(--primary); }
.section-desc { font-family: var(--font-body); color: var(--text-muted); font-size: 1rem; max-width: 540px; }

/* ── Categories ── */
.categories-section { padding: 80px 0; background: var(--light); }
.category-card { background: var(--cream); border-radius: 20px; padding: 28px 20px; text-align: center; transition: var(--transition); cursor: pointer; border: 2px solid var(--border); box-shadow: 0 2px 10px rgba(61,43,31,0.05); }
.category-card:hover { border-color: var(--primary); transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.category-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--warm); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2.2rem; transition: var(--transition); }
.category-card:hover .category-icon { background: var(--primary); }
.category-card h5 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 5px; }
.category-card span { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-muted); }

/* ── Product Cards ── */
.products-section { padding: 80px 0; }
.product-card { background: var(--cream); border-radius: 20px; border: 2px solid var(--border); overflow: hidden; transition: var(--transition); position: relative; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); border-color: var(--primary-light); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--font-body); }
.badge-sale { background: #D35400; color: #fff; }
.badge-new { background: #2980B9; color: #fff; }
.badge-organic { background: var(--primary); color: #fff; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--warm); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(12px); transition: var(--transition); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.btn-wishlist, .btn-quick-view { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-wishlist:hover, .btn-wishlist.active { background: #C0392B; color: #fff; border-color: #C0392B; }
.btn-quick-view:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-wishlist.active { background: #C0392B; color: #fff; border-color: #C0392B; }
.product-info { padding: 16px 18px 10px; flex: 1; }
.product-category { font-family: var(--font-body); font-size: 0.72rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 1.5px; }
.product-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin: 8px 0; line-height: 1.35; }
.product-title a { color: var(--brown-dark); }
.product-title a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; margin-bottom: 10px; }
.product-rating .fa-star, .product-rating .fa-star-half-alt { color: #E67E22; }
.product-rating .fa-star.far { color: var(--border); }
.review-count { color: var(--text-muted); font-size: 0.78rem; font-family: var(--font-body); }
.product-price-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.product-original-price { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; font-family: var(--font-body); }
.product-discount { font-size: 0.72rem; font-weight: 800; color: #C0392B; font-family: var(--font-body); }
.product-unit { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 3px; font-family: var(--font-body); }
.product-footer { padding: 12px 18px 18px; }
.btn-add-cart { background: var(--warm); color: var(--primary); border: 2px solid var(--primary); border-radius: 30px; padding: 10px 16px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); width: 100%; }
.btn-add-cart:hover { background: var(--primary); color: #fff; }

/* ── Offer Banner ── */
.offers-section { padding: 80px 0; background: var(--warm); }
.offer-card { border-radius: 20px; overflow: hidden; position: relative; min-height: 240px; display: flex; align-items: center; padding: 40px; color: #fff; }
.offer-card-green { background: linear-gradient(120deg, #2D5940 0%, #4A7C59 100%); }
.offer-card-brown { background: linear-gradient(120deg, #7D4E24 0%, #C17F3C 100%); }
.offer-bg-text { font-family: var(--font-heading); font-size: 8rem; font-weight: 900; position: absolute; right: 20px; bottom: -20px; opacity: 0.08; line-height: 1; }
.offer-kicker { font-family: var(--font-body); font-size: 0.75rem; font-weight: 800; color: #FFE082; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.offer-card h3 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.offer-card p { opacity: 0.85; font-family: var(--font-body); margin-bottom: 24px; }
.countdown-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; font-family: var(--font-body); margin-bottom: 8px; }
.countdown-boxes { display: flex; gap: 10px; }
.cd-box { background: rgba(255,255,255,0.18); border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 58px; }
.cd-box .cd-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; line-height: 1; display: block; }
.cd-box .cd-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; font-family: var(--font-body); }

/* ── Features ── */
.whychoose-section { padding: 80px 0; background: var(--light); }
.feature-card { text-align: center; padding: 36px 24px; border-radius: 20px; background: var(--cream); border: 2px solid var(--border); transition: var(--transition); }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.feature-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--warm); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
.feature-card h5 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--brown-dark); }
.feature-card p { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); }

/* ── Stats ── */
.stats-section { padding: 80px 0; background: var(--primary-dark); color: #fff; }
.stat-card { text-align: center; }
.stat-card .counter-number { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; line-height: 1; margin-bottom: 8px; display: block; color: #FFE082; }
.stat-card p { font-family: var(--font-body); font-size: 0.95rem; opacity: 0.85; }

/* ── Testimonials ── */
.testimonials-section { padding: 80px 0; }
.testimonial-card { background: var(--cream); border-radius: 20px; padding: 32px; border: 2px solid var(--border); position: relative; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.testimonial-card::before { content: '❝'; font-size: 4rem; color: var(--primary); opacity: 0.12; position: absolute; top: 16px; left: 22px; line-height: 1; font-family: var(--font-heading); }
.testimonial-text { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--warm); }
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--brown-dark); }
.testimonial-role { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-muted); }
.testimonial-rating { display: flex; gap: 3px; margin-top: 4px; font-size: 0.75rem; color: #E67E22; }

/* ── Newsletter ── */
.newsletter-section { padding: 80px 0; background: linear-gradient(135deg, #2D5940, #4A7C59); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-section h2 { font-family: var(--font-heading); color: #fff; font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-section p { font-family: var(--font-body); color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.newsletter-form { display: flex; border-radius: 50px; overflow: hidden; }
.newsletter-form input { flex: 1; border: none; padding: 16px 24px; font-family: var(--font-body); font-size: 0.95rem; background: rgba(255,255,255,0.95); outline: none; }
.newsletter-form button { background: var(--secondary); color: #fff; border: none; padding: 16px 28px; font-family: var(--font-body); font-weight: 800; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--secondary-light); }
.newsletter-success { color: #fff; font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; padding: 20px; text-align: center; }

/* ── Shop Page ── */
.shop-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 50px 0; color: #fff; }
.shop-hero h1 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; }
.breadcrumb { background: none; padding: 0; margin-top: 10px; }
.breadcrumb-item a { color: rgba(255,255,255,0.75); font-family: var(--font-body); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.shop-sidebar { background: var(--cream); border: 2px solid var(--border); border-radius: 20px; padding: 24px; position: sticky; top: 90px; }
.sidebar-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1.5px solid var(--border); }
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 16px; }
.filter-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.filter-item label { cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; color: var(--text); flex: 1; }
.filter-item input[type="checkbox"] { width: 18px; height: 18px; border-radius: 4px; accent-color: var(--primary); cursor: pointer; }
.filter-count { font-size: 0.77rem; color: var(--text-muted); }
#price-range { width: 100%; accent-color: var(--primary); cursor: pointer; }
#price-range-display { font-family: var(--font-body); font-size: 0.88rem; color: var(--primary); font-weight: 700; margin-top: 6px; }
.shop-toolbar { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--cream); border-radius: 14px; border: 2px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
#product-count { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); margin-right: auto; }
#sort-select, #shop-search { border: 1.5px solid var(--border); border-radius: 10px; padding: 8px 14px; font-family: var(--font-body); font-size: 0.88rem; color: var(--text); background: var(--white); outline: none; }
#sort-select:focus, #shop-search:focus { border-color: var(--primary); }

/* ── Product Detail ── */
.gallery-main { border-radius: 20px; overflow: hidden; border: 2px solid var(--border); aspect-ratio: 1; background: var(--warm); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb { width: 70px; height: 70px; border-radius: 12px; border: 2px solid var(--border); cursor: pointer; overflow: hidden; transition: var(--transition); }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-title { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--brown-dark); margin-bottom: 12px; }
.price-current { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.price-original { font-family: var(--font-body); font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.price-save { background: #C0392B; color: #fff; font-size: 0.8rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; font-family: var(--font-body); }
.product-desc { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.product-meta p { font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 6px; color: var(--text-muted); }
.product-meta strong { color: var(--brown-dark); }
.product-meta a { color: var(--primary); }
.qty-control { border: 2px solid var(--border); border-radius: 30px; overflow: hidden; }
.qty-btn { width: 40px; height: 44px; background: var(--warm); border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; color: var(--primary); transition: var(--transition); }
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-input { width: 56px; height: 44px; border: none; text-align: center; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--brown-dark); background: var(--white); padding: 0; outline: none; }
.btn-wishlist-lg { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); background: var(--warm); color: var(--text-muted); font-size: 1.1rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; }
.btn-wishlist-lg:hover, .btn-wishlist-lg.active { border-color: #C0392B; background: #C0392B; color: #fff; }

/* ── Cart ── */
.cart-table thead th { background: var(--warm); font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); padding: 14px 16px; border: none; }
.cart-table tbody td { padding: 16px; vertical-align: middle; border-color: var(--border); font-family: var(--font-body); }
.cart-table tbody tr:hover { background: var(--cream); }
.btn-remove-cart { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; transition: var(--transition); padding: 6px; }
.btn-remove-cart:hover { color: #C0392B; }
.cart-summary-card { background: var(--cream); border-radius: 20px; border: 2px solid var(--border); padding: 28px; position: sticky; top: 90px; }
.cart-summary-card h4 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--brown-dark); }
.summary-row { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 0.92rem; margin-bottom: 12px; color: var(--text-muted); }
.summary-row.total { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--brown-dark); border-top: 2px solid var(--border); padding-top: 16px; margin-top: 6px; }
#free-shipping-msg { font-family: var(--font-body); font-size: 0.82rem; color: var(--primary); background: var(--warm); padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; display: none; }
.empty-cart { font-family: var(--font-body); }

/* ── Checkout ── */
.checkout-card { background: var(--cream); border-radius: 20px; border: 2px solid var(--border); padding: 28px; margin-bottom: 24px; }
.checkout-card h5 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; color: var(--brown-dark); }
.form-label { font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 6px; }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-family: var(--font-body); font-size: 0.9rem; background: var(--white); color: var(--text); transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12); outline: none; }
.payment-option { border: 2px solid var(--border); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition); margin-bottom: 12px; background: var(--white); }
.payment-option.active, .payment-option:hover { border-color: var(--primary); background: var(--warm); }
.payment-option input[type="radio"] { accent-color: var(--primary); width: 18px; height: 18px; }
.payment-option label { cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; flex: 1; color: var(--text); }

/* ── About ── */
.about-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 80px 0; color: #fff; text-align: center; }
.about-hero h1 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; }
.about-section { padding: 80px 0; }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover); }
.team-card { text-align: center; padding: 28px 20px; background: var(--cream); border-radius: 20px; border: 2px solid var(--border); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--warm); }
.team-card h5 { font-family: var(--font-heading); font-weight: 700; color: var(--brown-dark); margin-bottom: 4px; }
.team-card p { font-family: var(--font-body); font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--warm); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); }
.team-social a:hover { background: var(--primary); color: #fff; }

/* ── Contact ── */
.contact-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 80px 0; color: #fff; text-align: center; }
.contact-info-card { background: var(--cream); border-radius: 20px; border: 2px solid var(--border); padding: 28px; text-align: center; transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.contact-info-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--warm); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.contact-info-card h6 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); }
.contact-form-wrap { background: var(--cream); border-radius: 20px; border: 2px solid var(--border); padding: 36px; }
.map-placeholder { height: 380px; background: var(--warm); border-radius: 20px; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ── */
.footer { background: #1A0F08; color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-brand .brand-name { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; color: #fff; }
.footer-brand .brand-name span { color: var(--secondary); }
.footer-brand p { font-family: var(--font-body); font-size: 0.87rem; margin-top: 14px; opacity: 0.7; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-family: var(--font-body); color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--secondary); font-size: 1.1rem; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; margin-top: 50px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-body); font-size: 0.82rem; opacity: 0.55; margin: 0; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-body); }

/* ── Back To Top ── */
#back-to-top { position: fixed; bottom: 88px; right: 28px; z-index: 999; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); box-shadow: 0 4px 15px rgba(74,124,89,0.4); }
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); }
.order-success-alert { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 9999; min-width: 400px; text-align: center; border-radius: 16px; box-shadow: var(--shadow-hover); }

/* ── Utilities ── */
.section-bg-light { background: var(--light); }

/* ── Responsive ── */
@media (max-width: 991.98px) { .search-form { display: none; } .hero-section { min-height: auto; padding: 80px 0; text-align: center; } .shop-sidebar { position: static; margin-bottom: 24px; } .cart-summary-card { position: static; } }
@media (max-width: 767.98px) { .navbar-top { display: none; } .newsletter-form { flex-direction: column; } .newsletter-form input, .newsletter-form button { border-radius: 30px; width: 100%; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 575.98px) { .hero-title { font-size: 1.9rem; } .shop-toolbar { flex-direction: column; align-items: stretch; } }
