/*nav*/
nav {
        background: #006400;
        padding: 0 4rem;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        font-family: 'Montserrat', sans-serif;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        text-decoration: none;
      }

      .logo-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2px;
  }

  .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

      .logo-text-wrap { line-height: 1.2; }

      .logo-name {
        font-weight: 700;
        font-size: 2rem;
        color: white;
        font-family: 'Bebas Neue', sans-serif;
      }

      .logo-tagline {
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.65);
        font-family: 'Stardos Stencil', serif;
      }

      .nav-links {
        list-style: none;
        display: flex;
        gap: 0.25rem;
      }

      .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,0.75);
        font-size: 0.87rem;
        font-weight: 600;
        padding: 0.45rem 1rem;
        border-radius: 7px;
        transition: all 0.18s;
      }

      .nav-links a:hover, .nav-links a.active {
        color: white;
        background: rgba(255,255,255,0.15);
      }

      .nav-cart {
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.85rem;
        font-weight: 700;
        color: #1a7a40;
        background: white;
        padding: 0.5rem 1.1rem;
        border-radius: 8px;
        transition: opacity 0.18s;
      }

      .nav-cart:hover { opacity: 0.88; }

      .cart-count {
        background: #1a7a40;
        color: white;
        border-radius: 50%;
        width: 18px; height: 18px;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.65rem;
        font-weight: 800;
      }

      .nav-actions {
     display: flex;
     align-items: center;
     gap: 0.7rem;
    }

    .nav-account {
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.18s;
    }

    .nav-account:hover {
  opacity: 0.88;
    }

    /*mobile burger*/

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        gap: 6px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
      }

      /* ── MOBILE MENU ── */
      .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a7a40;
        flex-direction: column;
        padding: 2rem 2rem;
        gap: 1.5rem;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
      }

      .cart-count:empty {
  display: none;
}

      .mobile-menu.active {
        display: flex;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .mobile-menu a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        font-weight: 600;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.18s;
        display: block;
      }

      .mobile-menu a:hover,
      .mobile-menu a.active {
        background: rgba(255, 255, 255, 0.15);
        color: white;
      }

      .mobile-cart-btn {
        background: white;
        color: #1a7a40;
        padding: 1rem;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
      }

      /*INDEX*/

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
      html { scroll-behavior: smooth; }

    * {
          font-family: 'Montserrat', sans-serif;
      }

      body {
        background: #f4faf6;
        color: #2c3b30;
        line-height: 1.6;
        font-family: 'Montserrat', sans-serif;
      }

      .hero {
        background: #ffffff;
        padding: 5rem 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        border-bottom: 2px solid #dff0e6;
      }

      .hero-label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #1a7a40;
        margin-bottom: 1rem;
      }

      .hero-title {
        font-size: clamp(2.4rem, 4vw, 3.6rem);
        font-weight: 900;
        color: #112618;
        line-height: 1.13;
        margin-bottom: 1.25rem;
        font-family: 'Bebas Neue', sans-serif;
      }

      .hero-title .accent { color: #1a7a40; }

      .hero-body {
        font-size: 1rem;
        color: #6b8070;
        line-height: 1.8;
        max-width: 420px;
        margin-bottom: 2rem;
      }

      .hero-btns {
        display: flex;
        gap: 0.85rem;
        flex-wrap: wrap;
      }

      .btn-primary {
        background: #48c248;
        color: white;
        padding: 0.85rem 1.75rem;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-family: 'Nunito', sans-serif;
        transition: background 0.18s, transform 0.18s;
      }

      .btn-primary:hover { background: #22964e; transform: translateY(-1px); }

      .btn-secondary {
        background: #f0f9f3;
        color: #1a7a40;
        padding: 0.85rem 1.75rem;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        border: 1.5px solid #c8dfd0;
        cursor: pointer;
        font-family: 'Nunito', sans-serif;
        transition: background 0.18s;
      }

      .btn-secondary:hover { background: #dff0e6; }

      .hero-perks {
        display: flex;
        gap: 1.75rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid #dff0e6;
      }

      .perk {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #6b8070;
      }

      .perk-dot {
        width: 7px; height: 7px;
        background: #1a7a40;
        border-radius: 50%;
        flex-shrink: 0;
      }

      /* Hero right cards */
      /* ── HERO SLIDESHOW ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  background: #f0f9f3;
  border: 2px solid #c8dfd0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: #ffffff;
}

.slide.active {
  opacity: 1;
}
      /* ── SECTION BASE ── */
      .section { padding: 5rem 4rem; }

      .sec-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.5rem;
      }

      .sec-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #1a7a40;
        margin-bottom: 0.4rem;
      }

      .sec-title {
        font-size: 2rem;
        font-weight: 900;
        color: #112618;
        line-height: 1.1;
        font-family: 'Bebas Neue', sans-serif;
      }

      .see-all {
        font-size: 0.83rem;
        font-weight: 700;
        color: #1a7a40;
        text-decoration: none;
        white-space: nowrap;
      }

      .see-all:hover { text-decoration: underline; }

      /* ── PRODUCTS ── */
      .section-products { background: #ffffff; }

      .prod-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
      }

      .prod-card {
        background: #ffffff;
        border: 1.5px solid #c8dfd0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.2s;
        cursor: pointer;
      }

      .prod-card:hover {
        box-shadow: 0 8px 28px rgba(26,122,64,0.12);
        transform: translateY(-3px);
        border-color: #1a7a40;
      }

      .prod-img {
        height: 165px;
        background: #f0f9f3 , #f4faf6;
        background: #f0f9f3;
        background: linear-gradient(135deg, #dff0e6 0%, (#f0f9f3, #f0f9f3) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
        border-bottom: 1.5px solid #c8dfd0;
        position: relative;
      }

      .prod-img img {
        height: 150px;
      }

      .prod-pill {
        position: absolute;
        top: 10px; left: 10px;
        background: #1a7a40;
        color: white;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 0.25rem 0.6rem;
        border-radius: 50px;
      }

      .prod-body { padding: 1.25rem; }

      .prod-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: #112618;
        margin-bottom: 0.4rem;
      }

      .prod-desc {
        font-size: 0.81rem;
        color: #6b8070;
        line-height: 1.55;
        margin-bottom: 1.1rem;
      }

      .prod-foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .prod-cat {
        font-size: 0.72rem;
        font-weight: 600;
        color: #1a7a40;
        background: #dff0e6;
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
      }

      .prod-cta {
        font-size: 0.8rem;
        font-weight: 700;
        color: #48c248;
        text-decoration: none;
      }

      /* ── HOW TO ORDER ── */
      .steps-section {
        background: #006400;
        padding: 5rem 4rem;
      }

      .steps-section .sec-label { color: rgba(255,255,255,0.6); }
      .steps-section .sec-title { color: white; }

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 3rem;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 14px;
        overflow: hidden;
      }

      .step {
        padding: 2.25rem 2rem;
        border-right: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.04);
        transition: background 0.2s;
      }

      .step:last-child { border-right: none; }
      .step:hover { background: rgba(255,255,255,0.1); }

      .step-num {
        font-size: 2.2rem;
        font-weight: 900;
        color: rgba(255,255,255,0.2);
        line-height: 1;
        margin-bottom: 0.9rem;
      }

      .step-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

      .step-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.4rem;
      }

      .step-desc {
        font-size: 0.81rem;
        color: rgba(255,255,255,0.6);
        line-height: 1.65;
      }

      /* ── WHY US ── */
      .section-why { background: #f4faf6; }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-top: 2.5rem;
      }

      .why-card {
        padding: 1.75rem;
        border: 1.5px solid #c8dfd0;
        border-radius: 12px;
        background: #ffffff;
        transition: all 0.2s;
      }

      .why-card:hover {
        border-color: #48c248;
        background: #f0f9f3, #f0f9f3;
      }

      .why-icon {
        width: 46px; height: 46px;
        background: #dff0e6;
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 1rem;
      }

      .why-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #112618;
        margin-bottom: 0.4rem;
      }

      .why-desc {
        font-size: 0.81rem;
        color: #6b8070;
        line-height: 1.65;
      }

      #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 150; 
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #1a7a40; 
      color: white;
      border: none;
      font-size: 22px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s, transform 0.2s, background-color 0.2s;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    }

    #backToTop:hover {
      background-color: #11532b; 
      transform: scale(1.1); 
    }
      

      @media (max-width: 768px) {

  footer {
    padding: 2rem 1.5rem;
  }

  .foot-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-logo-box {
    width: 80px;
    height: 80px;
  }

  .footer-nav {
    gap: 0.9rem;
  }

  .footer-bottom {
    text-align: left;
  }

}

      /* ── ANIMATIONS ── */
      @keyframes up {
        from { opacity:0; transform: translateY(18px); }
        to   { opacity:1; transform: translateY(0); }
      }

      .hero-label  { animation: up 0.5s ease both; }
      .hero-title  { animation: up 0.5s 0.08s ease both; }
      .hero-body   { animation: up 0.5s 0.16s ease both; }
      .hero-btns   { animation: up 0.5s 0.24s ease both; }
      .hero-perks  { animation: up 0.5s 0.32s ease both; }

      /* ── RESPONSIVE ── */
      @media (max-width: 860px) {
        nav { padding: 0 1.25rem; }
        .nav-links { display: none; }
        .hamburger { display: flex; }
        .nav-actions { display: none; }
        .mobile-menu.active { display: flex; }
        .hero { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; gap: 2.5rem; }
        .hero-slider {
  height: 300px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hero-perks {
  margin-top: 1rem;
}
        .section, .steps-section { padding: 3.5rem 1.5rem; }
        .prod-grid, .why-grid { grid-template-columns: 1fr; }
        .steps-grid { grid-template-columns: 1fr 1fr; }
        .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
        footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
        .foot-copy { text-align: left; }
        .sec-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        
      }

    /*PRODUCTS*/
    .products-hero {
            background: #ffffff;
            padding: 4rem 4rem;
            border-bottom: 2px solid #dff0e6;
            text-align: center;
        }

        .products-hero-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #8a8a8a;
            margin-bottom: 0.8rem;
            animation: up 0.5s ease both;
            font-family: 'Stardos Stencil', serif;
        }

        .products-hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: #112618;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: up 0.5s 0.08s ease both;
            font-family: 'Bebas Neue', sans-serif;
        }

        .accent {
            font-family: 'Bebas Neue', sans-serif;
        }

        .products-hero-subtitle {
            font-size: 1rem;
            color: #6b8070;
            max-width: 550px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            animation: up 0.5s 0.16s ease both;
        }

        /* ── FILTERS & SORTING ── */
        .products-controls {
            background: #f4faf6;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .filter-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: #1a7a40;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Stardos Stencil', serif;
        }

        .filter-btn {
            background: white;
            border: 1.5px solid #c8dfd0;
            color: #1a7a40;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.18s;
            font-family: 'Montserrat', sans-serif;
        }

        .filter-btn:hover {
            border-color: #1a7a40;
            background: #a3b181;
        }

        .filter-btn.active {
            background: #1a7a40;
            color: white;
            border-color: #1a7a40;
        }

        /* ── PRODUCTS GRID ── */
        .products-section {
            padding: 4rem;
            background: #ffffff;
        }

        .products-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        #prod1 {
            width: 300px;
        }

        #prod2 {
            width: 230px;
        }

        .product-card-premium {
            background: #ffffff;
            border: 1.5px solid #c8dfd0;
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            font-family: 'Bebas Neue', sans-serif;
        }

        .product-card-premium:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(26, 122, 64, 0.15);
            border-color: #1a7a40;
        }

        .product-image-premium {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #dff0e6 0%, #f0f9f3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            border-bottom: 1.5px solid #c8dfd0;
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #1a7a40;
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            font-family: 'Stardos Stencil', serif;
        }

        .product-badge.popular { background: #1a7a40; }
        .product-badge.bestseller { background: #ea580c; }
        .product-badge.new { background: #0891b2; }

        .product-content-premium {
            padding: 1.75rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-name-premium {
            font-size: 1.25rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

        .product-description-premium {
            font-size: 0.9rem;
            color: #6b8070;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            flex: 1;
        }

        .product-rating-premium {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: #6b8070;
        }

        .product-rating-premium .stars {
            color: #f59e0b;
            font-weight: 600;
        }

        .product-footer-premium {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.2rem;
            border-top: 1px solid #dff0e6;
        }

        .product-price-premium {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a7a40;
        }

        .product-cta-premium {
            background: #5bd05a;
            color: white;
            padding: 0.7rem 1.4rem;
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            font-family: 'Nunito', sans-serif;
        }

        .product-cta-premium:hover {
            background: #00e900;
            transform: translateY(-2px);
        }

        /* ── EMPTY STATE ── */
        .empty-products {
            text-align: center;
            padding: 4rem 2rem;
            color: #6b8070;
        }

        .empty-products-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        @keyframes up {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {

  nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cart {
    display: none;
  }

  .nav-actions { display: none; }

  .hamburger {
    display: flex;
  }

  .products-hero {
    padding: 3rem 1.5rem;
  }

  .products-controls {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .products-section {
    padding: 2rem 1.5rem;
  }

  .products-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-group {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    min-width: 120px;
  }
}

/*track*/
.track-hero {
            background: #ffffff;
            padding: 4rem 4rem;
            border-bottom: 2px solid #dff0e6;
            text-align: center;
    }

        .track-hero-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 0.8rem;
            animation: up 0.5s ease both;
        }

        .track-hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: #112618;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: up 0.5s 0.08s ease both;
            font-family: 'Bebas Neue', sans-serif;
        }

        .accent {
            font-family: 'Bebas Neue', sans-serif;
        }

        .track-hero-subtitle {
            font-size: 1rem;
            color: #6b8070;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.8;
            animation: up 0.5s 0.16s ease both;
        }

        /* ── TRACK CONTAINER ── */
        .track-main {
            padding: 4rem;
            background: #f4faf6;
            min-height: calc(100vh - 300px);
        }

        .track-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        /* ── SEARCH CARD ── */
        .track-search-card {
            background: #ffffff;
            padding: 3rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            margin-bottom: 3rem;
            animation: up 0.5s 0.24s ease both;
        }

        .search-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 1rem;
        }

        .search-input-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .track-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.4rem;
            border: 1.5px solid #c8dfd0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.18s;
            color: #112618;
        }

        .track-input::placeholder {
            color: #a8b89f;
        }

        .track-input:focus {
            outline: none;
            border-color: #1a7a40;
            box-shadow: 0 0 0 3px rgba(26, 122, 64, 0.1);
            background: #f0f9f3;
        }

        .btn-track {
            background: #48c248;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            white-space: nowrap;
        }

        .btn-track:hover {
            background: #22964e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 122, 64, 0.2);
        }

        /* ── ORDER STATUS ── */
        .order-status-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            border-left: 4px solid #1a7a40;
        }

        .order-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #dff0e6;
        }

        .order-id-badge {
            background: #dff0e6;
            color: #1a7a40;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .order-header-text h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #112618;
            margin: 0;
        }

        .order-header-text p {
            font-size: 0.85rem;
            color: #6b8070;
            margin: 0.25rem 0 0;
        }

        /* ── TIMELINE ── */
        .status-timeline-container {
            margin: 3rem 0;
        }

        .timeline-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 1.5rem;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .timeline-step {
            position: relative;
            text-align: center;
        }

        .timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            left: calc(50% + 35px);
            right: -50%;
            height: 2px;
            background: #dff0e6;
        }

        .timeline-step.completed:not(:last-child)::after {
            background: #1a7a40;
        }

        .step-dot {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: #f0f9f3;
            border: 2px solid #c8dfd0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }

        .timeline-step.completed .step-dot {
            background: #1a7a40;
            border-color: #1a7a40;
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(26, 122, 64, 0.25);
        }

        .timeline-step.current .step-dot {
            background: #ea580c;
            border-color: #ea580c;
            color: white;
            box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.1);
            animation: pulse 2s infinite;
        }

        .step-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #112618;
            margin-top: 0.75rem;
        }

        .step-date {
            font-size: 0.75rem;
            color: #6b8070;
            margin-top: 0.3rem;
        }

        .timeline-step.completed .step-date {
            color: #1a7a40;
            font-weight: 600;
        }

        /* ── STATUS MESSAGE ── */
        .status-message {
            margin-top: 2.5rem;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid;
        }

        .status-message.in-transit {
            background: #f0fdf4;
            border-left-color: #1a7a40;
        }

        .status-message.confirmed {
            background: #f0fdf4;
            border-left-color: #1a7a40;
        }

        .status-message.error {
            background: #fef2f2;
            border-left-color: #ef4444;
        }

        .status-message-title {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .status-message.in-transit .status-message-title,
        .status-message.confirmed .status-message-title {
            color: #1a7a40;
        }

        .status-message.error .status-message-title {
            color: #991b1b;
        }

        .status-message p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .status-message.in-transit p,
        .status-message.confirmed p {
            color: #166534;
        }

        .status-message.error p {
            color: #7f1d1d;
        }

        /* ── ORDER DETAILS ── */
        .order-details-section {
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid #dff0e6;
        }

        .details-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 1.5rem;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .detail-item {
            padding: 1rem;
            background: #f4faf6;
            border-radius: 8px;
        }

        .detail-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #6b8070;
            margin-bottom: 0.5rem;
        }

        .detail-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #112618;
        }

        /* ── ERROR STATE ── */
        .error-container {
            background: #ffffff;
            padding: 3rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            text-align: center;
        }

        .error-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .error-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.5rem;
        }

        .error-message {
            font-size: 0.95rem;
            color: #6b8070;
            line-height: 1.8;
            max-width: 400px;
            margin: 0 auto 2rem;
        }

        @keyframes up {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.1); }
            50% { box-shadow: 0 0 0 12px rgba(234, 88, 12, 0.05); }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {
            .track-hero {
                padding: 3rem 1.5rem;
            }

            .track-main {
                padding: 2rem 1.5rem;
            }

            .track-search-card {
                padding: 2rem;
            }

            .search-input-group {
                flex-direction: column;
            }

            .btn-track {
                width: 100%;
            }

            .timeline-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .timeline-step:nth-child(odd)::after,
            .timeline-step:nth-child(even)::after {
                display: none;
            }

            .details-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .order-header {
                flex-direction: column;
                align-items: flex-start;
            }
  nav {
    padding: 0 1.5rem;
  }

  /* Hide desktop nav */
  .nav-links,
  .nav-cart {
    display: none;
  }

  .nav-actions { display: none; }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

        }

        /*about*/

    .logo-name1 {
      font-weight: 700;
      font-size: 2rem;
      color: white;
      font-family: 'Bebas Neue', sans-serif;
    }

    .logo-tagline1 {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      font-family: 'Stardos Stencil', serif;
    }

        .about-hero-section {
    background-image:
        linear-gradient(
            135deg,
            rgba(26, 122, 64, 0.85) 0%,
            rgba(34, 150, 78, 0.85) 100%
        ),url("pics/texture.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 5rem 4rem;
    color: white;
    text-align: center;
    margin-top: 0px;
}

        .about-hero-label {

            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.8rem;
            animation: up 0.5s ease both;
            font-family: 'Stardos Stencil', serif;
        }

        .about-hero-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 900;
            color: white;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: up 0.5s 0.08s ease both;
            font-family: 'Bebas Neue', sans-serif;
        }

        .accent {
            font-family: 'Bebas Neue', sans-serif;
        }

        .about-hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 550px;
            margin: 0 auto;
            animation: up 0.5s 0.16s ease both;
            font-family: 'Stardos Stencil', serif; 
        }

        /* ── ABOUT CONTENT SECTIONS ── */
        .about-main {
            padding: 5rem 4rem;
            background: #f4faf6;
        }

        .about-main {
            padding: 5rem 4rem;
            background: #f4faf6;
        }

        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-wrapper img {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 250px;
    width: 100%;
}

        .content-section {
            background: #ffffff;
            padding: 3rem;
            border-radius: 14px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            border-left: 4px solid #1a7a40;
        }

        .content-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #dff0e6;
        }

        .content-section p {
            font-size: 1rem;
            color: #6b8070;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

        .content-section p:last-child {
            margin-bottom: 0;
        }

        .content-section strong {
            color: #1a7a40;
            font-weight: 700;
        }

        /* ── VALUES GRID ── */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .value-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: #f4faf6;
            border-radius: 10px;
        }

        .value-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .value-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.4rem;
        }

        .value-content p {
            font-size: 0.95rem;
            color: #6b8070;
            margin: 0;
            line-height: 1.6;
        }

        /* ── CONTACT SECTION ── */
        .contact-section {
            background: #ffffff;
            padding: 3rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            margin-bottom: 3rem;
        }

        .contact-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.8rem;
        }

        .contact-section-subtitle {
            font-size: 1rem;
            color: #6b8070;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
        }

        .contact-card {
            padding: 1.75rem;
            background: #f4faf6;
            border-radius: 10px;
            border-left: 4px solid #1a7a40;
            transition: all 0.25s;
            min-width: 0;
    overflow: hidden;
        }

        .contact-card:hover {
            background: #dff0e6;
            transform: translateY(-4px);
        }

        .contact-icon {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }

        .contact-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 0.4rem;
            font-family: 'Stardos Stencil', serif;
        }

        .contact-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.3rem;
        }

        .contact-detail {
            font-size: 0.9rem;
            color: #6b8070;
        }

        /* ── MAP SECTION ── */
.map-container {
    margin-top: 2rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 122, 64, 0.12);
    border: 4px solid #f4faf6;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}
        /* ── TESTIMONIALS SECTION ── */
        .testimonials-section {
            background: #ffffff;
            padding: 3rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
        }

        .testimonials-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .testimonials-subtitle {
            font-size: 1rem;
            color: #6b8070;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card-premium {
            padding: 2rem;
            background: #f4faf6;
            border-radius: 12px;
            border-top: 4px solid #1a7a40;
            transition: all 0.25s;
        }

        .testimonial-card-premium:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(26, 122, 64, 0.12);
            background: #ffffff;
        }

        .testimonial-avatar-premium {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a7a40 0%, #22964e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-family: 'Bebas Neue', sans-serif;
        }

        .testimonial-name-premium {
            font-size: 1.05rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.2rem;
            font-family: 'Stardos Stencil', serif;
        }

        .testimonial-role-premium {
            font-size: 0.8rem;
            font-weight: 600;
            color: #1a7a40;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .testimonial-text-premium {
            font-size: 0.95rem;
            color: #6b8070;
            line-height: 1.8;
            margin: 0;
            font-family: 'Stardos Stencil', serif;
        }

        .testimonial-rating {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        /* ── TESTIMONIAL FORM ── */
.testimonial-form-wrapper {
    margin-top: 3rem;
    background: #f4faf6;
    padding: 2rem;
    border-radius: 14px;
    border: 2px solid #dff0e6;
}

.testimonial-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #112618;
    margin-bottom: 0.5rem;
}

.testimonial-form-subtitle {
    font-size: 0.95rem;
    color: #6b8070;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testimonial-form input,
.testimonial-form textarea,
.testimonial-form select {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #dff0e6;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
    background: white;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus,
.testimonial-form select:focus {
    border-color: #1a7a40;
    box-shadow: 0 0 0 4px rgba(26, 122, 64, 0.1);
}

.testimonial-form textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-testimonial-btn {
    background: #48c248;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-testimonial-btn:hover {
    background: #11532b;
    transform: translateY(-2px);
}

@keyframes up {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 860px) {
            .about-hero-section {
                padding: 3.5rem 1.5rem;
            }

            .about-main {
                padding: 3rem 1.5rem;
            }

            .content-section {
                padding: 2rem;
            }

            .testimonials-grid,
.values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

            .values-grid {
                grid-template-columns: 1fr;
            }

            .contact-card {
                padding: 1.5rem;
            }
            .map-container iframe {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-form-wrapper {
        padding: 1.5rem;
    }

  nav {
    padding: 0 1.5rem;
  }

  /* Hide desktop navigation */
  .nav-links,
  .nav-cart {
    display: none;
  }

  .nav-actions { display: none; }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Improve mobile logo sizing */

  .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .contact-section-title,
.contact-section-subtitle {
    text-align: center;
}

.contact-section {
    padding: 2rem 1.2rem;
}

.contact-card {
    width: 100%;
    overflow-wrap: break-word;
}

.contact-value {
    font-size: 1rem;
    word-break: break-word;
}

        }
      

        /*basket*/
        .basket-hero {
            background: #ffffff;
            padding: 4rem 4rem;
            border-bottom: 2px solid #dff0e6;
            text-align: center;
        }

        .basket-hero-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 0.8rem;
            animation: up 0.5s ease both;
        }

        .basket-hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: #112618;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: up 0.5s 0.08s ease both;
            font-family: 'Bebas Neue', sans-serif;
        }

        .accent {
            font-family: 'Bebas Neue', sans-serif;
        }

        /* ── BASKET MAIN ── */
        .basket-main {
            padding: 4rem;
            background: #f4faf6;
            min-height: calc(100vh - 300px);
        }

        .basket-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .basket-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 2rem;
            margin-top: 2rem;
        }

        /* ── BASKET TABLE ── */
        .basket-table-container {
            animation: up 0.5s 0.16s ease both;
        }

        .basket-table-wrapper {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
        }

        .basket-table-header {
            background: #1a7a40;
            color: white;
            padding: 1.5rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1.2fr 0.8fr;
            gap: 1rem;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .basket-item {
            padding: 1.5rem;
            border-bottom: 1px solid #dff0e6;
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1.2fr 0.8fr;
            gap: 1rem;
            align-items: center;
        }

        .basket-item:last-child {
            border-bottom: none;
        }

        .item-name {
            font-size: 1rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.3rem;
        }

        .item-sku {
            font-size: 0.75rem;
            color: #6b8070;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .item-price {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a7a40;
        }

        .quantity-control-premium {
            display: flex;
            align-items: center;
            border: 1.5px solid #c8dfd0;
            border-radius: 6px;
            overflow: hidden;
        }

        .qty-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: #f4faf6;
            color: #1a7a40;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            font-size: 1rem;
        }

        .qty-btn:hover {
            background: #dff0e6;
        }

        .qty-input {
            width: 50px;
            border: none;
            text-align: center;
            font-weight: 700;
            color: #112618;
            background: white;
            font-size: 0.95rem;
        }

        .qty-input:focus {
            outline: none;
        }

        .item-total {
            font-size: 1.1rem;
            font-weight: 700;
            color: #112618;
        }

        .remove-item-btn {
            background: none;
            border: none;
            color: #ef4444;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.18s;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .remove-item-btn:hover {
            color: #991b1b;
            transform: scale(1.15);
        }

        /* ── BASKET SUMMARY ── */
        .basket-summary-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
            height: fit-content;
            position: sticky;
            top: 90px;
            animation: up 0.5s 0.24s ease both;
        }

        .summary-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #dff0e6;
            font-family: 'Bebas Neue', sans-serif;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .summary-row-label {
            color: #6b8070;
            font-weight: 600;
        }

        .summary-row-value {
            font-weight: 700;
            color: #112618;
        }

        .summary-divider {
            height: 1px;
            background: #dff0e6;
            margin: 1rem 0;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .summary-total-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: #112618;
        }

        .summary-total-value {
            font-size: 1.5rem;
            font-weight: 900;
            color: #1a7a40;
        }

        .checkout-btn {
            background: #1a7a40;
            color: white;
            padding: 1.1rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            width: 100%;
            margin-top: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .checkout-btn:hover {
            background: #22964e;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 122, 64, 0.25);
        }

        .continue-shopping-btn {
            background: #f0f9f3;
            color: #1a7a40;
            padding: 0.85rem 1.5rem;
            border: 1.5px solid #c8dfd0;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            width: 100%;
            text-decoration: none;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .continue-shopping-btn:hover {
            background: #dff0e6;
            border-color: #1a7a40;
        }

        /* ── EMPTY STATE ── */
        .empty-basket-container {
            background: #ffffff;
            border-radius: 14px;
            padding: 4rem 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(26, 122, 64, 0.08);
        }

        .empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.6;
        }

        .empty-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #112618;
            margin-bottom: 0.5rem;
            font-family: 'Bebas Neue', sans-serif;
        }

        .empty-message {
            font-size: 1rem;
            color: #6b8070;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .empty-btn {
            background: #1a7a40;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.18s;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .empty-btn:hover {
            background: #22964e;
            transform: translateY(-2px);
        }

        /* ── PROMO SECTION ── */
        .promo-banner {
            background: linear-gradient(135deg, #dff0e6 0%, #f0f9f3 100%);
            border-left: 4px solid #1a7a40;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .promo-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #1a7a40;
            margin-bottom: 0.4rem;
        }

        .promo-text {
            font-size: 0.95rem;
            color: #166534;
            font-weight: 600;
        }

        @keyframes up {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .basket-layout {
                grid-template-columns: 1fr;
            }

            .basket-summary-card {
                position: static;
            }

            .basket-table-header,
            .basket-item {
                grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
                gap: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .basket-hero {
                padding: 3rem 1.5rem;
            }

            .basket-main {
                padding: 2rem 1.5rem;
            }

            .basket-table-header,
            .basket-item {
                grid-template-columns: 1fr 1fr;
                padding: 1rem;
            }

            .basket-table-header > :nth-child(3),
            .basket-table-header > :nth-child(4),
            .basket-item > :nth-child(3),
            .basket-item > :nth-child(4) {
                display: none;
            }

            .basket-table-header > :nth-child(5),
            .basket-item > :nth-child(5) {
                grid-column: 2;
                text-align: right;
            }

            .basket-summary-card {
                margin-top: 2rem;
            }
  nav {
    padding: 0 1.5rem;
  }

  /* Hide desktop nav */
  .nav-links,
  .nav-cart {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Smaller logo text */

  .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .nav-actions { display: none; }

  /* Better mobile menu spacing */
  .mobile-menu {
    padding: 1.5rem;
  }
        }

        /*login*/
        main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 1.5rem;
    }

    /* ── LOGIN CONTAINER ── */
    .login-container {
      background: white;
      border: 1.5px solid #c8dfd0;
      border-radius: 12px;
      padding: 3rem;
      width: 100%;
      max-width: 420px;
      animation: fadeIn 0.5s ease;
      box-shadow: 0 8px 28px rgba(26,122,64,0.08);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .login-header {
      text-align: center;
      margin-bottom: 2.5rem;
      animation: fadeIn 0.5s 0.1s ease both;
    }

    .login-logo img{
      width: 64px;
      height: 64px;
      background: #dff0e6;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      margin: 0 auto 1.5rem;
    }

    .login-title {
      font-size: 2rem;
      font-weight: 900;
      color: #112618;
      margin-bottom: 0.5rem;
      font-family: 'Bebas Neue', sans-serif;
      line-height: 1.1;
    }

    .login-subtitle {
      font-size: 0.85rem;
      color: #6b8070;
      font-weight: 500;
    }

    /* ── FORM ── */
    .login-form {
      animation: fadeIn 0.5s 0.15s ease both;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      color: #112618;
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .form-group input {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid #c8dfd0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: 'Montserrat', sans-serif;
      color: #112618;
      transition: all 0.18s;
      background: #ffffff;
    }

    .form-group input:focus {
      outline: none;
      border-color: #1a7a40;
      box-shadow: 0 0 0 3px rgba(26,122,64,0.1);
      background: #f0f9f3;
    }

    .form-group input::placeholder {
      color: #c8dfd0;
    }

    /* ── REMEMBER & FORGOT ── */
    .form-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      font-size: 0.82rem;
    }

    .checkbox-wrap {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .checkbox-wrap input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: #1a7a40;
    }

    .checkbox-wrap label {
      margin: 0;
      cursor: pointer;
      color: #6b8070;
      font-weight: 500;
    }

    .forgot-link {
      color: #1a7a40;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.18s;
    }

    .forgot-link:hover {
      text-decoration: underline;
    }

    /* ── BUTTONS ── */
    .btn-login {
      width: 100%;
      background: #1a7a40;
      color: white;
      padding: 0.95rem;
      border: none;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.18s;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }

    .btn-login:hover {
      background: #22964e;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(26,122,64,0.2);
    }

    .btn-login:active {
      transform: translateY(0);
    }

    /* ── SIGNUP LINK ── */
    .signup-section {
      text-align: center;
      padding-top: 1.5rem;
      border-top: 1px solid #dff0e6;
      font-size: 0.85rem;
      color: #6b8070;
      animation: fadeIn 0.5s 0.2s ease both;
    }

    .signup-section a {
      color: #1a7a40;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.18s;
    }

    .signup-section a:hover {
      text-decoration: underline;
    }

    @media (max-width: 860px) {
      nav {
        padding: 0 1.25rem;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .nav-cart {
        display: none;
      }

      .nav-actions { display: none; }

      .login-container {
        padding: 2rem;
        max-width: 100%;
      }

      .login-title {
        font-size: 1.5rem;
      }

      main {
        padding: 2rem 1rem;
      }

      footer {
        padding: 1.5rem 1.25rem;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 0 1rem;
      }


      .login-container {
        padding: 1.5rem;
      }

      .login-title {
        font-size: 1.3rem;
      }

      .login-logo {
        width: 56px;
        height: 56px;
        font-size: 2rem;
      }
    }
/*FOOTER*/
footer {
  background: #252525;
  padding: 3rem 4rem 2rem;
  border-top: 4px solid #1a7a40;
}

.foot-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot-logo-box {
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.foot-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.foot-text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.foot-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.foot-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* FOOTER NAV */

.footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 0.3rem;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: white;
  transition: width 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: white;
}

.footer-nav a:hover::after,
.footer-nav a.active::after {
  width: 100%;
}