*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gd: #0D3E26;       /* Premium Deep Emerald Green */
      --gm: #145334;       /* Medium Forest Green */
      --gl: #1B6A43;       /* Light Vibrant Green */
      --gp: #F1F9F4;       /* Soft Mint Paste Background */
      --ac: #FAB818;       /* Warm Marigold Golden-Yellow */
      --ach: #E09E0B;      /* Darker Gold Accent */
      --wh: #ffffff;
      --ow: #FAFDFB;
      --td: #092617;       /* Dark Slate Text */
      --tm: #244C36;       /* Medium Slate Text */
      --tl: #527A63;       /* Soft Muted Green Text */
    }
    body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; color: var(--td); background: var(--ow); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    /* ── ANN BAR ── */
    .ann-bar {
      background: var(--ac); color: var(--gd); text-align: center;
      font-size: 13px; font-weight: 700; padding: 10px 16px;
      letter-spacing: 0.5px; text-transform: uppercase;
    }

    /* ── NAV ── */
    nav {
      background: var(--gd); display: flex; align-items: center;
      justify-content: space-between; padding: 0 40px; height: 90px;
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .logo-img-wrap { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; }
    .logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }

    .nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
    .nav-links a { color: #D1EBE0; font-size: 14px; font-weight: 600; transition: color .2s; padding: 6px 0;  border-bottom: 2px solid transparent;}
    .nav-links a:hover, .nav-links a.active { color: var(--ac); border-bottom: 2px solid var(--ac); }
    .nav-icons { display: flex; gap: 20px; align-items: center; }
    .nav-icons a { color: #D1EBE0; font-size: 22px; position: relative; transition: color .2s; display: flex; align-items: center; }
    .nav-icons a:hover { color: var(--ac); }
    .cbadge {
      position: absolute; top: -8px; right: -10px;
      background: var(--red); color: #fff; font-size: 11px;
      font-weight: 800; width: 19px; height: 19px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { width: 25px; height: 3px; background: white; transition: 0.3s; }

    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 75px; left: 0; width: 100%; background: var(--gd);
        padding: 20px; border-top: 1px solid #1a5c26;
      }
      .nav-links.active { display: flex; }
      .nav-links li { width: 100%; text-align: left; }
    }

    /* ── HERO HEADER ── */
    .contact-header {
      background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 100%);
      padding: 60px 40px 140px; text-align: center; color: #fff;
    }
    .contact-header h1 { font-size: 38px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
    .contact-header p { font-size: 16px; color: #BCE2CE; margin-top: 8px; }

    /* ── CONTACT & FORM SECTION ── */
    .main-wrapper { max-width: 1200px; margin: -100px auto 60px; padding: 0 20px; position: relative; z-index: 10; }
    
    .grid-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
    
    /* Left Side: Cards */
    .info-column { display: flex; flex-direction: column; gap: 20px; }
    .info-card {
      background: #fff; border: 1px solid rgba(13,62,38,0.06);
      border-radius: 20px; padding: 26px; display: flex; align-items: center; gap: 20px;
      box-shadow: 0 10px 30px rgba(13,62,38,0.04); transition: all 0.3s;
    }
    .info-card:hover { border-color: var(--gl); transform: translateX(5px); }
    .icon-circle {
      width: 54px; height: 54px; background: var(--gp); border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gl); font-size: 22px; flex-shrink: 0;
    }
    .info-details h4 { font-size: 13px; color: var(--tl); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
    .info-details p { font-size: 16px; font-weight: 700; color: var(--gd); }

    /* Right Side: Smart Form */
    .form-box {
      background: #fff; padding: 40px; border-radius: 24px;
      box-shadow: 0 15px 45px rgba(13,62,38,0.07);
      border: 1px solid rgba(13,62,38,0.05);
    }
    .form-box h3 { font-size: 22px; font-weight: 800; color: var(--gd); margin-bottom: 6px; }
    .form-box p { font-size: 14px; color: var(--tl); margin-bottom: 24px; }
    
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: span 2; }
    .form-group label { font-size: 13px; font-weight: 700; color: var(--tm); }
    .form-group input, .form-group select, .form-group textarea {
      background: var(--gp); border: 1px solid transparent; border-radius: 10px;
      padding: 12px 16px; font-family: inherit; font-size: 14px; color: var(--td);
      outline: none; transition: all 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      background: #fff; border-color: var(--gl); box-shadow: 0 0 0 4px rgba(27,106,67,0.1);
    }
    
    .btn-submit {
      width: 100%; background: var(--ac); color: var(--gd); border: none;
      border-radius: 10px; padding: 14px; font-size: 14px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s;
      margin-top: 10px;
    }
    .btn-submit:hover { background: var(--ach); transform: translateY(-2px); }

    /* ── NEW FLOATING BOX FAQ DESIGN ── */
    .faq-container { max-width: 1000px; margin: 100px auto 40px; padding: 0 20px; }
    .faq-title-area { text-align: center; margin-bottom: 50px; }
    .faq-title-area h2 { font-size: 32px; font-weight: 800; color: var(--gd); }
    .deco-sprout { width: 45px; margin-top: 8px; opacity: 0.8; }

    /* Premium Block-Grid Layout */
    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    
    .faq-card {
      background: #fff; border: 1px solid rgba(13,62,38,0.06); border-radius: 18px;
      box-shadow: 0 8px 25px rgba(13,62,38,0.03); transition: all 0.3s ease;
      overflow: hidden; height: fit-content;
    }
    .faq-trigger {
      padding: 22px 24px; display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; font-weight: 700; font-size: 15px; color: var(--gd); user-select: none;
    }
    .faq-icon-box {
      width: 28px; height: 28px; background: var(--gp); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; color: var(--gl);
      font-size: 11px; transition: transform 0.3s;
    }
    
    .faq-content {
      max-height: 0; overflow: hidden; transition: all 0.3s cubic-bezier(0, 1, 0, 1);
      padding: 0 24px; color: var(--tm); font-size: 14px;
    }
    .faq-content p { padding-bottom: 20px; line-height: 1.6; }

    /* Elegant Active State Transforms */
    .faq-card.active { border-color: var(--gl); background: #fff; box-shadow: 0 12px 35px rgba(13,62,38,0.09); }
    .faq-card.active .faq-trigger { color: var(--gl); }
    .faq-card.active .faq-icon-box { background: var(--gl); color: #fff; transform: rotate(180deg); }
    .faq-card.active .faq-content { max-height: 300px; }

        footer { background: #062013; padding: 60px 40px 0; color: #A4C7B5; }
    .ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .ft-brand p { font-size: 14px; line-height: 1.7; max-width: 250px; margin-top: 14px; }
    footer h5 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a { font-size: 14px; color: #A4C7B5; transition: color .2s; }
    footer ul li a:hover { color: var(--ac); }

    .nl-row { display: flex; margin-top: 12px; }
    .nl-row input {
      flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
      border-right: none; color: #fff; padding: 12px 16px;
      border-radius: 8px 0 0 8px; font-size: 14px; outline: none;
    }
    .nl-row input::placeholder { color: rgba(255,255,255,0.3); }
    .nl-row button {
      background: var(--ac); color: var(--gd); border: none; padding: 0 22px;
      border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; transition: background .2s;
    }
    .nl-row button:hover { background: var(--ach); }

    .pay-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
    .pchip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #C2DEC2; font-weight: 600; }
     .social-row{
      display:flex;
      gap:15px;
      align-items:center;
    }
    .soc-a img{
      width:20px;
      height:20px;
      object-fit:contain;
      transition:0.3s;
      
    }
    .soc-a:hover img{
      transform:scale(1.15);
    }

    .ft-bottom {
      border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .ft-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .ft-tagline { font-size: 14px; font-weight: 700; color: #A4C7B5; font-style: italic; }

    /* ── FOOTER LOGO ── */
    .ft-brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
    .ft-logo-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; }
    .ft-brand-head h5 { margin-bottom: 0; font-size: 15px; letter-spacing: 1px; }

    @media (max-width: 1024px) {
  /* Navbar adjustments */
  nav { padding: 0 20px; }
  
  /* Main grid adjustments */
  .grid-split { grid-template-columns: 1fr; gap: 30px; }
  
  /* Footer grid */
  .ft-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  /* Header font size */
  .contact-header h1 { font-size: 28px; }
  
  /* Form box padding */
  .form-box { padding: 25px; }
  
  /* FAQ grid to single column */
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Full width adjustments */
  .nav-links { display: none; } /* Consider adding a mobile menu icon/hamburger here */
  
  .form-grid { grid-template-columns: 1fr; }
  
  .ft-grid { grid-template-columns: 1fr; text-align: center; }
  .social-row { justify-content: center; }
  
  .ft-bottom { flex-direction: column; text-align: center; }
}

    /* ←←←←←←←←←←←←←← ANIMATIONS & MICRO-INTERACTIONS ←←←←←←←←←←←←←← */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    .contact-header h1, .contact-header p { animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) both; }
    .contact-header p { animation-delay: .1s; }

    .nav-links a { position: relative; }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
      background: var(--ac); transition: width .3s cubic-bezier(.16,1,.3,1);
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

    .icon-circle { transition: transform .3s ease, background .3s ease; }
    .info-card:hover .icon-circle { transform: rotate(-8deg) scale(1.1); background: var(--ac); color: var(--gd); }

    .btn-submit:active { transform: scale(0.96); }

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    }
  
    /* ── DROPDOWN MENU ── */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
    .nav-dropdown > a::after { content: '' !important; display: inline-block !important; 
      position: static !important; width: 0 !important; height: 0 !important;
      border-left: 4px solid transparent !important; border-right: 4px solid transparent !important;
      border-top: 5px solid #D1EBE0 !important; border-bottom: none !important;
      background: none !important; margin-left: 2px !important; bottom: auto !important; left: auto !important;
      transition: transform .2s !important; vertical-align: middle !important; }
    .nav-dropdown:hover > a::after, .nav-dropdown.open > a::after { transform: rotate(180deg); border-top-color: var(--ac); }
    .nav-dropdown > a.active-parent { color: var(--ac) !important; }
    .dropdown-menu {
      display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
      background: #1a5c26; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
      padding: 8px 0; min-width: 180px; z-index: 200;
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    .nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li { list-style: none; }
    .dropdown-menu li a {
      display: block; padding: 10px 18px; color: #D1EBE0 !important; font-size: 13px;
      font-weight: 600; white-space: nowrap; transition: background .18s, color .18s;
      border-bottom: none !important;
    }
    .dropdown-menu li a::after { display: none !important; }
    .dropdown-menu li a:hover, .dropdown-menu li a.active { background: rgba(250,184,24,0.12); color: var(--ac) !important; }
    /* Mobile dropdown */
    @media (max-width: 900px) {
      .dropdown-menu { position: static; transform: none; background: rgba(255,255,255,0.07);
        box-shadow: none; border: none; border-radius: 0; padding: 0; min-width: unset; display: none; }
      .nav-dropdown.open .dropdown-menu { display: block; }
    }

  
    /* ←←←←←←←← PRODUCT DETAIL MODAL ←←←←←←←← */
    .prod-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(5,20,12,0.72); backdrop-filter: blur(6px);
      justify-content: center; align-items: center; padding: 20px;
    }
    .prod-modal-overlay.open { display: flex; animation: fadeInOverlay .25s ease; }
    @keyframes fadeInOverlay { from { opacity:0; } to { opacity:1; } }
    .prod-modal {
      background: #fff; border-radius: 20px; max-width: 880px; width: 100%;
      max-height: 90vh; overflow-y: auto; display: grid;
      grid-template-columns: 1fr 1fr; gap: 0; position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      animation: slideUpModal .35s cubic-bezier(.16,1,.3,1);
    }
    @keyframes slideUpModal { from { opacity:0; transform: translateY(40px) scale(.96); } to { opacity:1; transform: none; } }
    .modal-img-wrap {
      background: linear-gradient(135deg,#f0faf4,#e8f5ee);
      border-radius: 20px 0 0 20px; display: flex;
      align-items: center; justify-content: center; padding: 30px;
      overflow: hidden; position: relative; min-height: 340px;
    }
    .modal-img-wrap img {
      width: 100%; max-height: 340px; object-fit: contain;
      transition: transform .5s cubic-bezier(.16,1,.3,1);
    }
    .modal-img-wrap:hover img { transform: scale(1.08); }
    .modal-body { padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; }
    .modal-badge {
      display: inline-block; background: var(--red); color: #fff;
      font-size: 11px; font-weight: 800; padding: 4px 12px;
      border-radius: 20px; letter-spacing: 0.5px; width: fit-content;
    }
    .modal-badge.gold { background: var(--ac); color: var(--gd); }
    .modal-title { font-size: 22px; font-weight: 900; color: var(--gd); line-height: 1.3; }
    .modal-weight { font-size: 12px; font-weight: 700; color: var(--tl); text-transform: uppercase; letter-spacing: 1px; }
    .modal-stars { color: var(--ac); font-size: 16px; }
    .modal-desc { font-size: 14px; color: var(--tm); line-height: 1.7; }
    .modal-price { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
    .modal-price .mpn { font-size: 28px; font-weight: 900; color: var(--gd); }
    .modal-price .mpw { font-size: 15px; color: var(--tl); text-decoration: line-through; }
    .modal-price .msave { font-size: 13px; font-weight: 800; color: #27ae60; background: #eafaf1; padding: 3px 10px; border-radius: 20px; }

    /* ── QTY + ADD ── */
    .modal-cart-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
    .qty-box {
      display: flex; align-items: center; border: 2px solid var(--gl);
      border-radius: 10px; overflow: hidden;
    }
    .qty-btn {
      background: var(--gd); color: #fff; border: none; width: 38px; height: 42px;
      font-size: 20px; font-weight: 700; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .qty-btn:hover { background: var(--gl); }
    .qty-num {
      width: 46px; text-align: center; font-size: 16px; font-weight: 800;
      color: var(--gd); border: none; outline: none; background: #fff;
    }
    .modal-add-btn {
      flex: 1; background: var(--ac); color: var(--gd); border: none;
      border-radius: 10px; padding: 12px 20px; font-size: 14px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; letter-spacing: .5px;
      transition: all .2s; min-width: 140px;
    }
    .modal-add-btn:hover { background: var(--ach); transform: translateY(-1px); }
    .modal-add-btn.added { background: #27ae60; color: #fff; }

    .modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
    .modal-tag {
      font-size: 12px; font-weight: 700; padding: 4px 12px;
      border-radius: 20px; background: var(--gp); color: var(--tm);
    }
    .modal-close {
      position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
      background: rgba(0,0,0,0.1); border: none; border-radius: 50%;
      font-size: 18px; cursor: pointer; display: flex; align-items: center;
      justify-content: center; color: #555; transition: all .2s; z-index: 10;
    }
    .modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }

    @media (max-width: 680px) {
      .prod-modal { grid-template-columns: 1fr; }
      .modal-img-wrap { border-radius: 20px 20px 0 0; min-height: 220px; }
      .modal-body { padding: 24px 20px; }
      .modal-title { font-size: 18px; }
    }

    /* ←←←←←←←← CARD IMAGE ZOOM (cursor follow) ←←←←←←←← */
    .prod-card { cursor: pointer; }
    .prod-img-wrap {
      overflow: hidden; border-radius: 12px; margin-bottom: 14px;
      position: relative; background: #f9f9f9;
    }
    .prod-img-wrap img {
      width: 100%; height: 210px; object-fit: contain; display: block;
      transition: transform .5s cubic-bezier(.16,1,.3,1), filter .4s;
      padding: 10px;
    }
    .prod-card:hover .prod-img-wrap img {
      transform: scale(1.12);
      filter: brightness(1.04);
    }

    /* ←←←←←←←← INLINE CART QTY (cards) ←←←←←←←← */
    .card-qty-row {
      display: flex; align-items: center; gap: 8px; margin-top: 8px;
      animation: fadeInUp .3s ease;
    }
    .cqty-box { display: flex; align-items: center; border: 2px solid var(--gl); border-radius: 8px; overflow: hidden; }
    .cqty-btn {
      background: var(--gd); color: #fff; border: none;
      width: 32px; height: 36px; font-size: 18px; font-weight: 700;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .cqty-btn:hover { background: var(--gl); }
    .cqty-num { width: 36px; text-align: center; font-size: 14px; font-weight: 800; color: var(--gd); border: none; outline: none; background: #fff; }
    .cqty-add {
      flex: 1; background: #27ae60; color: #fff; border: none; border-radius: 8px;
      padding: 8px 10px; font-size: 12px; font-weight: 800; cursor: pointer;
      text-transform: uppercase; letter-spacing: .3px; transition: all .2s;
    }
    .cqty-add:hover { background: #219150; }

    /* ←←←←←←←← DROPDOWN FIX ─ make items clickable ←←←←←←←← */
    .nav-dropdown > a[href="#"] { pointer-events: auto; }
    .dropdown-menu li a { pointer-events: auto !important; }
