/* ============================================
   NECTAR ORGANICS - style.css
   Luxury Organic E-Commerce | Full Version
============================================ */

/* ── ROOT VARIABLES ── */
:root {
    /* Brand Palette */
    --gold:           #C9A84C;
    --gold-light:     #E8C97A;
    --gold-dark:      #8B6914;
    --dark-green:     #1A3A2A;
    --cream:          #FAF6EE;
    --cream-dark:     #F2EBD9;
    --dark:           #1A1A1A;
    --text-muted:     #666;
    --white:          #fff;

    /* Derived / Extended */
    --primary:        #1A3A2A;
    --primary-dark:   #0f2418;
    --primary-light:  #2a5c3f;
    --bg-cream:       #FAF6EE;
    --bg-white:       #ffffff;
    --text-dark:      #1A1A1A;
    --text-medium:    #444444;
    --text-light:     #666666;
    --border-color:   #e6dfc8;
    --border-light:   #f0ebe0;

    /* Typography */
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'Poppins', 'Helvetica Neue', sans-serif;

    /* Radii */
    --radius:         8px;
    --radius-lg:      14px;

    /* Transitions */
    --transition:     all 0.3s ease;

    /* Fluid Type Scale */
    --text-xs:    clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
    --text-sm:    clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
    --text-base:  clamp(0.9375rem, 0.85rem + 0.35vw, 1.0625rem);
    --text-lg:    clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
    --text-xl:    clamp(1.5rem, 1.2rem + 1vw, 2rem);
    --text-2xl:   clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
    --text-hero:  clamp(2.5rem, 1rem + 5vw, 5.5rem);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
  }


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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  img { max-width: 100%; display: block; }
  ul  { list-style: none; padding: 0; margin: 0; }

  /* ============================================
     TOP BAR
  ============================================ */
  .topbar {
    background-color: var(--primary-dark);
    color: #d4edda;
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.3px;
  }

  .topbar a   { color: #d4edda; }
  .topbar a:hover { color: #ffffff; }
  .topbar i   { color: var(--gold-light); }

  /* ============================================
     HEADER / NAVBAR
  ============================================ */
  .site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
  }

  .site-header .navbar { padding: 12px 0; }

  .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }

  /* Desktop Nav Links */
  .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    color: var(--text-dark) !important;
    padding: 6px 14px !important;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
  }

  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary) !important;
  }

  /* Dropdown */
  .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 8px 0;
    margin-top: 6px;
  }

  .dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    color: var(--text-medium);
    font-family: var(--font-body);
  }

  .dropdown-item:hover {
    background-color: #f0f7f0;
    color: var(--primary);
  }

  /* Desktop Search Box */
  .search-box { position: relative; }

  .search-box .form-control {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 36px 8px 16px;
    font-size: 13px;
    width: 200px;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    transition: var(--transition);
  }

  .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-light);
    background-color: #fff;
    width: 240px;
    outline: none;
  }

  .search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
  }

  /* ── Header Icon Buttons (All Screens) ── */
  .header-icons { gap: 4px; }

  .icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
  }

  .icon-btn:hover {
    color: var(--primary);
    background-color: #f0f7f0;
  }

  .icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    padding: 0 3px;
    border: 2px solid var(--bg-white);
  }

  /* ── Mobile Search Dropdown Bar ── */
  .mobile-search-bar {
    display: none;
    padding: 10px 0 14px;
    border-top: 1px solid var(--border-light);
  }

  .mobile-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 6px 14px;
  }

  .mobile-search-inner > i {
    color: var(--text-light);
    font-size: 15px;
    flex-shrink: 0;
  }

  .mobile-search-inner .form-control {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 5px 0;
    box-shadow: none;
    color: var(--text-dark);
    font-family: var(--font-body);
  }

  .mobile-search-inner .form-control:focus {
    box-shadow: none;
    outline: none;
  }

  .mobile-search-inner .form-control::placeholder {
    color: var(--text-light);
  }

  .close-search {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-light);
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
  }

  .close-search:hover { color: var(--text-dark); }

  /* ============================================
     HERO CAROUSEL
  ============================================ */
  .hero-section { position: relative; overflow: hidden; }

  .hero-slide { position: relative; overflow: hidden; }

  .hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,40,10,0.74) 40%, rgba(10,40,10,0.08) 100%);
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 20px 0;
    max-width: 540px;
  }

  .hero-tag {
    display: inline-block;
    background-color: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: var(--font-body);
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-title span { color: var(--gold-light); }

  .hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-weight: 300;
    max-width: 420px;
  }

  .btn-hero {
    background-color: var(--primary);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .btn-hero:hover {
    background-color: transparent;
    border-color: #fff;
    color: #ffffff;
  }

  /* Owl Nav Arrows */
  .hero-carousel .owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    color: #fff !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    backdrop-filter: blur(4px);
  }

  .hero-carousel .owl-nav button:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  .hero-carousel .owl-nav .owl-prev { left: 18px; }
  .hero-carousel .owl-nav .owl-next { right: 18px; }

  /* Owl Dots */
  .hero-carousel .owl-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-carousel .owl-dot span {
    background-color: rgba(255,255,255,0.4) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    transition: var(--transition);
    margin: 0 4px !important;
  }

  .hero-carousel .owl-dot.active span {
    background-color: var(--gold) !important;
    width: 24px !important;
  }

  /* ============================================
     FEATURES STRIP
  ============================================ */
  .features-strip {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px;
    border-right: 1px solid var(--border-light);
  }

  .feature-item:last-child { border-right: none; }

  .feature-item i {
    font-size: 26px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .feature-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
  }

  .feature-item span {
    font-size: 11.5px;
    color: var(--text-light);
  }

  /* ============================================
     SECTION HEADER
  ============================================ */
  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-body);
    position: relative;
    padding: 0 24px;
  }

  .section-tag::before,
  .section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background-color: var(--primary);
  }

  .section-tag::before { left: 0; }
  .section-tag::after  { right: 0; }

  .section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
  }

  /* ============================================
     CATEGORY SECTION
  ============================================ */
  .category-section { background-color: var(--bg-cream); }

  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
  }

  .category-card:hover {
    border-color: var(--primary-light);
    background-color: #f2f9f2;
    transform: translateY(-3px);
    color: var(--primary);
  }

  .cat-icon {
    width: 62px;
    height: 62px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
  }

  .cat-icon i {
    font-size: 24px;
    color: var(--primary);
  }

  .category-card:hover .cat-icon {
    background-color: var(--primary);
  }

  .category-card:hover .cat-icon i { color: #fff; }

  .category-card h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 4px;
  }

  .category-card span {
    font-size: 11.5px;
    color: var(--text-light);
  }

  /* ============================================
     PRODUCTS SECTION
  ============================================ */
  .products-section { background-color: var(--bg-cream); }

  /* Filter Buttons */
  .filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
  }

  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
  }

  /* ── Product Card ── */
  .product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
  }

  .product-card:hover {
    border-color: #b8d4b8;
    transform: translateY(-4px);
  }

  /* Badge */
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 3px;
    z-index: 3;
    font-family: var(--font-body);
    text-transform: uppercase;
  }

  .product-badge.badge-new { background-color: var(--gold); }

  /* Image Wrap */
  .product-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: #f5f2ec;
  }

  .product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }

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

  /* Wishlist Heart Button on Card */
  .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #aaaaaa;
    transition: var(--transition);
    z-index: 3;
  }

  .wishlist-btn:hover {
    border-color: #fdd;
    background-color: #fff5f5;
    color: #e05050;
  }

  .wishlist-btn .bi-heart-fill { color: #e05050; }

  /* Product Body */
  .product-body { padding: 14px 14px 16px; }

  .product-category {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
  }

  .product-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
  }

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

  .product-rating i {
    font-size: 11px;
    color: var(--gold);
  }

  .product-rating span {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
  }

  .product-price {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    flex-wrap: wrap;
  }

  .current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-body);
  }

  .original-price {
    font-size: 12.5px;
    color: var(--text-light);
    text-decoration: line-through;
  }

  .discount-tag {
    font-size: 10.5px;
    font-weight: 600;
    color: #c0392b;
    background-color: #fdf2f2;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: var(--font-body);
  }

  .btn-add-cart {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    font-family: var(--font-body);
  }

  .btn-add-cart:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
  }

  /* ============================================
     PROMO BANNERS
  ============================================ */
  .promo-banner {
    padding: 48px 0;
    background-color: var(--bg-cream);
  }

  .promo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
  }

  .promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .promo-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
    background: linear-gradient(to right, rgba(10,40,10,0.72), rgba(10,40,10,0.08));
  }

  .promo-content span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
  }

  .promo-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 14px;
  }

  .btn-promo {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: var(--font-body);
    width: fit-content;
  }

  .btn-promo:hover {
    background-color: var(--gold);
    color: #ffffff;
  }

  /* ============================================
     WHY CHOOSE US
  ============================================ */
  .why-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .why-card {
    padding: 30px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition);
    background-color: var(--bg-white);
  }

  .why-card:hover {
    border-color: var(--primary-light);
    background-color: #f8fcf8;
  }

  .why-icon {
    width: 58px;
    height: 58px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }

  .why-icon i { font-size: 22px; color: var(--primary); }

  .why-card h6 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
  }

  .why-card p {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
  }

  /* ============================================
     TESTIMONIALS
  ============================================ */
  .testimonials-section { background-color: var(--bg-cream); }

  .testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
  }

  .testimonial-card .stars { margin-bottom: 12px; }

  .testimonial-card .stars i {
    font-size: 13px;
    color: var(--gold);
  }

  .testimonial-card p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
  }

  .reviewer strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .reviewer span {
    font-size: 12px;
    color: var(--text-light);
  }

  .testimonial-carousel .owl-dots { margin-top: 28px; text-align: center; }

  .testimonial-carousel .owl-dot span {
    background-color: var(--border-color) !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    transition: var(--transition);
    margin: 0 4px !important;
  }

  .testimonial-carousel .owl-dot.active span {
    background-color: var(--primary) !important;
    width: 22px !important;
  }

  /* ============================================
     CONTACT SECTION
  ============================================ */
  .contact-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
  }

  .contact-info-card,
  .contact-form-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    height: 100%;
  }

  .contact-info-card h5 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 4px;
  }

  .brand-tagline {
    font-size: 11.5px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-medium);
  }

  .contact-list li i {
    font-size: 15px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .contact-list li a {
    color: var(--text-medium);
  }

  .contact-list li a:hover { color: var(--primary); }

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

  .social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-medium);
    background-color: var(--bg-white);
    transition: var(--transition);
  }

  .social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
  }

  .contact-input {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--bg-white);
    padding: 11px 16px;
    font-size: 13.5px;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition);
  }

  .contact-input:focus {
    border-color: var(--primary-light);
    box-shadow: none;
    outline: none;
    background-color: #fff;
  }

  .contact-input::placeholder {
    color: var(--text-light);
    font-size: 13px;
  }

  .btn-contact-submit {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: var(--font-body);
  }

  .btn-contact-submit:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
  }

  /* ============================================
     FOOTER
  ============================================ */
  .site-footer { background-color: #0d2e0d; color: #c8d8c8; }

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

  .footer-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.88;
  }

  .footer-about {
    font-size: 13px;
    color: #9ab09a;
    line-height: 1.8;
  }

  .footer-heading {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
  }

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

  .footer-links a {
    font-size: 13px;
    color: #9ab09a;
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
  }

  .footer-newsletter-text {
    font-size: 13px;
    color: #9ab09a;
    margin-bottom: 14px;
  }

  .newsletter-form { display: flex; }

  .newsletter-form .form-control {
    border: 1px solid rgba(255,255,255,0.12);
    background-color: rgba(255,255,255,0.07);
    color: #ffffff;
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .newsletter-form .form-control::placeholder { color: #6a8a6a; }

  .newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-light);
    background-color: rgba(255,255,255,0.1);
  }

  .btn-newsletter {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    white-space: nowrap;
    transition: var(--transition);
    font-family: var(--font-body);
  }

  .btn-newsletter:hover {
    background-color: var(--primary-light);
    color: #ffffff;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 12.5px;
    color: #6a8a6a;
  }

  /* ============================================
     BACK TO TOP
  ============================================ */
  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
  }

  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
  }

  /* ============================================
     MOBILE STICKY BOTTOM NAV
  ============================================ */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px 0 10px;
    z-index: 1100;
    height: 64px;
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    color: #aaaaaa;
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    flex: 1;
    text-decoration: none;
    transition: color 0.2s ease;
    padding-bottom: 2px;
  }

  .mob-nav-item i {
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
  }

  .mob-nav-item.active       { color: var(--primary); }
  .mob-nav-item.active i     { color: var(--primary); }

  /* Center Raised Search Button */
  .mob-search-circle {
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -28px;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 16px rgba(30,107,30,0.30);
    transition: var(--transition);
  }

  .mob-search-circle i {
    font-size: 20px;
    color: #ffffff !important;
  }

  .mob-nav-item.mob-nav-search           { color: var(--primary); }
  .mob-nav-item.mob-nav-search span:last-child { color: var(--primary); font-size: 10px; }

  .mob-search-circle:hover {
    background-color: var(--primary-dark);
  }

  /* Wishlist Badge on Bottom Nav */
  .mob-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    background-color: #e05050;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-family: var(--font-body);
    border: 2px solid var(--bg-white);
  }

  /* ============================================
     RESPONSIVE BREAKPOINTS
  ============================================ */

  /* Tablet & Mobile */
  @media (max-width: 991px) {

    /* Body padding so content not hidden by bottom nav */
    body { padding-bottom: 72px; }

    /* Hero */
    .hero-img     { height: 360px; }
    .hero-title   { font-size: 34px; }
    .hero-subtitle{ font-size: 13px; }
    .hero-content { max-width: 100%; }

    /* Section */
    .section-title { font-size: 26px; }

    /* Features strip */
    .feature-item {
      border-right: none;
      border-bottom: 1px solid var(--border-light);
      padding: 16px 14px;
    }
    .feature-item:last-child { border-bottom: none; }

    /* Products grid */
    .product-img { height: 180px; }
  }

  /* Mobile only */
  @media (max-width: 767px) {
    .hero-img     { height: 260px; }
    .hero-title   { font-size: 26px; }
    .hero-subtitle{ font-size: 12.5px; max-width: 100%; }
    .btn-hero     { font-size: 13px; padding: 10px 20px; }

    .section-title  { font-size: 22px; }

    .promo-content  { padding: 20px 22px; }
    .promo-content h4 { font-size: 20px; }

    .contact-info-card,
    .contact-form-card { padding: 22px 18px; }

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

  /* Small mobile */
  @media (max-width: 480px) {
    .hero-img   { height: 210px; }
    .hero-title { font-size: 21px; }

    .product-img    { height: 150px; }
    .product-name   { font-size: 13.5px; }
    .current-price  { font-size: 14px; }
    .btn-add-cart   { font-size: 11.5px; padding: 8px 10px; }

    .logo-img { height: 42px; }
  }
