:root {
      --accent: #e6a12d;
      --accent-dark: #c98412;
      --dark: #101010;
      --muted: #6c757d;
      --cream: #fff7ec;
    }

    body {
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
      color: #222;
      background: #fff;
    }

    /* Topbar */
    .topbar {
      background: var(--accent);
      padding: 5px;
      font-size: 0.875rem;
    }
    
    .topbar a {
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .topbar a:hover {
      opacity: 0.8;
    }

    /* Navbar */
    .navbar {
      background: #1a1a1a;
      padding: 0.5rem 0;
    }
    
    .navbar .btn-cart {
      background: #fff;
      color: #000;
      border-radius: 50px;
      padding: 0.45rem 0.8rem;
    }
    
    .navbar .search-wrap input {
      min-width: 220px;
    }
    
    .btn-accent {
      background: var(--accent);
      color: #1a1a1a;
      border: none;
    }
    
    .btn-accent:hover {
      background: var(--accent-dark);
      color: #000;
    }

    /* Hero assets/images/herbs.png*/
    .hero {
      min-height: auto;
      background: url("assets/images/herbs.png") center/cover no-repeat, linear-gradient(#000, #000);
      position: relative;
      display: flex;
      align-items: center;
    }
    
    .hero .letter {
      letter-spacing: 0.25em;
      opacity: 0.9;
    }
    
    .hero .fw-extrabold {
      font-weight: 900;
    }
    
    .hero-overlay {
      position: absolute;
      right: 0;
      bottom: 0;
      max-height: 70%;
      pointer-events: none;
      opacity: 0.7;
    }

    /* Sections */
    .section {
      padding: 70px 0;
    }
    
    .section-head h2 {
      margin-bottom: 0.2rem;
    }
    
    .section-head p {
      max-width: 680px;
      margin: 0 auto 1rem;
    }

    /* Product cards */
    .product-card {
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      overflow: hidden;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .product-card .stars i {
      color: #f5c742;
    }
    
    .product-card .card-img-top {
      height: 200px;
      object-fit: cover;
    }

    /* Promo strip */
    .promo-strip {
      background: url("assets/images/pexels-bestasya-3233275.jpg") center/cover no-repeat;
      padding: 36px 0;
      color: #fff;
      position: relative;
      isolation: isolate;
      border-radius: 20px;
    }
    
    .promo-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0.45;
      z-index: -1;
    }

    /* Tiles */
    .tile {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      height: 100%;
    }
    
    .tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s;
    }
    
    .tile:hover img {
      transform: scale(1.05);
    }
    
    .tile .tile-title {
      position: absolute;
      left: 14px;
      bottom: 12px;
      color: #fff;
      font-weight: 700;
      text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    }
    
    .tile-lg {
      height: 100%;
      min-height: 330px;
    }
    
    .tile-lg .tile-badge {
      position: absolute;
      left: 16px;
      top: 16px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 12px 14px;
      border-radius: 10px;
      font-weight: 700;
    }
    
    .tile-lg .btn {
      position: absolute;
      left: 16px;
      bottom: 16px;
    }

    /* Promo card */
    .promo-card {
      height: 100%;
      min-height: 190px;
      background: #fff3da;
      border-radius: 16px;
      border: 1px dashed var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Middle offer */
    .middle-offer {
      padding: 86px 0;
      background: url("assets/images/pexels-mareefe-678414.jpg") center/cover fixed no-repeat;
      position: relative;
      isolation: isolate;
    }
    
    .middle-offer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0.55;
      z-index: -1;
    }

    /* Team */
    .team .social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: #f3f3f3;
      border-radius: 50%;
      color: #222;
      margin: 0 4px;
      transition: all 0.3s;
    }
    
    .team .social a:hover {
      background: var(--accent);
    }

    /* Gallery */
    .gallery {
      padding: 10px 0 70px;
    }

    /* Features */
    .features .feat img {
      height: 180px;
      object-fit: cover;
    }

    /* Guarantees */
    .guarantees {
      background: #fafafa;
      padding: 40px 0;
    }
    
    .g-box {
      background: #fff;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      transition: transform 0.3s;
    }
    
    .g-box:hover {
      transform: translateY(-5px);
    }
    
    .g-box i {
      font-size: 26px;
      color: var(--accent);
      display: block;
      margin-bottom: 8px;
    }

    /* Footer */
    .site-footer {
      background: #111;
      color: #d8d8d8;
    }
    
    .site-footer .footer-top {
      padding: 56px 0;
      background: url("assets/images/pexels-mareefe-678414.jpg") center/cover no-repeat;
      position: relative;
      isolation: isolate;
    }
    
    .site-footer .footer-top::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0.9;
      z-index: -1;
    }
    
    .site-footer h5, .site-footer h6 {
      color: #fff;
    }
    
    .site-footer a {
      color: #d8d8d8;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .site-footer a:hover {
      color: var(--accent);
    }
    
    .site-footer .social-ic {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #222;
      border-radius: 10px;
      transition: all 0.3s;
    }
    
    .site-footer .social-ic:hover {
      background: var(--accent);
      color: #111;
    }
    
    .site-footer .footer-bottom {
      background: #0b0b0b;
      padding: 14px 0;
    }

    /* Utilities */
    .ratio-1x1 {
      aspect-ratio: 1/1;
    }
    
    .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #dc3545;
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* User dropdown */
    .user-dropdown .dropdown-menu {
      min-width: 250px;
    }
    
    .user-dropdown .dropdown-item {
      padding: 0.5rem 1.5rem;
    }
    
    .user-dropdown .dropdown-divider {
      margin: 0.3rem 0;
    }
    
    /* Product filter */
    .filter-section {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
    }
    
    .filter-section h5 {
      border-bottom: 2px solid var(--accent);
      padding-bottom: 10px;
      margin-bottom: 15px;
    }
    
    .price-range {
      accent-color: var(--accent);
    }
    
    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }




    /* Contact Section */
    .contact-info {
      background: var(--cream);
      border-radius: 12px;
      padding: 30px;
    }
    
    .contact-card {
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s;
      height: 100%;
    }
    
    .contact-card:hover {
      transform: translateY(-5px);
    }
    
    .contact-icon {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 15px;
    }

    /* Map */
    .map-container {
      border-radius: 12px;
      overflow: hidden;
      height: 400px;
    }

    /* Footer */
    .site-footer {
      background: #111;
      color: #d8d8d8;
    }
    
    .site-footer .footer-top {
      padding: 56px 0;
      background: url("assets/images/pexels-mareefe-678414.jpg") center/cover no-repeat;
      position: relative;
      isolation: isolate;
    }
    
    .site-footer .footer-top::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0.9;
      z-index: -1;
    }
    
    .site-footer h5, .site-footer h6 {
      color: #fff;
    }
    
    .site-footer a {
      color: #d8d8d8;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .site-footer a:hover {
      color: var(--accent);
    }
    
    .site-footer .social-ic {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #222;
      border-radius: 10px;
      transition: all 0.3s;
    }
    
    .site-footer .social-ic:hover {
      background: var(--accent);
      color: #111;
    }
    
    .site-footer .footer-bottom {
      background: #0b0b0b;
      padding: 14px 0;
    }

    /* Content Sections */
    .content-section {
      padding: 80px 0;
    }
    
    .content-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }