
    /* ===== CSS VARIABLES ===== */
    :root {
      --green:      #1a6b3c;
      --green-dark: #114428;
      --green-mid:  #23924f;
      --green-lite: #e6f5ed;
      --accent:     #f5a623;
      --accent2:    #e8304a;
      --white:      #ffffff;
      --off-white:  #f9faf7;
      --text:       #1c2b22;
      --muted:      #6b7c72;
      --border:     #d4e6da;
      --shadow:     0 8px 32px rgba(26,107,60,.12);
      --radius:     14px;
      --transition: .3s cubic-bezier(.4,0,.2,1);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--text);
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .section-pad { padding: 80px 0; }

    /* ===== TOPBAR ===== */
    #topbar {
      background: var(--green-dark);
      color: #c8f0d8;
      font-size: .82rem;
      padding: 7px 0;
    }
    #topbar a { color: var(--accent); }

    /* ===== NAVBAR ===== */
    #mainNav {
      background: var(--white);
      box-shadow: 0 2px 18px rgba(26,107,60,.1);
      position: sticky;
      top: 0;
      z-index: 999;
      transition: var(--transition);
    }
    #mainNav.scrolled { box-shadow: 0 4px 28px rgba(26,107,60,.18); }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--green-dark) !important;
      letter-spacing: -1px;
    }
    .navbar-brand span { color: var(--accent); }
    .nav-link {
      font-weight: 500;
      color: var(--text) !important;
      padding: 8px 14px !important;
      border-radius: 8px;
      transition: var(--transition);
    }
    .nav-link:hover, .nav-link.active {
      background: var(--green-lite);
      color: var(--green) !important;
    }
    .nav-search-wrap { position: relative; }
    .nav-search-wrap input {
      border: 2px solid var(--border);
      border-radius: 30px;
      padding: 6px 40px 6px 16px;
      font-size: .88rem;
      width: 220px;
      transition: var(--transition);
    }
    .nav-search-wrap input:focus {
      outline: none;
      border-color: var(--green);
      width: 260px;
    }
    .nav-search-wrap .bi-search {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
    }

    /* ===== HERO ===== */
    #hero {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #2db366 100%);
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge {
      display: inline-block;
      background: rgba(245,166,35,.2);
      border: 1px solid rgba(245,166,35,.5);
      color: var(--accent);
      border-radius: 30px;
      padding: 5px 16px;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .5px;
      margin-bottom: 22px;
    }
    #hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    #hero h1 em { color: var(--accent); font-style: normal; }
    #hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
    .btn-hero {
      background: var(--accent);
      color: var(--green-dark);
      font-weight: 700;
      border-radius: 40px;
      padding: 14px 34px;
      font-size: 1rem;
      border: none;
      box-shadow: 0 6px 24px rgba(245,166,35,.4);
      transition: var(--transition);
    }
    .btn-hero:hover {
      background: #e6951a;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(245,166,35,.5);
    }
    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,.5);
      border-radius: 40px;
      padding: 13px 30px;
      font-weight: 600;
      font-size: 1rem;
      transition: var(--transition);
    }
    .btn-hero-outline:hover {
      background: rgba(255,255,255,.12);
      border-color: #fff;
      color: #fff;
    }
    .hero-cards {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .hero-stat {
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 12px;
      padding: 16px 22px;
      min-width: 120px;
      text-align: center;
    }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--accent);
    }
    .hero-stat .lbl { color: rgba(255,255,255,.75); font-size: .78rem; }
    .hero-img-wrap {
      position: relative;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-18px); }
    }
    .hero-img-wrap .big-icon {
      font-size: 14rem;
      color: rgba(255,255,255,.07);
      position: absolute;
      top: -40px;
      right: -20px;
      z-index: 0;
    }
    .hero-product-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      position: relative;
      z-index: 1;
    }
    .hpc {
      background: rgba(255,255,255,.13);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 14px;
      padding: 20px 16px;
      text-align: center;
      color: #fff;
      transition: var(--transition);
    }
    .hpc:hover { background: rgba(255,255,255,.2); transform: scale(1.03); }
    .hpc .icon { font-size: 2.4rem; margin-bottom: 8px; }
    .hpc .name { font-size: .85rem; font-weight: 600; }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ===== MARQUEE ===== */
    .marquee-wrap {
      background: var(--green);
      padding: 14px 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item {
      color: #fff;
      font-weight: 600;
      font-size: .9rem;
      padding: 0 40px;
      white-space: nowrap;
    }
    .marquee-item i { color: var(--accent); margin-right: 8px; }

    /* ===== SECTION HEADER ===== */
    .sec-header { text-align: center; margin-bottom: 50px; }
    .sec-header .tag {
      display: inline-block;
      background: var(--green-lite);
      color: var(--green);
      border-radius: 20px;
      padding: 4px 16px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sec-header h2 { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--green-dark); }
    .sec-header p { color: var(--muted); font-size: 1.05rem; margin-top: 10px; max-width: 580px; margin-inline: auto; }
    .sec-divider {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--accent));
      border-radius: 4px;
      margin: 16px auto 0;
    }

    /* ===== CATEGORIES ===== */
    #categories { background: var(--white); }
    .cat-card {
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      background: var(--off-white);
      text-align: center;
      padding: 30px 20px 24px;
      position: relative;
    }
    .cat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: var(--green);
    }
    .cat-card.active-cat { border-color: var(--green); background: var(--green-lite); }
    .cat-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 16px;
    }
    .cat-card h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text); }
    .cat-card small { color: var(--muted); font-size: .8rem; }

    /* ===== PRODUCTS ===== */
    #products { background: var(--off-white); }
    .filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
    .filter-btn {
      border: 2px solid var(--border);
      background: var(--white);
      border-radius: 30px;
      padding: 7px 20px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }
    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1.5px solid var(--border);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--green-mid);
    }
    .product-img {
      background: linear-gradient(135deg, var(--green-lite), #d0f0e0);
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4.5rem;
      position: relative;
    }
    .badge-deal {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--accent2);
      color: #fff;
      border-radius: 6px;
      padding: 3px 9px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .5px;
    }
    .badge-new {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--green);
      color: #fff;
      border-radius: 6px;
      padding: 3px 9px;
      font-size: .72rem;
      font-weight: 700;
    }
    .compare-check {
      position: absolute;
      top: 12px;
      right: 12px;
    }
    .compare-check input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--green);
      cursor: pointer;
    }
    .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
    .product-brand { font-size: .75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }
    .product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 4px 0 8px; color: var(--text); }
    .product-qty { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
    .product-price { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-top: auto; }
    .product-price del { font-size: .9rem; color: var(--muted); font-weight: 400; margin-left: 6px; }
    .product-stars { color: var(--accent); font-size: .85rem; margin-bottom: 8px; }
    .product-detail-btn {
      margin-top: 14px;
      background: var(--green-lite);
      color: var(--green);
      border: none;
      border-radius: 8px;
      padding: 8px;
      font-weight: 600;
      font-size: .88rem;
      width: 100%;
      cursor: pointer;
      transition: var(--transition);
    }
    .product-detail-btn:hover { background: var(--green); color: #fff; }

    /* ===== DEALS ===== */
    #deals { background: var(--green-dark); position: relative; overflow: hidden; }
    #deals::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
    }
    #deals .sec-header .tag { background: rgba(245,166,35,.2); color: var(--accent); }
    #deals .sec-header h2 { color: #fff; }
    #deals .sec-header p { color: rgba(255,255,255,.7); }
    .deal-card {
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 28px 22px;
      text-align: center;
      transition: var(--transition);
    }
    .deal-card:hover { background: rgba(255,255,255,.13); transform: translateY(-5px); }
    .deal-icon { font-size: 3.5rem; margin-bottom: 14px; }
    .deal-card h5 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
    .deal-card p { color: rgba(255,255,255,.65); font-size: .88rem; }
    .deal-discount {
      display: inline-block;
      background: var(--accent2);
      color: #fff;
      font-weight: 800;
      font-size: 1.1rem;
      border-radius: 8px;
      padding: 4px 14px;
      margin-bottom: 12px;
    }
    .countdown-wrap {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      margin-top: 32px;
    }
    .countdown-wrap h4 { color: var(--accent); font-size: 1rem; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
    .countdown { display: flex; justify-content: center; gap: 16px; }
    .cd-box { text-align: center; }
    .cd-num { background: rgba(255,255,255,.15); color: #fff; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
    .cd-lbl { color: rgba(255,255,255,.6); font-size: .72rem; margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

    /* ===== COMPARE ===== */
    #compare { background: var(--white); }
    #comparePanel {
      background: var(--green-lite);
      border: 2px dashed var(--green-mid);
      border-radius: var(--radius);
      padding: 24px;
      text-align: center;
      min-height: 180px;
    }
    .compare-slot {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      height: 100%;
      text-align: center;
      transition: var(--transition);
    }
    .compare-slot.filled { border-color: var(--green); }
    .compare-slot .slot-icon { font-size: 2.5rem; }
    .compare-slot h6 { font-size: .9rem; margin: 8px 0 4px; }
    .compare-slot .price { font-size: 1.2rem; font-weight: 700; color: var(--green); }
    .compare-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
    .compare-table th { background: var(--green); color: #fff; padding: 10px 14px; font-size: .88rem; }
    .compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: .88rem; }
    .compare-table tr:nth-child(even) td { background: var(--green-lite); }
    .win { color: var(--green); font-weight: 700; }
    .compare-tip { color: var(--muted); font-size: .9rem; }

    /* ===== ABOUT ===== */
    #about { background: var(--off-white); }
    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .about-img-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .about-img-card .icon-ph {
      background: linear-gradient(135deg, var(--green-lite), #b8e8cc);
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }
    .about-img-card:first-child { grid-row: span 2; }
    .about-img-card:first-child .icon-ph { height: 100%; min-height: 334px; font-size: 6rem; }
    .about-value {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .about-value .icon-box {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 12px;
      background: var(--green-lite);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }
    .about-value h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 4px; }
    .about-value p { color: var(--muted); font-size: .88rem; margin: 0; }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: var(--white); }
    .testimonial-card {
      background: var(--off-white);
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      padding: 28px;
      position: relative;
      height: 100%;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: var(--green-lite);
      position: absolute;
      top: -10px;
      left: 20px;
      line-height: 1;
    }
    .testimonial-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      min-width: 46px;
    }
    .author-name { font-weight: 700; font-size: .9rem; }
    .author-area { color: var(--muted); font-size: .78rem; }

    /* ===== CONTACT ===== */
    #contact { background: var(--off-white); }
    .contact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      border: 1.5px solid var(--border);
    }
    .contact-info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-info-item:last-child { border-bottom: none; }
    .ci-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--green-lite);
      color: var(--green);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }
    .ci-title { font-weight: 700; font-size: .88rem; }
    .ci-val { color: var(--muted); font-size: .88rem; }
    .map-placeholder {
      background: linear-gradient(135deg, var(--green-lite), #c5e8d0);
      border-radius: var(--radius);
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: var(--green);
      border: 2px dashed var(--green-mid);
      overflow: hidden;
      position: relative;
    }
    .map-placeholder span {
      position: absolute;
      bottom: 16px;
      font-size: .85rem;
      color: var(--green);
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
    }

    /* ===== FORM STYLES ===== */
    .form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
    .form-control, .form-select {
      border: 2px solid var(--border);
      border-radius: 10px;
      padding: 11px 16px;
      font-size: .92rem;
      transition: var(--transition);
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(26,107,60,.1);
    }
    .form-control.is-invalid { border-color: var(--accent2); }
    .form-control.is-valid { border-color: var(--green); }
    .invalid-feedback { font-size: .8rem; }
    .btn-submit {
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 32px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
    .stars-input { display: flex; gap: 6px; font-size: 1.6rem; cursor: pointer; }
    .stars-input i { color: #ddd; transition: color .15s; }
    .stars-input i.active, .stars-input i:hover { color: var(--accent); }

    /* ===== FEEDBACK ===== */
    #feedback { background: var(--white); }
    .feedback-card {
      background: var(--off-white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      margin-bottom: 16px;
    }
    .feedback-card .stars { color: var(--accent); font-size: .9rem; }
    .feedback-card .author { font-weight: 700; font-size: .88rem; }
    .feedback-card .date { color: var(--muted); font-size: .78rem; }
    .feedback-card .msg { color: var(--muted); font-size: .9rem; margin-top: 8px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--green-dark);
      color: rgba(255,255,255,.8);
      padding: 60px 0 0;
    }
    .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: #fff; }
    .footer-brand span { color: var(--accent); }
    footer p { font-size: .88rem; line-height: 1.7; margin-top: 12px; }
    .footer-heading { font-family: 'DM Sans', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.7); font-size: .88rem; transition: var(--transition); }
    .footer-links a:hover { color: var(--accent); }
    .social-icons { display: flex; gap: 10px; margin-top: 16px; }
    .social-icons a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      transition: var(--transition);
    }
    .social-icons a:hover { background: var(--accent); color: var(--green-dark); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 18px 0;
      margin-top: 40px;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
    }
    .newsletter-input-wrap { display: flex; gap: 8px; }
    .newsletter-input-wrap input {
      flex: 1;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      padding: 9px 14px;
      color: #fff;
      font-size: .88rem;
    }
    .newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.4); }
    .newsletter-input-wrap input:focus { outline: none; border-color: var(--accent); }
    .newsletter-input-wrap button {
      background: var(--accent);
      color: var(--green-dark);
      border: none;
      border-radius: 8px;
      padding: 9px 16px;
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      transition: var(--transition);
    }
    .newsletter-input-wrap button:hover { background: #e6951a; }

    /* ===== MODAL ===== */
    .product-modal-img {
      background: linear-gradient(135deg, var(--green-lite), #c5e8d0);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      font-size: 6rem;
      margin-bottom: 20px;
    }
    .modal-content { border-radius: var(--radius); border: none; }
    .modal-header { background: var(--green); color: #fff; border-radius: var(--radius) var(--radius) 0 0; }
    .modal-header .btn-close { filter: brightness(0) invert(1); }

    /* ===== BACK TO TOP ===== */
    #backToTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 998;
      opacity: 0;
      transform: translateY(16px);
      transition: var(--transition);
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(26,107,60,.3);
    }
    #backToTop.show { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--green-dark); }

    /* ===== TOAST ===== */
    .toast-container { z-index: 9999; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hero-product-cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      #hero { min-height: auto; padding: 60px 0; }
      .hero-stat { min-width: 90px; padding: 12px 14px; }
      .nav-search-wrap input { width: 160px; }
    }
    @media (max-width: 576px) {
      .hero-cards { gap: 10px; }
      .hero-stat .num { font-size: 1.4rem; }
      .countdown { gap: 8px; }
      .cd-num { width: 54px; height: 54px; font-size: 1.8rem; }
    }
 
    .cat-btn {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid green;
  color: green;
  text-decoration: none;
  border-radius: 5px;
}

.cat-btn:hover {
  background: green;
  color: white;
}
















.icon-ph {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.icon-ph:hover img {
  transform: scale(1.1);   /* zoom effect 😎 */
}



/* .icon-box i {
  font-size: 24px;
  color: gold;
} */



.bi {
  font-family: "bootstrap-icons" !important;
}



 .about-value .icon-box i {
  font-size: 24px;          
   line-height: 1; 
   display: inline-block; 
 } 



 .about-value .icon-box i::before {
  font-size: 24px;
} 