 /* ── CSS Variables ── */
    :root {
      --bb-green-dark:   #1a4f2a;
      --bb-green-mid:    #2e7d45;
      --bb-green-btn:    #194E20;
      --bb-green-hover:  #1e6131;
      --bb-text-body:    #3d3d3d;
      --bb-text-light:   #5a5a5a;
      --bb-bg:           #ffffff;
      --bb-nav-link:     #2c2c2c;
      --bb-font-display: 'Poppins',sans-serif;
      --bb-font-body:    'Poppins',sans-serif;
      --bb-radius-btn:   6px;
      --bb-shadow-card:  0 8px 32px rgba(30,80,40,.10);
    }

    /* ── Reset / Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--bb-font-body);
      color: var(--bb-text-body);
      background: var(--bb-bg);
      -webkit-font-smoothing: antialiased;
    }

    .bb-preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      transition: opacity 0.32s ease, visibility 0.32s ease;
    }

    .bb-preloader--hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .bb-preloader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      animation: bb-preloader-bounce 1.7s ease-in-out infinite;
    }

    .bb-preloader-logo {
      width: 160px;
      max-width: 70%;
      height: auto;
      object-fit: contain;
      animation: bb-logo-pop 1.6s ease-in-out infinite;
    }

    .bb-preloader-ring {
      width: 76px;
      height: 76px;
      border: 4px solid rgba(26, 79, 42, 0.14);
      border-top-color: #1a4f2a;
      border-radius: 50%;
      animation: bb-ring-spin 0.95s linear infinite;
    }

    @keyframes bb-ring-spin {
      to { transform: rotate(360deg); }
    }

    @keyframes bb-logo-pop {
      0%, 100% { transform: none; }
      50% { transform: none; }
    }

    @keyframes bb-preloader-bounce {
      0%, 100% { transform: none; }
      50% { transform: none; }
    }

    .bb-motion-section {
      position: relative;
      will-change: transform, opacity;
      transform-origin: center center;
      transition: filter 0.45s ease;
    }

    .bb-motion-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 18%, rgba(255,255,255,0.18), transparent 52%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .bb-motion-section.bb-motion-active::before {
      opacity: 1;
    }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    .bb-navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0;
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(219,232,213,.85);
      box-shadow: none;
      backdrop-filter: blur(18px);
    }

    .bb-navbar.bb-navbar-scrolled {
      background: rgba(255,255,255,.94);
      border-bottom-color: rgba(219,232,213,.95);
      box-shadow: 0 10px 28px rgba(5,46,22,.10);
    }

    .bb-navbar > .container {
      min-height: 82px;
      gap: 24px;
    }

    .bb-navbar .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #0f5b2a;
      font-weight: 950;
      line-height: .92;
      letter-spacing: -.04em;
      text-decoration: none;
    }

    .bb-logo-icon {
      width: 132px;
      height: auto;
      max-height: 54px;
      object-fit: contain;
    }

    .bb-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--bb-font-body);
      font-size: 14px;
      font-weight: 800;
      color: #1f2a21 !important;
      padding: .5rem .85rem !important;
      text-decoration: none;
      white-space: nowrap;
      transition: color .2s ease, transform .2s ease;
    }

    .bb-nav-link::after {
      display: none;
    }

    .bb-nav-link:hover,
    .bb-nav-link.active {
      color: #137236 !important;
      transform: translateY(-1px);
    }

    .bb-btn-contact-nav {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      background: #0f5b2a;
      color: #fff !important;
      font-family: var(--bb-font-body);
      font-weight: 900;
      font-size: 14px;
      border: 0;
      border-radius: 14px;
      padding: 13px 19px !important;
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
      white-space: nowrap;
      text-decoration: none;
      box-shadow: none;
    }

    .bb-btn-contact-nav:hover,
    .bb-btn-contact-nav.active {
      background: #137236 !important;
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(19,114,54,.20);
    }

    .bb-btn-contact-nav::after {
      display: none !important;
    }

    .bb-cart-icon,
    .bb-wishlist-icon {
      position: relative;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #eef8e8;
      color: #0f5b2a;
      text-decoration: none;
      transition: background .2s ease, transform .2s ease;
    }

    .bb-cart-icon:hover,
    .bb-wishlist-icon:hover {
      background: #e0f2d8;
      transform: translateY(-1px);
    }

    .navbar-toggler {
      width: 46px;
      height: 46px;
      padding: 0;
      border: 0;
      border-radius: 12px;
      background: #eef8e8;
      color: #0f5b2a;
      box-shadow: none !important;
    }

    .navbar-toggler-icon {
      width: 1.3em;
      height: 1.3em;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f5b2a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    @media (min-width: 992px) {
      .bb-navbar .navbar-collapse {
        justify-content: flex-end;
      }

      .bb-navbar .navbar-nav {
        gap: 6px;
      }
    }

    @media (max-width: 991.98px) {
      .bb-navbar > .container {
        min-height: 72px;
        position: relative;
      }

      .bb-logo-icon {
        width: 118px;
        max-height: 48px;
      }

      .bb-navbar .navbar-collapse {
        position: absolute;
        left: 12px;
        right: 12px;
        top: 82px;
        z-index: 1001;
        background: #fff;
        border: 1px solid #dbe8d5;
        border-radius: 22px;
        padding: 10px;
        box-shadow: 0 18px 45px rgba(5,46,22,.14);
      }

      .bb-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 0;
        padding: 0 !important;
      }

      .bb-navbar .nav-item {
        width: 100%;
      }

      .bb-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 14px !important;
        border-bottom: 1px solid #eef3eb;
        font-size: 14px;
      }

      .bb-btn-contact-nav {
        width: 100%;
        margin-top: 8px;
      }
    }

    .wrap {
      width: min(1380px, calc(100% - 44px));
      margin: auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(219,232,213,.85);
      backdrop-filter: blur(18px);
      font-family: 'DM Sans', sans-serif;
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
      color: #0f5b2a;
      line-height: .92;
      font-size: 26px;
      letter-spacing: 0;
      text-decoration: none;
    }

    .logo img {
      width: 132px;
      height: auto;
      max-height: 54px;
      object-fit: contain;
      display: block;
    }

    .links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-weight: 800;
      font-size: 14px;
    }

    .links a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #1f2a21;
      text-decoration: none;
      white-space: nowrap;
      transition: color .2s ease, transform .2s ease;
    }

    .links a:hover {
      color: #137236;
      transform: translateY(-1px);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .login {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 900;
      color: #1f2a21;
      text-decoration: none;
    }

    .register {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 19px;
      border-radius: 14px;
      background: #0f5b2a;
      color: #fff;
      font-weight: 900;
      text-decoration: none;
    }

    .register:hover {
      color: #fff;
    }

    .hamb {
      display: none;
      border: 0;
      background: #eef8e8;
      color: #0f5b2a;
      border-radius: 12px;
      padding: 12px;
      font-size: 22px;
    }

    .mobile-panel {
      display: none;
    }

    @media (max-width: 1050px) {
      .links,
      .nav-actions {
        display: none;
      }

      .hamb {
        display: block;
      }

      .mobile-panel.open {
        display: block;
        position: fixed;
        left: 18px;
        right: 18px;
        top: 92px;
        background: #fff;
        border: 1px solid #dbe8d5;
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 18px 45px rgba(5,46,22,.14);
        z-index: 60;
      }

      .mobile-panel a,
      .mobile-panel button {
        display: block;
        width: 100%;
        padding: 14px;
        border: 0;
        border-bottom: 1px solid #eef3eb;
        background: transparent;
        color: #1f2a21;
        font-size: 14px;
        font-weight: 900;
        text-align: left;
        text-decoration: none;
      }

      .mobile-panel .register {
        margin-top: 8px;
        border-bottom: 0;
        color: #fff;
        text-align: center;
      }
    }

    @media (max-width: 700px) {
      .wrap {
        width: min(100% - 28px, 1380px);
      }

      .nav {
        height: 72px;
      }

      .logo {
        font-size: 21px;
      }

      .mobile-panel {
        top: 80px;
      }
    }

    .bb-main-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      min-width: 18px;
      height: 18px;
      padding: 0 4px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #2d7a45;
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      line-height: 1;
    }

    .bb-main-badge--danger {
      background: #e74c3c;
    }

    .bb-main-account-menu {
      border: 1px solid #dbe8d5;
      border-radius: 16px;
      padding: 10px;
      box-shadow: 0 18px 45px rgba(5,46,22,.14);
    }

    .bb-main-account-menu .dropdown-item {
      border-radius: 10px;
      padding: 9px 14px;
      color: #21422b;
      font-weight: 700;
    }

    .bb-main-account-menu .dropdown-item:hover {
      background: #f4faf0;
      color: #0f5b2a;
    }

    /* ══════════════════════════════
       HERO SECTION
    ══════════════════════════════ */
    .bb-hero-section {
      min-height: calc(100vh - 64px);
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    /* Subtle leaf-texture background on left half */
    .bb-hero-section::before {
      content: '';
      position: absolute;
      top: -80px; left: -80px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(46,125,69,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Left / Text Column ── */
    .bb-hero-text-col {
      padding: 60px 40px 60px 0;
    }



    .bb-hero-headline {
      font-family: var(--bb-font-display);
      font-size: 38px;
      font-weight: 700;
      color: #111;
      line-height: 1.18;
      letter-spacing: -.5px;
      margin-bottom: 1.2rem;
    }

    .bb-split-word {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
    }

    .bb-split-word-inner {
      display: inline-block;
      will-change: transform, opacity;
    }

    .bb-hero-headline span { color: var(--bb-green-mid); }

    .bb-hero-desc {
      font-size: 16px;
      font-family: var(--bb-font-display);
      font-weight: 400;
      color: var(--bb-text-light);
      line-height: 1.75;
      max-width: 430px;
      margin-bottom: .9rem;
    }
    .bb-hero-desc + .bb-hero-desc { margin-bottom: 2rem; }

    /* CTA buttons */
    .bb-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .bb-btn-primary-cta {
      background: var(--bb-green-btn);
      color: #fff;
      font-family: var(--bb-font-body);
      font-weight: 400;
      font-size: 14px;
      border: 2px solid var(--bb-green-btn);
      border-radius: var(--bb-radius-btn);
      padding: .75rem 1.7rem;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(42,125,63,.25);
    }
    .bb-btn-primary-cta:hover {
      background: var(--bb-green-hover);
      border-color: var(--bb-green-hover);
      box-shadow: 0 6px 20px rgba(42,125,63,.35);
      color: #fff;
    }

    .bb-btn-outline-cta {
      background: transparent;
      color: var(--bb-green-dark);
      font-family: var(--bb-font-body);
      font-weight: 400;
      font-size: 14px;
      border: 2px solid var(--bb-green-dark);
      border-radius: var(--bb-radius-btn);
      padding: .75rem 1.6rem;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background .2s, color .2s, transform .15s;
      will-change: transform;
    }
    .bb-btn-outline-cta:hover {
      background: var(--bb-green-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ── Right / Image Column ── */
    .bb-hero-img-col {
      padding: 40px 0 40px 20px;
    }

    .bb-hero-img-col .position-relative {
      height: 100%;
    }

    .bb-hero-img-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--bb-shadow-card);
      width: 100%;
      height: 100%;
      background-color: #eef5ee;
    }

    .bb-hero-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .6s ease;
    }
    .bb-hero-img-wrapper:hover img { transform: none; }

    
    

    /* Decorative dot grid */
    .bb-dot-grid {
      position: absolute;
      top: -20px; right: -20px;
      width: 120px; height: 120px;
      background-image: radial-gradient(circle, rgba(46,125,69,.3) 1.5px, transparent 1.5px);
      background-size: 16px 16px;
      pointer-events: none;
      z-index: -1;
    }

    /* ══════════════════════════════
       RESPONSIVE OVERRIDES
    ══════════════════════════════ */
    @media (max-width: 991.98px) {
      .bb-hero-section { min-height: auto; padding: 40px 0; }
      .bb-hero-text-col { padding: 50px !important; text-align: center; }
      .bb-hero-desc { max-width: 100%; }
      .bb-cta-group { justify-content: center; }
      .bb-hero-img-col { padding: 0; }
      .bb-hero-img-wrapper {
        min-height: 340px;
      }
    }

    @media (max-width: 575.98px) {
      .bb-hero-headline { font-size: 1.8rem; }
      .bb-btn-primary-cta, .bb-btn-outline-cta { width: 100%; justify-content: center; }
      .bb-hero-badge { bottom: 12px; left: 12px; padding: 10px 14px; }
    }

    /* second section */

       .bb-section-wrapper {
      padding: 80px 0 90px;
      background: #f0f7f2;
    }

    .bb-section-heading {
      font-family: var(--bb-font-display);
      font-size: 32px;
      font-weight: 700;
      color: #1a2e22;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .bb-heading-underline {
      display: block;
      width: 52px;
      height: 4px;
      background: #3a9c60;
      border-radius: 4px;
      margin: 0 auto 52px;
    }

    .bb-feature-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 36px 28px 32px;
      box-shadow: 0 4px 24px rgba(26, 92, 56, 0.08);
      height: 100%;
      transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(26, 92, 56, 0.06);
      position: relative;
      overflow: hidden;
    }

    .bb-feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3a9c60, #1a5c38);
      opacity: 0;
      transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bb-feature-card:hover {
      transform: none;
      box-shadow: 0 4px 24px rgba(26, 92, 56, 0.08);
    }

    .bb-feature-card:hover::before {
      opacity: 1;
    }

    .bb-icon-badge {
      width: 52px;
      height: 52px;
      border-radius: 30px;
          background: var(--bb-green-btn);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                  transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bb-feature-card:hover .bb-icon-badge {
      background: #3a9c60;
      transform: rotate(-3deg);
    }

    .bb-icon-badge svg {
      width: 26px;
      height: 26px;
      fill: #ffffff;
    }

    .bb-card-title {
      font-family: var(--bb-font-display);
      font-size: 18px;
      font-weight: 500;
      color: #1a2e22;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .bb-card-desc {
       font-family: var(--bb-font-display);
      font-size: 12px;
      font-weight: 400;
      color: #5a7566;
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 767.98px) {
      .bb-section-wrapper {
        padding: 56px 0 64px;
      }
      .bb-feature-card {
        padding: 28px 22px 24px;
      }
      .bb-heading-underline {
        margin-bottom: 36px;
      }
    }

    @media (max-width: 575.98px) {
      .bb-section-heading {
        font-size: 1.6rem;
      }
    }


    /* section 3 */
     /* ========== SECTION WRAPPER ========== */
    .section-what-we-do {
      font-family: 'DM Sans', sans-serif;
      background-color: #ffffff;
      padding: 90px 0 80px;
      overflow: hidden;
      position: relative;
    }

    .section-what-we-do::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -100px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(76,175,80,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ========== CONTENT COLUMN ========== */
    .wwd-content {
      padding-right: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* ========== HEADING ========== */
    .wwd-heading {
     font-family: var(--bb-font-display);
      font-size: 32px;
      font-weight: 700;
      color: #1c1c1c;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .wwd-heading::after {
      content: '';
      display: block;
      width: 52px;
      height: 4px;
      background: linear-gradient(90deg, #4caf50, #2d6a2d);
      border-radius: 2px;
      margin-top: 14px;
    }

    /* ========== DESCRIPTION ========== */
    .wwd-desc {
      font-family: var(--bb-font-display);
      font-size: 16px;
      font-weight: 400;
      color: #555f6e;
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 460px;
    }

    /* ========== SOLUTIONS LABEL ========== */
    .wwd-solutions-label {
      font-size: 22px;
      font-family: var(--bb-font-display);
      font-weight: 700;
      color: #2d6a2d;
      margin-bottom: 18px;
    }

    /* ========== CROP ITEMS GRID ========== */
    .wwd-crops-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 20px;
    }

    .wwd-crop-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-family: var(--bb-font-display);
      font-weight: 500;
      color: #1c1c1c;
      padding: 11px 14px;
      border-radius: 10px;
      background: #e8f5e9;
      border: 1px solid rgba(76,175,80,0.2);
      transition: all 0.35s ease;
      cursor: default;
    }

    .wwd-crop-item:hover {
      background: #4caf50;
      color: #ffffff;
      border-color: #4caf50;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(76,175,80,0.28);
    }

    .wwd-crop-item:hover .crop-icon {
      filter: brightness(0) invert(1);
    }

    .crop-icon {
      font-size: 1.15rem;
      line-height: 1;
      transition: all 0.35s ease;
    }

    /* ========== IMAGE COLUMN ========== */
    .wwd-image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(45,106,45,0.13);
      height: 100%;
      min-height: 340px;
      background:
        radial-gradient(circle at top left, rgba(76, 175, 80, 0.14), transparent 42%),
        linear-gradient(180deg, #f8fbf7 0%, #edf6ef 100%);
      padding: 20px;
    }

    .wwd-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      transition: transform 0.6s ease;
    }

    .wwd-image-wrapper:hover img {
      transform: none;
    }

   
    /* Rotating dashed ring decoration */
  

    @keyframes rotateDot {
      to { transform: rotate(360deg); }
    }

    /* ========== FADE-UP ANIMATION ========== */
    .fade-up {
      opacity: 1;
      transform: none;
      animation: none;
    }

    .fade-up-1 { animation-delay: 0.1s; }
    .fade-up-2 { animation-delay: 0.22s; }
    .fade-up-3 { animation-delay: 0.34s; }
    .fade-up-4 { animation-delay: 0.46s; }
    .fade-up-5 { animation-delay: 0.58s; }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========== RESPONSIVE TABLET ========== */
    @media (max-width: 991.98px) {
      .section-what-we-do {
        padding: 60px 0;
      }
      .wwd-content {
        padding-right: 0;
        margin-bottom: 36px;
      }
      .wwd-heading {
        font-size: 2rem;
      }
      .wwd-image-wrapper {
        min-height: 280px;
        padding: 16px;
      }
    }

    /* ========== RESPONSIVE MOBILE ========== */
    @media (max-width: 575.98px) {
      .wwd-crops-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .wwd-heading {
        font-size: 1.7rem;
      }
      .wwd-image-wrapper {
        min-height: 230px;
        padding: 12px;
      }
    }
/* fourth */

    /* ========== SECTION WRAPPER ========== */
    .section-who-we-serve {
font-family: var(--bb-font-display);   
   background-color: #eef5ee;
      padding: 80px 0 90px;
      position: relative;
      overflow: hidden;
    }

    /* subtle circle bg deco top-right */
    .section-who-we-serve::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(45,106,45,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ========== SECTION TITLE ========== */
    .wws-title {
      font-family: var(--bb-font-display);
      font-size: 32px;
      font-weight: 700;
      color: #1c1c1c;
      text-align: center;
      margin-bottom: 0;
      line-height: 1.2;
    }

    /* Underline bar */
    .wws-underline {
      display: block;
      width: 56px;
      height: 4px;
      background-color: #2d6a2d;
      border-radius: 3px;
      margin: 14px auto 56px auto;
    }

    /* ========== CARDS ROW ========== */
    .wws-cards-row {
      display: flex;
      flex-wrap: wrap;
   
      justify-content: space-between;
    }

    /* ========== SINGLE CARD ========== */
    .wws-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 36px 24px 30px;
      text-align: center;
      flex: 1 1 180px;
      max-width: 210px;
      box-shadow: 0 4px 24px rgba(45,106,45,0.09);
      border: 1px solid rgba(45,106,45,0.08);
      transition: box-shadow 0.32s ease;
      cursor: default;
    }

    .wws-card:hover {
      transform: none;
      box-shadow: 0 4px 24px rgba(45,106,45,0.09);
    }

    /* ========== ICON CIRCLE ========== */
    .wws-icon-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background-color: #194E20;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px auto;
      transition: background-color 0.32s ease;
    }

    .wws-card:hover .wws-icon-circle {
      background-color: #2d6a2d;
    }

    .wws-icon-circle i {
      font-size: 1.5rem;
      color: #ffffff;
    }

    /* ========== CARD LABEL ========== */
    .wws-card-label {
      font-family: var(--bb-font-display);
      font-size: 16px;
      font-weight: 400;
      color: #3a3a3a;
      line-height: 1.55;
      margin: 0;
    }

    /* ========== FADE-UP ANIMATION ========== */
    .fade-up {
      opacity: 1;
      transform: none;
      animation: none;
    }

    .fu-1 { animation-delay: 0.08s; }
    .fu-2 { animation-delay: 0.18s; }
    .fu-3 { animation-delay: 0.28s; }
    .fu-4 { animation-delay: 0.38s; }
    .fu-5 { animation-delay: 0.48s; }
    .fu-6 { animation-delay: 0.58s; }
    .fu-7 { animation-delay: 0.68s; }

    @keyframes fadeUpAnim {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========== RESPONSIVE TABLET ========== */
    @media (max-width: 991.98px) {
      .section-who-we-serve {
        padding: 60px 0 70px;
      }
      .wws-title {
        font-size: 2rem;
      }
      .wws-card {
        flex: 1 1 155px;
        max-width: 190px;
        padding: 28px 18px 24px;
      }
    }

    /* ========== RESPONSIVE MOBILE ========== */
    @media (max-width: 575.98px) {
      .wws-title {
        font-size: 1.7rem;
      }
      .wws-cards-row {
        display: block;
      }
      .wws-card {
        flex: 1 1 140px;
        max-width: 100%;
        margin-bottom: 23px;
        padding: 24px 14px 20px;
      }
      .wws-icon-circle {
        width: 58px;
        height: 58px;
      }
      .wws-icon-circle i {
        font-size: 1.25rem;
      }
      .wws-card-label {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 399.98px) {
      .wws-card {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
    /* last footer */
    /* ========== KEY HIGHLIGHTS SECTION ========== */
    .section-key-highlights {
      font-family: --var(--bb-font-display);
      background-color: #ffffff;
      padding: 80px 0 90px;
      text-align: center;
    }

    .kh-title {
     font-family: --var(--bb-font-display);
      font-size: 32px;
      font-weight: 700;
      color: #1c1c1c;
      margin-bottom: 10px;
    }

    .kh-subtitle {
      font-size: 18px;
       font-family: --var(--bb-font-display);
      color: #6b7280;
      font-weight: 500;
      margin-bottom: 60px;
    }

    /* ========== CARDS ROW ========== */
    .kh-cards-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    /* ========== SINGLE CARD ========== */
    .kh-card {
      flex: 1 1 200px;
      max-width: 240px;
      text-align: center;
      padding: 10px 16px;
      transition: none;
      cursor: default;
    }

    .kh-card:hover {
      transform: none;
    }

    /* ========== ICON CIRCLE ========== */
    .kh-icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #2d6a2d;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px auto;
      transition: background-color 0.3s ease;
    }

    .kh-card:hover .kh-icon-circle {
      background-color: #1b4332;
    }

    .kh-icon-circle i {
      font-size: 1.7rem;
      color: #ffffff;
    }

    /* ========== CARD HEADING ========== */
    .kh-card-title {
      font-size: 18px;
      font-family: var(--bb-font-display);
      font-weight: 500;
      color: #1c1c1c;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    /* ========== CARD DESC ========== */
    .kh-card-desc {
      font-size: 16px;
        font-family: var(--bb-font-display);
      font-weight: 400;
      color: #6b7280;
      line-height: 1.65;
      margin: 0;
    }

    /* ========== FOOTER ========== */
    .footer {
      font-family: 'DM Sans', sans-serif;
      background: #063f1b;
      color: #fff;
      padding: 42px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(5, minmax(0, 1fr));
      gap: 28px;
    }

    .footer h4 {
      margin: 0 0 14px;
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .footer a,
    .footer p {
      display: block;
      color: #d5e8d2;
      margin: 0 0 10px;
      font-size: 14px;
      line-height: 1.5;
      text-decoration: none;
    }

    .footer a:hover {
      color: #fff;
    }

    .footer-contact {
      min-width: 220px;
    }

    .footer-contact__item {
      display: flex !important;
      align-items: flex-start;
      gap: 10px;
      color: #e8f6e4 !important;
      font-size: 15px;
      line-height: 1.45;
      margin: 0 0 12px;
      text-decoration: none;
    }

    .footer-contact__item span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .footer-contact__item:not(.footer-contact__item--address) {
      align-items: center;
      white-space: nowrap;
    }

    .footer-contact__icon {
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #b9efc1;
      font-size: 18px;
      line-height: 1;
      margin-top: 1px;
    }

    .footer-contact__item--address .footer-contact__icon {
      color: #ffffff;
      margin-top: 2px;
    }

    .footer-contact__item:hover {
      color: #fff !important;
    }

    .social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .social a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .24);
      color: #d5e8d2;
      display: grid;
      place-items: center;
      margin: 0;
      transition: border-color .2s ease, color .2s ease, transform .2s ease;
    }

    .social a:hover {
      border-color: rgba(255, 255, 255, .58);
      color: #fff;
      transform: translateY(-2px);
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, .16);
      margin-top: 28px;
      padding-top: 20px;
      text-align: center;
      color: #c9dfc5;
      font-size: 13px;
    }

    @media (max-width: 1050px) {
      .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .footer {
        padding: 36px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========== FADE-UP ANIMATION ========== */
    .fade-up {
      opacity: 1;
      transform: none;
      animation: none;
    }

    .fu-1 { animation-delay: 0.08s; }
    .fu-2 { animation-delay: 0.18s; }
    .fu-3 { animation-delay: 0.26s; }
    .fu-4 { animation-delay: 0.34s; }
    .fu-5 { animation-delay: 0.42s; }
    .fu-6 { animation-delay: 0.50s; }

    @keyframes fadeUpKH {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========== RESPONSIVE TABLET ========== */
    @media (max-width: 991.98px) {
      .section-key-highlights {
        padding: 60px 0 70px;
      }
      .kh-title {
        font-size: 2rem;
      }
      .kh-card {
        flex: 1 1 180px;
        max-width: 210px;
      }
    }

    /* ========== RESPONSIVE MOBILE ========== */
    @media (max-width: 575.98px) {
      .kh-title {
        font-size: 1.7rem;
      }
      .kh-cards-row {
        gap: 28px;
      }
      .kh-card {
        flex: 1 1 100%;
        max-width: 100%;
      }
      .footer-col-title {
        margin-top: 30px;
      }
    }

/* anant style */

.ourtec__hero-section {
  background-color: #2C89381A;
  height: 200px;
  display: flex;
  align-items: center;
}

.ourtec__hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.ourtec__hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 0;
}



.ppfm__section {
  background-color: #ffffff;
  padding: 60px 0;
  min-height: 612px;
  display: flex;
  align-items: center;
}

.ppfm__text-block {
  padding: 32px 40px;
  margin-bottom: 32px;
  text-align: center;
}

.ppfm__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 0px;
  text-align: center;
  color: #194E20;
  margin-bottom: 12px;
}

.ppfm__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 0;
}

.ppfm__green-card {
  background-color: #194E20;
  border-radius: 12px;
  padding: 48px 32px;
}

.ppfm__diagram-col {
  padding: 16px 12px;
}

.ppfm__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px auto;
}

.ppfm__col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 8px;
}

.ppfm__col-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 0;
}

.ppfm__arrow-col {
  padding: 16px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ppfm__arrow-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ppfm__arrow-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ppfm__arrow-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

/* ========================
   TECHNOLOGY PAGE
   SECTION 3: How PPFM Works
   Prefix: hpw__
======================== */

.hpw__section {
  background-color: #2C89381A;
  padding: 60px 0;
}

.hpw__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.hpw__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 20px 20px 20px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.hpw__icon-wrap {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.hpw__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hpw__card-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #194E20;
  margin-bottom: 0;
}

.hpw__step-block {
  padding: 0 8px;
}

.hpw__step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.hpw__step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #444444;
  margin-bottom: 0;
}

/* ========================
   TECHNOLOGY PAGE
   SECTION 4: How PPFM Helps Plants
   Prefix: hph__
======================== */

.hph__section {
  background-color: #ffffff;
  padding: 60px 0;
}

.hph__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #194E20;
  margin-bottom: 40px;
}

.hph__card {
  background-color: #194E20;
  border-radius: 12px;
  padding: 32px 20px;
  margin-bottom: 16px;
}

.hph__icon-wrap {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.hph__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hph__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 0;
}

.hph__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 0;
  padding: 0 8px;
}

/* ========================
   TECHNOLOGY PAGE
   SECTION 5: Application Methods
   Prefix: appm__
======================== */

.appm__section {
  background-color: #2C89381A;
  padding: 60px 0;
}

.appm__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #242424;
  margin-bottom: 8px;
}

.appm__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #242424;
  margin-bottom: 48px;
}

.appm__icon-wrap {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.appm__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.appm__col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  color: #194E20;
  margin-bottom: 12px;
}

.appm__col-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 24px;
}

.appm__info-box {
  border: 1.5px solid #194E20;
  border-radius: 8px;
  padding: 24px 28px;
}

.appm__info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #194E20;
  text-align: center;
  margin-bottom: 12px;
}

.appm__info-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  text-align: center;
  margin-bottom: 4px;
}

.appm__info-item:last-child {
  margin-bottom: 0;
}

/* ========================
   PRODUCTS PAGE
   SECTION 1: Hero
   Prefix: prodh__
======================== */

.prodh__section {
  background-color: #2C89381A;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.prodh__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #194E20;
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 20px;
}

.prodh__badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.prodh__badge-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}

.prodh__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.prodh__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1a1a1a;
  margin-bottom: 0;
}

/* ========================
   PRODUCTS PAGE
   SECTION 2: Available Now
   Prefix: avan__
======================== */

.avan__section {
  background-color: #ffffff;
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
}

.avan__section .container {
  width: 100%;
}

.avan__header {
  margin-bottom: 32px;
}

.avan__header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.avan__check {
  font-size: 18px;
  color: #194E20;
  font-weight: 700;
}

.avan__header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #194E20;
  margin-bottom: 0;
}

.avan__header-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.avan__card {
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

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

.avan__content {
  padding: 40px 36px;
}

.avan__product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #194E20;
  margin-bottom: 12px;
}

.avan__product-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.avan__features-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.avan__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.avan__feature-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avan__feature-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.avan__feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.avan__feature-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 0;
}

.avan__tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.avan__tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #1a1a1a;
  border: 1px solid #cccccc;
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
}

/* ========================
   PRODUCTS PAGE
   SECTION 3: Product Pipeline
   Prefix: ppip__
======================== */

.ppip__section {
  background-color: #2C89381A;
  min-height: 610px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.ppip__section .container {
  width: 100%;
}

.ppip__header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ppip__header-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ppip__header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.ppip__header-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.ppip__card {
  background-color: #194E20;
  border-radius: 12px;
  padding: 24px 24px 32px 24px;
  position: relative;
  height: 100%;
}

.ppip__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #1a1a1a;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 4px 14px;
}

.ppip__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.ppip__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ppip__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 12px;
}

.ppip__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 0;
}

/* ========================
   COLLABORATION PAGE
   SECTION 1: Hero
   Prefix: colh__
======================== */

.colh__section {
  background-color: #2C89381A;
  min-height: 329px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.colh__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.colh__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #242424;
  margin-bottom: 0;
}



/* ========================
   COLLABORATION PAGE
   SECTION 2: We Actively Collaborate With
   Prefix: wacw__
   (unique - no conflicts)
======================== */

.wacw__section {
  background-color: #ffffff;
  min-height: 842px;
  padding: 60px 0;
}

.wacw__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.wacw__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* Partner Type Cards */
.wacw__card {
  background-color: #194E20;
  border-radius: 12px;
  padding: 28px 16px;
  height: 100%;
}

.wacw__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.wacw__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.wacw__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.wacw__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 0;
}

/* Partner Logo Boxes */
.wacw__logo-box {
  background-color: #f2f2f2;
  border-radius: 8px;
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wacw__logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;


}

/* ========================
   COLLABORATION PAGE
   SECTION 3: Collaboration Areas
   Prefix: cola__
   (unique - no conflicts)
======================== */

.cola__section {
  background-color: #2C89381A;
  min-height: 796px;
  padding: 60px 0;
}

.cola__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cola__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* White Cards */
.cola__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  height: 230px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Icon Circle */
.cola__icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.cola__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cola__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cola__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #444444;
  margin-bottom: 0;
}

/* ========================
   COLLABORATION PAGE
   SECTION 4: Our Collaboration Model
   Prefix: colm__
   (unique - no conflicts)
======================== */

.colm__section {
  background-color: #ffffff;
  min-height: 472px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.colm__section .container {
  width: 100%;
}

.colm__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.colm__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

.colm__icon-wrap {
  width: 72px;
  height: 72px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colm__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.colm__step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.colm__step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #444444;
  margin-bottom: 0;
}

.colm__arrow {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 400;
  display: inline-block;
  padding: 0 8px;
  margin-bottom: 40px;
}

/* ========================
   COLLABORATION PAGE
   SECTION 5: Knowledge Hub
   Prefix: knhb__
   (unique - no conflicts)
======================== */

.knhb__section {
  background-color: #2C89381A;
  min-height: 492px;
  padding: 60px 0;
}

.knhb__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.knhb__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* Article Cards */
.knhb__card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
  height: 438px;
  display: flex;
  flex-direction: column;
}

.knhb__img-wrap {
  width: 100%;
  height: 192px;
  overflow: hidden;
  flex-shrink: 0;
}

.knhb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #888888;
}

.knhb__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.knhb__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.knhb__tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  padding: 4px 10px;
  border-radius: 100px;
}

.knhb__tag--green {
  background-color: #194E20;
  color: #ffffff;
}

.knhb__date {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
}

.knhb__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.knhb__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #555555;
  margin-bottom: 12px;
  flex: 1;
}

.knhb__read-more {
  font-family: 'Poppins', sans-serif;
  font-weight: 40;
  font-size: 14px;
  color: #194E20;
  text-decoration: none;
}

.knhb__read-more:hover {
  text-decoration: underline;
}

/* View All Button */
.knhb__view-all {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #cccccc;
  border-radius: 100px;
  padding: 10px 28px;
  display: inline-block;
}

.knhb__view-all:hover {
  background-color: #194E20;
  color: #ffffff;
  border-color: #194E20;
}


/* ========================
   ABOUT PAGE
   SECTION 1: Hero
   Prefix: abth__
   (unique - no conflicts)
======================== */

.abth__section {
  background-color: #2C89381A;
  min-height: 297px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.abth__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.abth__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #242424;
  margin-bottom: 0;
}

/* ========================
   ABOUT PAGE
   SECTION 2: Who We Are
   Prefix: abtwwa__
   (unique - no conflicts)
======================== */

.abtwwa__section {
  background-color: #ffffff;
  min-height: 592px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.abtwwa__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #194E20;
  margin-bottom: 20px;
}

.abtwwa__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #444444;
  margin-bottom: 20px;
}

.abtwwa__desc:last-child {
  margin-bottom: 0;
}

.abtwwa__img {
  width: 536px;
  height: 358px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ========================
   ABOUT PAGE
   SECTION 3: Vision & Mission
   Prefix: abvm__
   (unique - no conflicts)
======================== */

.abvm__section {
  background-color: #2C89381A;
  min-height: 534px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.abvm__section .container {
  width: 100%;
}

.abvm__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  height: 342px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.abvm__icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.abvm__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.abvm__card-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  color: #194E20;
  margin-bottom: 16px;
}

.abvm__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
  margin-bottom: 0;
}

/* Mission List */
.abvm__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abvm__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #444444;
}

.abvm__check {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ========================
   ABOUT PAGE
   SECTION 4: Our Approach
   Prefix: abtap__
   (unique - no conflicts)
======================== */

.abtap__section {
  background-color: #ffffff;
  min-height: 496px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.abtap__section .container {
  width: 100%;
}

.abtap__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.abtap__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

.abtap__icon-wrap {
  width: 80px;
  height: 80px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abtap__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.abtap__item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.abtap__item-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  margin-bottom: 0;
}


/* ========================
   ABOUT PAGE
   SECTION 5: Why Bharat Biomer
   Prefix: abtwbm__
   (unique - no conflicts)
======================== */

.abtwbm__section {
  background-color: #2C89381A;
  min-height: 558px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.abtwbm__section .container {
  width: 100%;
}

.abtwbm__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.abtwbm__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

.abtwbm__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  height: 254px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.abtwbm__icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.abtwbm__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.abtwbm__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.abtwbm__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  margin-bottom: 0;
}

/* ========================
   ABOUT PAGE
   SECTION 6: CTA
   Prefix: abtcta__
   (unique - no conflicts)
======================== */

.abtcta__section {
  background-color: #ffffff;
  min-height: 418px;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.abtcta__card {
  background-color: #194E20;
  border-radius: 16px;
  padding: 60px 40px;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.abtcta__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.abtcta__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 32px;
}

.abtcta__btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Learn About Our Products - white border, transparent bg */
.abtcta__btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #194E20;
  background-color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  width: 253px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.abtcta__btn-outline:hover {
  background-color: #ffffff;
  color: #194E20;
}

/* Contact Our Team - white bg, green text */
.abtcta__btn-solid {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff !important;
  background-color: transparent !important;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  width: 193px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.abtcta__btn-solid:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}

/* ========================
   IMPACT PAGE
   SECTION 1: Hero
   Prefix: imph__
   (unique - no conflicts)
======================== */

.imph__section {
  background-color: #2C89381A;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.imph__badge {
  display: inline-flex;
  align-items: center;
  background-color: #194E20;
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.imph__badge-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1px;
  color: #ffffff;
}

.imph__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: 0px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.imph__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #242424;
  margin-bottom: 0;
}

/* ========================
   IMPACT PAGE
   SECTION 2: Observed Field Benefits
   Prefix: ofb__
   (unique - no conflicts)
======================== */

.ofb__section {
  background-color: #ffffff;
  min-height: 538px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.ofb__section .container {
  width: 100%;
}

.ofb__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ofb__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* Cards */
.ofb__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  height: 218px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.ofb__icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ofb__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ofb__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #194E20;
  margin-bottom: 10px;
}

.ofb__card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #555555;
  margin-bottom: 0;
}
/* ========================
   IMPACT PAGE
   SECTION 3: Farmer-Level Impact
   Prefix: fli__
   (unique - no conflicts)
======================== */

.fli__section {
  background-color: #ffffff;
  min-height: 848px;
  padding: 60px 0;
}

.fli__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 48px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.fli__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* Light Green Flow Box */
.fli__flow-box {
  background-color: #2C89381A;
  border-radius: 12px;
  padding: 48px 40px;
  min-height: 310px;
  display: flex;
  align-items: center;
}

.fli__flow-box .row {
  width: 100%;
}

.fli__icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fli__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.fli__step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.fli__step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #444444;
  margin-bottom: 0;
}

.fli__arrow {
  font-size: 24px;
  color: #1a1a1a;
  display: inline-block;
  padding: 0 8px;
  margin-bottom: 48px;
}

/* Dark Green Stat Cards */
.fli__stat-card {
  background-color: #194E20;
  border-radius: 12px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.fli__stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 36px;
  color: #ffffff;
  margin-bottom: 8px;
}

.fli__stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 0;
}
/* ========================
   IMPACT PAGE
   SECTION 4: Sustainability & Carbon Impact
   Prefix: sci__
   (unique - no conflicts)
======================== */

.sci__section {
  background-color: #2C89381A;
  padding: 60px 0;
}

/* Top Icon */
.sci__top-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: #194E20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sci__top-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.sci__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.sci__subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  margin-bottom: 0;
}

/* Philosophy Card */
.sci__philosophy-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 80px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
}

.sci__philosophy-title-wrap {
 padding-left: 175px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 12px;
}

.sci__quote {
  font-size: 36px;
  color: #194E20;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.sci__philosophy-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 33px;
  color: #194E20;
  margin-bottom: 0;
}

.sci__philosophy-desc {
  padding-left: 217px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #444444;
  margin-bottom: 28px;
}

/* Dark Green Nature Box */
.sci__nature-box {
  background-color: #194E20;
  border-radius: 8px;
  border: 1px solid #194E20;
  min-height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.sci__nature-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.sci__nature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sci__plus {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
}

.sci__nature-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}

/* White Cards */
.sci__white-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  min-height: 378px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
}

.sci__white-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sci__card-header-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sci__white-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.sci__carbon-intro {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
}

/* Benefit List */
.sci__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sci__benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sci__benefit-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.sci__benefit-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.sci__benefit-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-bottom: 0;
}

/* Carbon Impact Flow */
.sci__flow-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 33px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.sci__flow-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sci__flow-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.sci__flow-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color:#194E20;
  margin-bottom: 4px;
}
.add-margin {
      margin-top: 8rem !important;
    margin-bottom: 7rem;
}
.sci__flow-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #555555;
  margin-bottom: 0;
}

.sci__arrow {
  font-size: 22px;
  color: #1a1a1a;
  display: inline-block;
  margin-bottom: 40px;
}

/* Bottom CTA */
.sci__cta-card {
  background-color: #194E20;
  border-radius: 12px;
  min-height: 210px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sci__cta-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

.sci__cta-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #E8E8E8;
  opacity: 0.9;
  margin-bottom: 24px;
}

.sci__cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px 28px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  border: 1.5px solid #ffffff;
}

.sci__cta-btn:hover {
  background-color: transparent;
  color: #ffffff;
}





/* ========================
   CONTACT PAGE
   SECTION 1: Hero
   Prefix: conh__
   (unique - no conflicts)
======================== */

.conh__section {
  background-color: #2C89381A;
  min-height: 329px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.conh__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 56px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.conh__desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #242424;
  margin-bottom: 0;
}

/* ========================
   CONTACT PAGE
   SECTION 2: Contact Info + Form
   Prefix: conif__
   (unique - no conflicts)
======================== */

.conif__section {
  background-color: #ffffff;
  min-height: 810px;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.conif__section .container {
  width: 100%;
}

/* Info Cards */
.conif__info-card {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  height: 110px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.conif__info-link {
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.conif__info-link:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.conif__info-link:hover .conif__info-title {
  color: #194E20;
}

.conif__info-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conif__info-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.conif__info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.conif__info-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #555555;
  margin-bottom: 0;
}

/* Contact Form Card */
.conif__form-card {
  background-color: #E8E8E8;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  padding: 36px 32px;
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.conif__form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 33px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.conif__field-wrap {
  margin-bottom: 18px;
}

.conif__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: block;
}

.conif__input {
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
}

.conif__input::placeholder {
  color: #aaaaaa;
}

.conif__input:focus {
  border-color: #194E20;
}

.conif__textarea {
  width: 100%;
  height: 120px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  resize: none;
}

.conif__textarea::placeholder {
  color: #aaaaaa;
}

.conif__textarea:focus {
  border-color: #194E20;
}

.conif__submit-btn {
  width: 100%;
  height: 52px;
  background-color: #194E20;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  margin-top: auto;
}

.conif__submit-btn:hover {
  background-color: #0f3314;
}

.bb-review-login-card,
.bb-review-note {
  border-radius: 14px;
  padding: 18px 20px;
}

.bb-review-login-card {
  background: linear-gradient(135deg, rgba(44, 137, 56, 0.08), rgba(25, 78, 32, 0.03));
  border: 1px solid rgba(25, 78, 32, 0.12);
}

.bb-review-login-card p,
.bb-review-note {
  color: #36523a;
  font-size: 14px;
  line-height: 1.7;
}

.bb-review-note--warning {
  background: #fff8e8;
  border: 1px solid #f2ddb0;
  color: #8b6a1d;
}

.bb-review-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 79, 42, 0.18);
}

.bb-review-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.bb-review-modal__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e7d45, #194e20);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 24px rgba(46, 125, 69, 0.24);
}

.bb-review-modal__content {
  padding: 8px 28px 30px;
}

.bb-review-modal__eyebrow {
  margin-bottom: 8px;
  color: #2e7d45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bb-review-modal__title {
  margin-bottom: 12px;
  color: #16311c;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.bb-review-modal__text {
  margin-bottom: 24px;
  color: #5d715f;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 576px) {
  .bb-review-modal__content {
    padding: 8px 20px 24px;
  }

  .bb-review-modal__title {
    font-size: 24px;
  }
}
/* ========================
   CONTACT PAGE
   SECTION 3: Map Location
   Prefix: conmap__
   (unique - no conflicts)
======================== */

.conmap__section {
  background-color: #2C89381A;
  min-height: 660px;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.conmap__section .container {
  width: 100%;
}

.conmap__map-box {
  background-color: #d4d4d4;
  border-radius: 8px;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conmap__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.conmap__placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #666666;
  margin-top: 16px;
  margin-bottom: 8px;
}

.conmap__placeholder-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #888888;
  margin-bottom: 0;
}
/* banner image */
/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'CabinetGrotesk-light';
  src: url('http://lucasroussy.com/fonts/cabinet-grotesk/CabinetGrotesk-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CabinetGrotesk-extrabold';
  src: url('assets/fonts/cabinet-grotesk/CabinetGrotesk-Extrabold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ============================================
   BIG TITLE
   ============================================ */
.bigTitle {
  font-family: 'CabinetGrotesk-extrabold', sans-serif;
  line-height: 0.9;
  font-size: 13vw;
}

@media (min-width: 425px) {
  .bigTitle {
    font-size: 10vw;
  }
}

@media (min-width: 1024px) {
  .bigTitle {
    font-size: 6vw;
  }
}

.bigTitle .orangeIcon {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #f7970e;
  display: inline-block;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .bigTitle .orangeIcon {
    width: 13px;
    height: 13px;
  }
}

@media (min-width: 1440px) {
  .bigTitle .orangeIcon {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   ARROW BUTTON
   ============================================ */
.arrow-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'CabinetGrotesk-extrabold', sans-serif;
  color: #000;
  transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  font-size: 12px;
}

.arrow-button svg {
  width: 33px;
  margin-left: 10px;
}

.arrow-button svg circle {
  transition: fill 0.75s ease;
  fill: transparent;
}

@media (min-width: 425px) {
  .arrow-button {
    font-size: 16px;
  }
  .arrow-button svg {
    width: 45px;
  }
}

@media (min-width: 1024px) {
  .arrow-button {
    font-size: 20px;
  }
  .arrow-button svg {
    width: 62px;
  }
  .arrow-button:hover {
    padding-left: 20px;
  }
  .arrow-button:hover svg circle {
    fill: #8c97d0;
  }
}

@media (min-width: 1440px) {
  .arrow-button {
    font-size: 15px;
  }
  .arrow-button svg {
    width: 60px;
  }
}

@media (min-width: 1920px) {
  .arrow-button {
    font-size: 18px;
  }
  .arrow-button svg {
    width: 70px;
  }
}

/* ============================================
   HOME SHOWCASE
   ============================================ */
.home-showcase {
  padding: 0 var(--columnExt) 0;
  position: relative;
  margin: 2rem 0 20vw;
}

.home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* --- Swiper Slides --- */
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 72vh;
  overflow: hidden;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
  padding: 5vw;
  width: calc(100% - (5vw * 2));
  height: calc(100% - (5vw * 2));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
  max-width: 100%;
  margin: 0 0 5rem;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
  transform: translate(-140%, 0);
  transition: transform 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
  color: #fff;
  margin: 0 0 2.5rem;
  text-shadow: #21212121 0px 0px 5px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
  transform: translate(-160%, 0);
  transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
  width: fit-content;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
  color: #fff;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
  fill: #fff;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
  stroke: #fff;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
  stroke: #8c97d0;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
  width: 100%;
  height: 100%;
  background-color: #10112b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.8s ease-in 0.5s;
}

/* Active slide */
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button {
  transform: translate(0, 0);
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
  opacity: 0;
}

/* --- Swiper Pagination --- */
.home-showcase .home-showcaseSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: fit-content;
  padding: 3.5% 0;
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 50px;
  height: 2px;
  background-color: #8f9397;
  opacity: 1;
  transition: width 0.8s ease-in-out, background-color 0.4s ease-in-out;
  margin: 0 4px !important;
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #f7970e;
  width: 8vw;
}

/* --- Slider Nav --- */
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled::after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled::after {
  color: #8f9397;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
  font-size: 4vw;
  color: #f7970e;
}

/* --- Macaron --- */
.home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}

.home-showcase .home-showcaseSlider #macaron #text-circle {
  animation: rotate-360 12s linear 0s infinite reverse forwards;
  transform-origin: center;
}

/* --- Scroll Slider Button --- */
.home-showcase .scrollSliderButton {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 0%);
  color: #fff !important;
  text-decoration: none;
  font-size: 3.5vw;
  height: 21vw;
  font-family: 'CabinetGrotesk-light', sans-serif;
}

.home-showcase .scrollSliderButton .line {
  height: 15vw;
  width: 1px;
  background: #8c97d0;
  margin-top: 5px;
  animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .home-showcase {
    margin: 2rem 0 7.9vw;
  }

  .home-showcase .home-showcaseSlider {
    display: block;
  }

  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: clamp(45rem, 75vh, 5000px);
  }

  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    align-items: center;
  }

  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    max-width: 75%;
    margin: 0;
  }

  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    margin: 0 0 1.25rem;
  }

  .home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 2.5% 5%;
  }

  .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 1.5vw;
    height: 3px;
    margin: 0 8px !important;
  }

  .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    width: 3vw;
  }

  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 5% 2.5% 5%;
  }

  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 0 0.6vw;
  }

  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 1vw;
  }

  .home-showcase .home-showcaseSlider #macaron {
    width: 8.4vw;
  }

  .home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 40%);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9vw;
    height: 4.8vw;
    font-family: 'CabinetGrotesk-light', sans-serif;
  }

  .home-showcase .scrollSliderButton .line {
    height: 4.8vw;
    width: 2px;
    background: #8c97d0;
    margin-top: 5px;
    animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
  }
}
/* end */
/* ============================================================
   MOBILE RESPONSIVE - ALL PAGES
   (single block, no duplicates)
============================================================ */

@media (max-width: 991px) {
  .sci__philosophy-desc {
    padding-left: 47px;
  }
  .sci__philosophy-title-wrap {
    padding: 0%;
  }
 .add-margin {
    margin-top: 4rem !important;
    margin-bottom: 3rem;
}
  /* Technology - Section 1 */
  .ourtec__hero-section {
    height: auto;
    padding: 40px 20px;
  }
  .ourtec__hero-title {
    font-size: 24px;
    line-height: 36px;
  }
  .ourtec__hero-subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  /* Technology - Section 2 */
  .ppfm__section {
    padding: 40px 0;
    min-height: auto;
  }
  .ppfm__text-block {
    padding: 24px 20px;
    margin-bottom: 24px;
  }
  .ppfm__heading {
    font-size: 22px;
    line-height: 33px;
  }
  .ppfm__desc {
    font-size: 15px;
    line-height: 24px;
  }
  .ppfm__green-card {
    padding: 32px 20px;
  }
  .ppfm__arrow-col {
    flex-direction: column;
    gap: 4px;
  }
  .ppfm__arrow-wrap {
    flex-direction: column;
    gap: 4px;
  }
  .ppfm__arrow-icon {
    transform: rotate(90deg);
  }
  .ppfm__arrow-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .ppfm__diagram-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .ppfm__diagram-col:last-child {
    border-bottom: none;
  }

  /* Technology - Section 3 */
  .hpw__section {
    padding: 40px 0;
  }
  .hpw__heading {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 28px;
  }

  /* Technology - Section 4 */
  .hph__section {
    padding: 40px 0;
  }
  .hph__heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
  }

  /* Technology - Section 5 */
  .appm__section {
    padding: 40px 0;
  }
  .appm__heading {
    font-size: 26px;
    line-height: 38px;
  }

  /* Products - Section 1 */
  .prodh__section {
    min-height: auto;
    padding: 48px 0;
  }
  .prodh__heading {
    font-size: 30px;
    line-height: 42px;
  }

  /* Products - Section 2 */
  .avan__section {
    min-height: auto;
    padding: 40px 0;
  }
  .avan__content {
    padding: 28px 24px;
  }
  .avan__product-title {
    font-size: 20px;
    line-height: 30px;
  }

  /* Products - Section 3 */
  .ppip__section {
    min-height: auto;
    padding: 40px 0;
  }
  .ppip__header-title {
    font-size: 20px;
  }

  /* Collaboration - Section 1 */
  .colh__section {
    min-height: auto;
    padding: 48px 0;
  }
  .colh__heading {
    font-size: 30px;
    line-height: 42px;
  }

  /* Collaboration - Section 2 */
.wacw__section {
  min-height: auto;
  padding: 40px 0;
}
.wacw__heading {
  font-size: 24px;
  line-height: 36px;
}
}

@media (max-width: 576px) {

  /* Technology - Section 2 */
  .ppfm__heading {
    font-size: 20px;
  }
  .ppfm__desc {
    font-size: 14px;
  }
  .ppfm__col-title {
    font-size: 16px;
  }

  /* Technology - Section 3 */
  .hpw__heading {
    font-size: 20px;
    line-height: 30px;
  }
  .hpw__card {
    padding: 24px 16px 16px 16px;
  }

  /* Technology - Section 4 */
  .hph__heading {
    font-size: 20px;
    line-height: 30px;
  }
  .hph__card {
    padding: 24px 16px;
  }
  .hph__card-desc {
    font-size: 14px;
  }

  /* Technology - Section 5 */
  .appm__heading {
    font-size: 22px;
    line-height: 32px;
  }
  .appm__col-title {
    font-size: 18px;
  }
  .appm__info-box {
    padding: 16px 20px;
  }

  /* Products - Section 1 */
  .prodh__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .prodh__desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* Products - Section 2 */
  .avan__product-img {
    height: 280px;
  }
  .avan__content {
    padding: 20px 16px;
  }
  .avan__product-title {
    font-size: 18px;
  }
  .avan__product-desc {
    font-size: 14px;
  }
  .avan__tag {
    font-size: 12px;
    padding: 4px 12px;
  }

  /* Products - Section 3 */
  .ppip__card-title {
    font-size: 16px;
  }
  .ppip__card-desc {
    font-size: 13px;
  }

  /* Collaboration - Section 1 */
  .colh__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .colh__desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* Collaboration - Section 2 */
.wacw__heading {
  font-size: 20px;
  line-height: 30px;
}
.wacw__card-title {
  font-size: 13px;
}
.wacw__logo-box {
  height: 80px;
}
}
/* Collaboration - Section 3 */
@media (max-width: 991px) {
  .cola__section {
    min-height: auto;
    padding: 40px 0;
  }
  .cola__heading {
    font-size: 26px;
    line-height: 38px;
  }
  .cola__card {
    height: auto;
  }
}

@media (max-width: 576px) {
  .cola__heading {
    font-size: 22px;
    line-height: 32px;
  }
  .cola__card-title {
    font-size: 16px;
  }
  .cola__card-desc {
    font-size: 13px;
  }
}

/* Collaboration - Section 4 */
@media (max-width: 991px) {
  .colm__section {
    min-height: auto;
    padding: 40px 0;
  }
  .colm__heading {
    font-size: 26px;
  }
  .colm__arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    display: block;
  }
}

/* Collaboration - Section 5 */
@media (max-width: 991px) {
  .knhb__section {
    min-height: auto;
    padding: 40px 0;
  }
  .knhb__heading {
    font-size: 26px;
  }
  .knhb__card {
    height: auto;
  }
}

@media (max-width: 576px) {
  .colm__heading {
    font-size: 22px;
  }
  .knhb__heading {
    font-size: 22px;
  }
  .knhb__img-wrap {
    height: 160px;
  }
}

/* About Page - Section 1 */
@media (max-width: 991px) {
  .abth__section {
    min-height: auto;
    padding: 48px 0;
  }
  .abth__heading {
    font-size: 30px;
    line-height: 42px;
  }
  .abth__desc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .abth__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .abth__desc {
    font-size: 14px;
  }
}

/* About Page - Section 2 */
@media (max-width: 991px) {
  .abtwwa__section {
    min-height: auto;
    padding: 40px 0;
  }
  .abtwwa__heading {
    font-size: 26px;
    line-height: 38px;
  }
  .abtwwa__img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .abtwwa__heading {
    font-size: 22px;
    line-height: 32px;
  }
  .abtwwa__desc {
    font-size: 14px;
  }
}

/* About Page - Section 3 */
@media (max-width: 991px) {
  .abvm__section {
    min-height: auto;
    padding: 40px 0;
  }
  .abvm__card {
    height: auto;
  }
  .abvm__card-heading {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .abvm__card {
    padding: 24px 20px;
  }
  .abvm__card-heading {
    font-size: 18px;
  }
}

/* About Page - Section 4 */
@media (max-width: 991px) {
  .abtap__section {
    min-height: auto;
    padding: 40px 0;
  }
  .abtap__heading {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .abtap__heading {
    font-size: 22px;
  }
  .abtap__icon-wrap {
    width: 64px;
    height: 64px;
  }
  .abtap__icon {
    width: 32px;
    height: 32px;
  }
}
/* About Page - Section 5 */
@media (max-width: 991px) {
  .abtwbm__section {
    min-height: auto;
    padding: 40px 0;
  }
  .abtwbm__heading {
    font-size: 26px;
  }
  .abtwbm__card {
    height: auto;
  }
}

@media (max-width: 576px) {
  .abtwbm__heading {
    font-size: 22px;
  }
  .abtwbm__card {
    padding: 24px 20px;
  }
}

/* About Page - Section 6 */
@media (max-width: 991px) {
  .abtcta__section {
    min-height: auto;
    padding: 40px 0;
  }
  .abtcta__heading {
    font-size: 22px;
    line-height: 33px;
  }
  .abtcta__btn-wrap {
    flex-direction: column;
    align-items: center;
  }
  .abtcta__btn-outline,
  .abtcta__btn-solid {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .abtcta__card {
    padding: 36px 20px;
  }
  .abtcta__heading {
    font-size: 20px;
  }
  .abtcta__desc {
    font-size: 14px;
  }
}
/* Impact Page - Section 1 */
@media (max-width: 991px) {
  .imph__section {
    min-height: auto;
    padding: 48px 0;
  }
  .imph__heading {
    font-size: 30px;
    line-height: 42px;
  }
}

@media (max-width: 576px) {
  .imph__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .imph__desc {
    font-size: 14px;
  }
}

/* Impact Page - Section 2 */
@media (max-width: 991px) {
  .ofb__section {
    min-height: auto;
    padding: 40px 0;
  }
  .ofb__heading {
    font-size: 22px;
  }
  .ofb__card {
    height: auto;
  }
}

@media (max-width: 576px) {
  .ofb__heading {
    font-size: 20px;
  }
  .ofb__card {
    padding: 20px 16px;
  }
}
/* Impact Page - Section 3 */
@media (max-width: 991px) {
  .fli__section {
    min-height: auto;
    padding: 40px 0;
  }
  .fli__heading {
    font-size: 26px;
  }
  .fli__flow-box {
    padding: 32px 20px;
    min-height: auto;
  }
  .fli__arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    display: block;
  }
}

@media (max-width: 576px) {
  .fli__heading {
    font-size: 22px;
  }
  .fli__stat-number {
    font-size: 22px;
  }
  .fli__stat-card {
    height: auto;
    padding: 20px;
  }
}
/* Impact Page - Section 4 */
@media (max-width: 991px) {
  .sci__section {
    min-height: auto;
    padding: 40px 0;
  }
  .sci__heading {
    font-size: 22px;
  }
  .sci__arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    display: block;
  }
  .sci__philosophy-card {
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .sci__heading {
    font-size: 20px;
  }
  .sci__white-card {
    padding: 24px 16px;
  }
  .sci__cta-card {
    padding: 28px 20px;
  }
  .sci__cta-heading {
    font-size: 16px;
  }
}
/* Impact Page - Section 4 */
@media (max-width: 991px) {
  .sci__section {
    padding: 40px 0;
  }
  .sci__heading {
    font-size: 22px;
  }
  .sci__philosophy-card {
    padding: 28px 20px;
  }
  .sci__nature-box {
    min-height: auto;
    padding: 32px 16px;
  }
  .sci__white-card {
    min-height: auto;
  }
  .sci__arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
    display: block;
  }
  .sci__cta-card {
    min-height: auto;
    padding: 36px 24px;
  }
}

@media (max-width: 576px) {
  .sci__heading {
    font-size: 20px;
  }
  .sci__philosophy-title {
    font-size: 18px;
  }
  .sci__white-card {
    padding: 24px 16px;
  }
  .sci__cta-heading {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .conh__section {
    min-height: auto;
    padding: 48px 0;
  }
  .conh__heading {
    font-size: 30px;
    line-height: 42px;
  }
}

@media (max-width: 576px) {
  .conh__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .conh__desc {
    font-size: 14px;
  }
}

/* Contact Page - Section 2 */
@media (max-width: 991px) {
  .conif__section {
    min-height: auto;
    padding: 40px 0;
  }
  .conif__form-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .conif__info-card {
    height: auto;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .conif__form-title {
    font-size: 20px;
  }
  .conif__info-title {
    font-size: 15px;
  }
  .conif__form-card {
    padding: 24px 16px;
  }
}
/* Contact Page - Section 3 */
@media (max-width: 991px) {
  .conmap__section {
    min-height: auto;
    padding: 40px 0;
  }
  .conmap__map-box {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .conmap__map-box {
    min-height: 280px;
  }
  .conmap__placeholder-title {
    font-size: 16px;
  }
}


/* CART PAGE STYLES */
/* ═══════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════ */
.cart__section {
    padding: 3rem 0 5rem;
    background: #f8fbf6;
    min-height: 60vh;
}
.cart__heading {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.cart__subheading {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 2rem;
}

/* ── Table Card ── */
.cart__table-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
}
.cart__table { width: 100%; border-collapse: collapse; }
.cart__table thead tr {
    background: #f4faf0;
    border-bottom: 2px solid #e8f0e4;
}
.cart__table thead th {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a6b4a;
}
.cart__table tbody tr {
    border-bottom: 1px solid #f0f5ee;
    transition: background 0.15s;
}
.cart__table tbody tr:last-child { border-bottom: none; }
.cart__table tbody tr:hover { background: #fafff8; }
.cart__table td {
    padding: 1.1rem 1.25rem;
    vertical-align: middle;
    font-size: 0.92rem;
    color: #1a2e1a;
}

/* ── Product Cell ── */
.cart__product-wrap { display: flex; align-items: center; gap: 1rem; }
.cart__product-img {
    width: 64px; height: 64px;
    object-fit: contain;
    background: #f4faf0;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
}
.cart__product-img-placeholder {
    width: 64px; height: 64px;
    background: #f4faf0;
    border-radius: 10px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.cart__product-name { font-weight: 700; color: #1a2e1a; font-size: 0.95rem; margin-bottom: 3px; }
.cart__product-variant {
    font-size: 0.75rem; color: #2d7a45;
    background: #e8f5ed; border: 1px solid #a8d5b5;
    border-radius: 20px; padding: 2px 10px; display: inline-block;
}
.cart__product-sku { font-size: 0.7rem; color: #9aab9a; margin-top: 3px; }

/* ── Price ── */
.cart__price { font-weight: 600; color: #2d7a45; font-size: 1rem; }

/* ── Quantity Controls ── */
.cart__qty-wrap {
    display: flex; align-items: center;
    border: 1.5px solid #c8e0c8;
    border-radius: 8px; overflow: hidden;
    width: fit-content;
}
.cart__qty-btn {
    background: #f4faf0; border: none;
    width: 34px; height: 36px;
    font-size: 1.1rem; font-weight: 700;
    color: #2d7a45; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s; user-select: none;
}
.cart__qty-btn:hover { background: #d4f0e0; }
.cart__qty-btn:active { background: #b8e8cc; }
.cart__qty-btn:disabled { color: #c0c0c0; cursor: not-allowed; background: #f4faf0; }
.cart__qty-input {
    width: 46px; height: 36px;
    border: none;
    border-left: 1.5px solid #c8e0c8;
    border-right: 1.5px solid #c8e0c8;
    text-align: center; font-size: 0.92rem;
    font-weight: 700; color: #1a2e1a;
    background: #fff; outline: none;
    -moz-appearance: textfield;
}
.cart__qty-input::-webkit-inner-spin-button,
.cart__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Item Total ── */
.cart__item-total { font-weight: 700; color: #1a2e1a; font-size: 1rem; }

/* ── Remove ── */
.cart__remove-btn {
    background: none; border: none;
    color: #c0392b; cursor: pointer;
    padding: 6px 8px; border-radius: 6px;
    transition: background 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.cart__remove-btn:hover { background: #fdecea; }

/* ── Updating overlay ── */
.cart__row-updating { opacity: 0.5; pointer-events: none; transition: opacity 0.2s; }

/* ── Summary Card ── */
.cart__summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    position: sticky; top: 20px;
}
.cart__summary-title {
    font-size: 1.1rem; font-weight: 800; color: #1a2e1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f5ee;
}
.cart__summary-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.65rem; font-size: 0.9rem; color: #4a6b4a;
}
.cart__summary-row--hidden { display: none; }
.cart__summary-value--success {
    color: #2d7a45;
    font-weight: 700;
}
.cart__coupon-badge { font-size: 0.7rem; }
.cart__discount-value,
.cart__remove-coupon { color: #c0392b; }
.cart__remove-coupon {
    text-decoration: none;
    margin-left: 5px;
}
.cart__summary-row.total {
    font-size: 1.1rem; font-weight: 800; color: #1a2e1a;
    border-top: 2px solid #f0f5ee;
    padding-top: 0.75rem; margin-top: 0.5rem; margin-bottom: 1.25rem;
}
.cart__summary-row.total span:last-child { color: #2d7a45; }

.cart__coupon-form--hidden { display: none; }
.cart__coupon-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.3rem;
}
.cart__coupon-input {
    border: 1.5px solid #e8f0e4;
    border-radius: 8px;
    font-size: 0.9rem;
    flex: 1;
}
.cart__coupon-apply-btn {
    background: #1a2e1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}
.cart__coupon-apply-btn:hover { background: #2d7a45; }

/* ── Buttons ── */
.cart__flash-success {
    background: #e8f5ed;
    border: 1px solid #a8d5b5;
    color: #2d7a45;
    font-weight: 600;
}
.cart__breadcrumb {
    font-size: 0.82rem;
    background: transparent;
    padding: 0;
    margin: 0;
}
.cart__breadcrumb-link {
    color: #2d7a45;
    text-decoration: none;
}
.cart__breadcrumb-link:hover { color: #245e36; }
.cart__breadcrumb-current { color: #6b7c6b; }
.cart__checkout-btn {
    display: block; width: 100%; padding: 0.9rem;
    background: #2d7a45; color: #fff;
    font-weight: 700; font-size: 1rem;
    border: none; border-radius: 10px;
    text-align: center; text-decoration: none;
    cursor: pointer; transition: background 0.2s;
}
.cart__checkout-btn:hover { background: #245e36; color: #fff; }
.cart__continue-btn {
    display: block; width: 100%; padding: 0.7rem;
    background: transparent; color: #2d7a45;
    font-weight: 600; font-size: 0.88rem;
    border: 1.5px solid #2d7a45; border-radius: 10px;
    text-align: center; text-decoration: none;
    margin-top: 0.75rem; transition: background 0.2s;
}
.cart__continue-btn:hover { background: #f0faf4; color: #2d7a45; }
.cart__clear-btn {
    display: block; width: 100%; padding: 0.6rem;
    background: transparent; color: #c0392b;
    font-weight: 600; font-size: 0.82rem;
    border: 1.5px solid #e8b4b0; border-radius: 10px;
    text-align: center; text-decoration: none;
    margin-top: 0.6rem; transition: background 0.2s;
}
.cart__clear-btn:hover { background: #fdecea; color: #c0392b; }
.cart__guest-note {
    text-align: center;
    font-size: 0.78rem;
    color: #6b7c6b;
    margin-top: 0.6rem;
    margin-bottom: 0;
}
.cart__guest-link {
    color: #2d7a45;
    font-weight: 600;
}

/* ── Item count badge ── */
.cart__count-badge {
    display: inline-block;
    background: #e8f5ed; color: #2d7a45;
    border: 1px solid #a8d5b5;
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 0.82rem; font-weight: 700;
    margin-left: 8px;
}

/* ── Toast notification ── */
.cart__toast {
    position: fixed; bottom: 24px; right: 24px;
    background: #1a2e1a; color: #fff;
    padding: 12px 20px; border-radius: 10px;
    font-size: 0.88rem; font-weight: 600;
    z-index: 9999; opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 300px;
}
.cart__toast.show { opacity: 1; transform: translateY(0); }
.cart__toast.success { border-left: 4px solid #2d7a45; }
.cart__toast.error   { border-left: 4px solid #e74c3c; }

/* ── Trust badges ── */
.cart__trust {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-top: 1.25rem; padding-top: 1rem;
    border-top: 1px solid #f0f5ee;
}
.cart__trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: #6b7c6b;
}

/* ── Empty Cart ── */
.cart__empty {
    text-align: center; padding: 5rem 1rem;
    background: #fff; border-radius: 16px;
    border: 1px solid #e8f0e4;
}
.cart__empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.3; }
.cart__empty h3 { font-size: 1.4rem; font-weight: 700; color: #1a2e1a; margin-bottom: 0.5rem; }
.cart__empty p { color: #6b7c6b; margin-bottom: 1.5rem; font-size: 0.92rem; }
.cart__empty-btn {
    display: inline-block; padding: 0.75rem 2rem;
    background: #2d7a45; color: #fff;
    font-weight: 700; border-radius: 10px;
    text-decoration: none; transition: background 0.2s;
}
.cart__empty-btn:hover { background: #245e36; color: #fff; }

/* ── Mobile: stacked cards ── */
@media (max-width: 768px) {
    .cart__table thead { display: none; }
    .cart__table, .cart__table tbody,
    .cart__table tr, .cart__table td { display: block; width: 100%; }
    .cart__table tr {
        background: #fff; border-radius: 12px;
        border: 1px solid #e8f0e4; margin-bottom: 1rem;
        padding: 1rem; box-shadow: 0 2px 8px rgba(60,120,60,0.05);
    }
    .cart__table tbody tr:hover { background: #fff; }
    .cart__table td { padding: 0.4rem 0; border: none; font-size: 0.88rem; }
    .cart__table td::before {
        content: attr(data-label);
        font-weight: 700; font-size: 0.72rem;
        text-transform: uppercase; color: #4a6b4a;
        display: block; margin-bottom: 4px;
    }
    .cart__table-card { background: transparent; border: none; box-shadow: none; }
}


/* CHECKOUT PAGE STYLES */
/* ── Payment Method Selector ── */
.pay-methods { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.pay-method-label {
    flex: 1; display: flex; align-items: center; gap: 0.6rem;
    border: 2px solid #d4e8d0; border-radius: 10px;
    padding: 0.75rem 1rem; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.9rem; font-weight: 600; color: #1a2e1a;
}
.pay-method-label:has(input:checked) {
    border-color: #2d7a45; background: #e8f5ed;
}
.pay-method-label input { display: none; }
.pay-method-label img { height: 22px; object-fit: contain; }
.pay-method-logo--light {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(100deg);
}

/* ═══════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════ */
.chk__section {
    padding: 3rem 0 5rem;
    background: #f8fbf6;
    min-height: 60vh;
}
.chk__heading {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.chk__subheading {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 2rem;
}

/* ── Steps ── */
.chk__steps {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}
.chk__step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #9aab9a;
}
.chk__step.done   { color: #2d7a45; }
.chk__step.active { color: #2d7a45; }
.chk__step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #c8e0c8;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; background: #fff;
}
.chk__step.done .chk__step-num {
    background: #e8f5ed; border-color: #2d7a45; color: #2d7a45;
}
.chk__step.active .chk__step-num {
    background: #2d7a45; border-color: #2d7a45; color: #fff;
}
.chk__step-divider {
    flex: 1; height: 2px;
    background: #e8f0e4; margin: 0 0.6rem;
}

/* ── Form Cards ── */
.chk__form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
}
.chk__form-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f5ee;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.chk__form-card-title--payment {
    margin-top: 1.25rem;
}
.chk__optional {
    font-weight: 400;
    font-size: 0.78rem;
    color: #6b7c6b;
    text-transform: none;
}
.chk__form-card-num {
    width: 26px; height: 26px;
    background: #e8f5ed; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; color: #2d7a45;
    flex-shrink: 0;
}

/* ── Fields ── */
.chk__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #4a6b4a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0.4rem;
}
.chk__input,
.chk__textarea,
.chk__select {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1.5px solid #d4e8d0;
    border-radius: 10px;
    font-size: 0.92rem;
    color: #1a2e1a;
    background: #fafff8;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.chk__input:focus,
.chk__textarea:focus,
.chk__select:focus {
    border-color: #2d7a45;
    box-shadow: 0 0 0 3px rgba(45,122,69,0.1);
    background: #fff;
}
.chk__input.is-invalid,
.chk__textarea.is-invalid,
.chk__select.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.chk__error {
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 4px;
    display: block;
}
.chk__textarea { resize: vertical; min-height: 90px; }
.chk__input[readonly] { background: #f0f5ee; color: #6b7c6b; cursor: not-allowed; }

/* ── User Banner ── */
.chk__user-banner {
    background: #e8f5ed;
    border: 1px solid #a8d5b5;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem; color: #2d7a45; font-weight: 500;
}

/* ── Summary Card ── */
.chk__summary-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    position: sticky; top: 20px;
}
.chk__summary-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f5ee;
}
.chk__summary-count {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7c6b;
    margin-left: 6px;
}

/* ── Cart Item in Summary ── */
.chk__item {
    display: flex; align-items: center; gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f5ee;
}
.chk__item:last-of-type { border-bottom: none; }
.chk__item-img {
    width: 50px; height: 50px;
    object-fit: contain; background: #f4faf0;
    border-radius: 8px; padding: 5px;
    border: 1px solid #e8f0e4; flex-shrink: 0;
}
.chk__item-img-placeholder {
    width: 50px; height: 50px;
    background: #f4faf0; border-radius: 8px;
    border: 1px solid #e8f0e4; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.chk__item-name { font-size: 0.88rem; font-weight: 700; color: #1a2e1a; line-height: 1.3; }
.chk__item-info {
    flex: 1;
    min-width: 0;
}
.chk__item-meta { font-size: 0.75rem; color: #6b7c6b; }
.chk__item-price { font-size: 0.92rem; font-weight: 700; color: #2d7a45; margin-left: auto; white-space: nowrap; }

/* ── Totals ── */
.chk__totals {
    margin-top: 1rem;
}
.chk__total-row {
    display: flex; justify-content: space-between;
    font-size: 0.88rem; color: #4a6b4a;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.chk__total-row:last-of-type { border-bottom: none; }
.chk__total-row.grand {
    font-size: 1.05rem; font-weight: 800; color: #1a2e1a;
    border-top: 2px solid #e8f0e4; border-bottom: none;
    padding-top: 0.75rem; margin-top: 0.5rem;
}
.chk__total-row.grand span:last-child { color: #2d7a45; }
.chk__total-value--success {
    color: #2d7a45;
    font-weight: 700;
}

/* ── Place Order Button ── */
.chk__place-btn {
    display: block; width: 100%;
    padding: 0.9rem; margin-top: 1.25rem;
    background: #2d7a45; color: #fff;
    font-weight: 800; font-size: 1rem;
    border: none; border-radius: 10px;
    text-align: center; cursor: pointer;
    transition: background 0.2s; font-family: inherit;
}
.chk__place-btn:hover:not(:disabled) { background: #245e36; }
.chk__place-btn:disabled { background: #9aab9a; cursor: not-allowed; }

/* ── Note box ── */
.chk__note {
    background: #f4faf0;
    border: 1px solid #c8e0c8;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem; color: #4a6b4a;
    margin-top: 0.75rem;
}
.chk__secure-note {
    text-align: center;
    font-size: 0.72rem;
    color: #9aab9a;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ── Back link ── */
.chk__back-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: #2d7a45; font-size: 0.88rem; font-weight: 600;
    text-decoration: none; margin-bottom: 1.5rem;
}
.chk__back-link:hover { color: #245e36; }

@media (max-width: 576px) {
    .chk__steps span { display: none; }
}


/* CUSTOMER ACCOUNT EDIT PAGE STYLES */
.cae__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.cae__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.cae__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.cae__header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1.25rem 1.5rem;
}
.cae__title { font-size: 1.1rem; font-weight: 800; color: #1a2e1a; margin-bottom: 0.25rem; }
.cae__subtitle { font-size: 0.85rem; color: #6b7c6b; }
.cae__body { padding: 1.5rem; }
.cae__form .form-group { margin-bottom: 1.5rem; }
.cae__form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
    display: block;
}
.cae__form .form-control {
    width: 100%;
    border: 1.5px solid #e8f0e4;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-sizing: border-box;
}
.cae__form .form-control:focus {
    outline: none;
    border-color: #2d7a45;
    box-shadow: 0 0 0 0.2rem rgba(45,122,69,0.1);
}
.cae__form .form-control.is-invalid {
    border-color: #dc3545;
}
.cae__form .invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}
.cae__help-text {
    display: block;
    margin-top: 0.25rem;
}
.cae__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f5ee;
}
.cae__btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}
.cae__btn--primary {
    background: #2d7a45;
    color: #fff;
}
.cae__btn--primary:hover {
    background: #245e36;
    color: #fff;
}
.cae__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.cae__btn--outline:hover {
    background: #f0faf4;
}
.cae__alert {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.cae__alert-icon { color: #1976d2; margin-right: 0.5rem; }
.cae__alert-text { color: #0d47a1; font-size: 0.9rem; }

@media (max-width: 768px) {
    .cae__actions { flex-direction: column; }
    .cae__btn { width: 100%; justify-content: center; }
}


/* MY ACCOUNT PAGE STYLES */
.my-account-page,
.my-account-page * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.ma__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.ma__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.ma__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.ma__header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1.25rem 1.5rem;
}
.ma__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.ma__subtitle {
    font-size: 0.85rem;
    color: #6b7c6b;
}
.ma__body { padding: 1.5rem; }
.ma__section { margin-bottom: 2rem; }
.ma__section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 1rem;
}
.ma__profile-info {
    display: grid;
    gap: 1rem;
}
.ma__info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ma__info-label {
    font-size: 0.9rem;
    color: #6b7c6b;
}
.ma__info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
}
.ma__status-active {
    color: #2d7a45;
    font-weight: 700;
}
.ma__form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}
.ma__form .form-control {
    border: 1.5px solid #e8f0e4;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
}
.ma__form .form-control:focus {
    border-color: #2d7a45;
    box-shadow: 0 0 0 0.2rem rgba(45,122,69,0.1);
}
.ma__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f5ee;
}
.ma__btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.ma__btn--primary {
    background: #2d7a45;
    color: #fff;
}
.ma__btn--primary:hover {
    background: #245e36;
    color: #fff;
}
.ma__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.ma__btn--outline:hover { background: #f0faf4; }
.ma__alert {
    background: #e8f5ed;
    border: 1px solid #a8d5b5;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.ma__alert-icon {
    color: #2d7a45;
    margin-right: 0.5rem;
}
.ma__alert-text {
    color: #1a2e1a;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .ma__info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .ma__actions { flex-direction: column; }
    .ma__btn {
        width: 100%;
        justify-content: center;
    }
}


/* CUSTOMER DASHBOARD PAGE STYLES */
.customer-dashboard,
.customer-dashboard * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.db-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2e1a;
}
.db-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.db-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8f0e4;
}
.db-card:hover { box-shadow: none; }
.db-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.db-card-icon svg {
    width: 32px;
    height: 32px;
}
.db-card-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0;
}
.db-card-info span {
    font-size: 13px;
    color: #777;
    text-transform: capitalize;
    margin: 0;
}
.card-green .db-card-icon { background: #0aa848; }
.card-blue .db-card-icon { background: #66aaee; }
.card-orange .db-card-icon { background: #ffa500; }
.card-red .db-card-icon { background: #e53935; }
.card-purple .db-card-icon { background: purple; }
.db-bottom {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 24px;
}
.db-panel {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e8f0e4;
    margin-bottom: 20px;
}
.db-panel h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 14px 0;
}
.db-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.db-orders-table th {
    background: #f4faf0;
    color: #2d7a45;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e8f0e4;
    font-size: 13px;
}
.db-orders-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    vertical-align: middle;
    font-size: 14px;
}
.db-orders-table tr:last-child td { border-bottom: none; }
.db-orders-table tr:hover td { background: #f9fdf7; }
.db-status {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.db-status--pending { background: #fff8e1; color: #b45309; }
.db-status--confirmed { background: #e8f5ed; color: #2d7a45; }
.db-status--processing { background: #e8f5fd; color: #1a6fa8; }
.db-status--shipped { background: #f3e8fd; color: #6d28d9; }
.db-status--delivered { background: #e8f5ed; color: #2d7a45; }
.db-status--cancelled { background: #fdecea; color: #c0392b; }
.db-view-link {
    color: #2d7a45;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.db-view-link:hover { text-decoration: underline; }
.db-empty-order {
    text-align: center;
    font-style: italic;
    padding: 2rem;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
}
.db-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.db-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e8f0e4;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    background: #fff;
}
.db-quick-link:hover {
    background: #f4faf0;
    border-color: #2d7a45;
    color: #2d7a45;
}
.db-quick-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #2d7a45;
}

@media (max-width: 1024px) {
    .db-cards { grid-template-columns: repeat(2, 1fr); }
    .db-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .db-cards { grid-template-columns: 1fr; }
    .db-card-info h3 { font-size: 22px; }
}


/* ORDER DETAIL PAGE STYLES */
.od__back {
    display: block;
    align-items: center;
    gap: 0.4rem;
    color: #2d7a45;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.od__back:hover { color: #245e36; }
.od__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.od__page-subtitle {
    font-size: 0.88rem;
    color: #6b7c6b;
    margin-bottom: 1.5rem;
}
.od__status-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.od__order-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2e1a;
}
.od__order-date {
    font-size: 0.82rem;
    color: #6b7c6b;
    margin-top: 2px;
}
.od__status-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.od__total-big {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d7a45;
}
.od__status {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.od__status--pending { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.od__status--confirmed { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.od__status--processing { background: #e8f5fd; color: #1a6fa8; border: 1px solid #90caf9; }
.od__status--shipped { background: #f3e8fd; color: #6d28d9; border: 1px solid #c4b5fd; }
.od__status--delivered { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.od__status--cancelled { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.od__progress-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
}
.od__progress-steps {
    display: flex;
    align-items: center;
}
.od__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
}
.od__step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #c8e0c8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #9aab9a;
    z-index: 1;
    position: relative;
}
.od__step.done .od__step-circle {
    background: #2d7a45;
    border-color: #2d7a45;
    color: #fff;
}
.od__step.active .od__step-circle {
    background: #e8f5ed;
    border-color: #2d7a45;
    color: #2d7a45;
    box-shadow: 0 0 0 4px rgba(45,122,69,0.15);
}
.od__step-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #9aab9a;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.od__step.done .od__step-label,
.od__step.active .od__step-label { color: #2d7a45; }
.od__step-line {
    flex: 1;
    height: 2px;
    background: #e8f0e4;
    margin: -20px -1px 0;
}
.od__step-line.done { background: #2d7a45; }
.od__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
}
.od__card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f5ee;
}
.od__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f5ee;
}
.od__item:last-of-type { border-bottom: none; }
.od__item-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #f4faf0;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
}
.od__item-placeholder {
    width: 56px;
    height: 56px;
    background: #f4faf0;
    border-radius: 10px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.od__item-info {
    flex: 1;
    min-width: 0;
}
.od__item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e1a;
}
.od__item-meta {
    font-size: 0.75rem;
    color: #6b7c6b;
    margin-top: 2px;
}
.od__item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d7a45;
    margin-left: auto;
    white-space: nowrap;
}
.od__totals { margin-top: 1rem; }
.od__total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #4a6b4a;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.od__total-row:last-of-type { border-bottom: none; }
.od__total-row.grand {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a2e1a;
    border-top: 2px solid #e8f0e4;
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.od__total-row.grand span:last-child,
.od__shipping-value {
    color: #2d7a45;
    font-weight: 700;
}
.od__detail-row {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.88rem;
}
.od__detail-row:last-child { border-bottom: none; }
.od__detail-label {
    font-weight: 700;
    color: #4a6b4a;
    width: 100px;
    flex-shrink: 0;
}
.od__detail-value { color: #1a2e1a; }
.od__help-card { text-align: center; }
.od__help-title { text-align: left; }
.od__help-text {
    font-size: 0.85rem;
    color: #6b7c6b;
    margin-bottom: 1rem;
}
.od__help-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
}
.od__help-btn--return {
    background: #fff4e5;
    color: #9a5b00;
    border: 1px solid #f3c77a;
    margin-bottom: 0.75rem;
}
.od__help-btn--status {
    background: #f4faf0;
    color: #2d7a45;
    border: 1px solid #a8d5b5;
    margin-bottom: 0.75rem;
}
.od__help-btn--support {
    background: #2d7a45;
    color: #fff;
}
.od__help-btn--support:hover {
    background: #245e36;
    color: #fff;
}
.od__back-all-wrap { margin-top: 0.75rem; }
.od__back-all {
    font-size: 0.82rem;
    color: #2d7a45;
    font-weight: 600;
    text-decoration: none;
}
.od__back-all:hover { color: #245e36; }

@media (max-width: 576px) {
    .od__status-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .od__status-right { margin-left: 0; }
    .od__step-label { font-size: 0.6rem; }
}


/* MY ORDERS PAGE STYLES */
.my-orders-page,
.my-orders-page * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.mo__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.mo__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.mo__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.mo__card:hover { box-shadow: 0 2px 16px rgba(60,120,60,0.06); }
.mo__card-header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.mo__order-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a2e1a;
}
.mo__order-date {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.mo__header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mo__total {
    font-size: 1rem;
    font-weight: 800;
    color: #2d7a45;
}
.mo__status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.mo__status--pending { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.mo__status--confirmed { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.mo__status--processing { background: #e8f5fd; color: #1a6fa8; border: 1px solid #90caf9; }
.mo__status--shipped { background: #f3e8fd; color: #6d28d9; border: 1px solid #c4b5fd; }
.mo__status--delivered { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.mo__status--cancelled { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.mo__card-body { padding: 1.1rem 1.5rem; }
.mo__items-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.mo__item-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f4faf0;
    border: 1px solid #e8f0e4;
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    color: #1a2e1a;
}
.mo__item-chip img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}
.mo__item-chip-placeholder {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.mo__more-items {
    font-size: 0.78rem;
    color: #6b7c6b;
    background: #f0f5ee;
    border: 1px solid #e8f0e4;
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
}
.mo__card-footer {
    border-top: 1px solid #f0f5ee;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.mo__address {
    font-size: 0.78rem;
    color: #6b7c6b;
}
.mo__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: #2d7a45;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.mo__view-btn:hover {
    background: #245e36;
    color: #fff;
}
.mo__view-btn--return {
    background: #fff4e5;
    color: #9a5b00;
    border: 1px solid #f3c77a;
}
.mo__view-btn--return:hover {
    background: #ffe9c6;
    color: #9a5b00;
}
.mo__view-btn--status {
    background: #f4faf0;
    color: #2d7a45;
    border: 1px solid #a8d5b5;
}
.mo__view-btn--status:hover {
    background: #e8f5ed;
    color: #2d7a45;
}
.mo__view-btn--invoice {
    background: #1a6fa8;
}
.mo__view-btn--invoice:hover {
    background: #145b8a;
}
.mo__empty {
    text-align: center;
    padding: 5rem 1rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
}
.mo__empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.mo__empty h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}
.mo__empty p {
    color: #6b7c6b;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}
.mo__empty-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #2d7a45;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}
.mo__empty-btn:hover {
    background: #245e36;
    color: #fff;
}

@media (max-width: 576px) {
    .mo__card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .mo__header-right { margin-left: 0; }
}


/* ORDER RETURN SHOW PAGE STYLES */
.order-return-show-page,
.order-return-show-page * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.ors__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.ors__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.ors__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.ors__header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1.25rem 1.5rem;
}
.ors__return-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.ors__return-date {
    font-size: 0.85rem;
    color: #6b7c6b;
}
.ors__status-wrap { margin-top: 0.5rem; }
.ors__status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.ors__status--pending { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.ors__status--approved { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.ors__status--rejected { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.ors__status--refunded { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.ors__body { padding: 1.5rem; }
.ors__section { margin-bottom: 2rem; }
.ors__section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 1rem;
}
.ors__order-info {
    background: #f9fbf8;
    border: 1px solid #e8f0e4;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.ors__order-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.ors__order-date {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.ors__details {
    display: grid;
    gap: 1rem;
}
.ors__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ors__detail-label {
    font-size: 0.9rem;
    color: #6b7c6b;
}
.ors__detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
}
.ors__detail-value--left { text-align: left; }
.ors__items {
    display: grid;
    gap: 1rem;
}
.ors__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fbf8;
    border-radius: 10px;
    border: 1px solid #e8f0e4;
}
.ors__item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8f0e4;
}
.ors__item-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5ee;
}
.ors__item-details { flex: 1; }
.ors__item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.ors__item-meta {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.ors__timeline {
    position: relative;
    padding-left: 2rem;
}
.ors__timeline::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e8f0e4;
}
.ors__timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}
.ors__timeline-item::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2d7a45;
    border: 2px solid #fff;
}
.ors__timeline-item--pending::before { background: #f59e0b; }
.ors__timeline-item--rejected::before { background: #ef4444; }
.ors__timeline-date {
    font-size: 0.8rem;
    color: #6b7c6b;
    margin-bottom: 0.25rem;
}
.ors__timeline-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.ors__timeline-desc {
    font-size: 0.85rem;
    color: #6b7c6b;
}
.ors__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f5ee;
}
.ors__btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.ors__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.ors__btn--outline:hover { background: #f0faf4; }

@media (max-width: 768px) {
    .ors__detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .ors__item {
        flex-direction: column;
        text-align: center;
    }
    .ors__actions { flex-direction: column; }
    .ors__btn {
        width: 100%;
        justify-content: center;
    }
}


/* ORDER RETURN CREATE PAGE STYLES */
.order-return-create-page,
.order-return-create-page * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.orc__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.orc__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.orc__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.orc__header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1.25rem 1.5rem;
}
.orc__order-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.orc__order-date {
    font-size: 0.85rem;
    color: #6b7c6b;
}
.orc__body { padding: 1.5rem; }
.orc__section { margin-bottom: 2rem; }
.orc__section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 1rem;
}
.orc__items {
    display: grid;
    gap: 1rem;
}
.orc__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fbf8;
    border-radius: 10px;
    border: 1px solid #e8f0e4;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.orc__item input[type="radio"] { margin-top: 0.2rem; }
.orc__item:has(input:checked) {
    border-color: #2d7a45;
    background: #eef8f1;
    box-shadow: 0 0 0 3px rgba(45,122,69,0.08);
}
.orc__item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8f0e4;
}
.orc__item-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5ee;
}
.orc__item-details { flex: 1; }
.orc__item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.25rem;
}
.orc__item-meta {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.orc__form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}
.orc__form .form-select,
.orc__form .form-control {
    border: 1.5px solid #e8f0e4;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
}
.orc__form .form-select:focus,
.orc__form .form-control:focus {
    border-color: #2d7a45;
    box-shadow: 0 0 0 0.2rem rgba(45,122,69,0.1);
}
.orc__field-error { font-size: 0.85rem; }
.orc__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f5ee;
}
.orc__btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.orc__btn--primary {
    background: #2d7a45;
    color: #fff;
}
.orc__btn--primary:hover {
    background: #245e36;
    color: #fff;
}
.orc__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.orc__btn--outline:hover { background: #f0faf4; }
.orc__alert {
    background: #fff8e1;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.orc__alert-icon {
    color: #b45309;
    margin-right: 0.5rem;
}
.orc__alert-text {
    color: #92400e;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .orc__item {
        flex-direction: column;
        text-align: center;
    }
    .orc__actions { flex-direction: column; }
    .orc__btn {
        width: 100%;
        justify-content: center;
    }
}


/* ORDER RETURNS LIST PAGE STYLES */
.order-returns-page,
.order-returns-page * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.or__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.or__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.or__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.or__card:hover { box-shadow: 0 2px 16px rgba(60,120,60,0.06); }
.or__card-header {
    background: #f4faf0;
    border-bottom: 1px solid #e8f0e4;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.or__return-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a2e1a;
}
.or__return-date {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.or__header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.or__refund {
    font-size: 1rem;
    font-weight: 800;
    color: #2d7a45;
}
.or__status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.or__status--pending { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.or__status--approved { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.or__status--rejected { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.or__status--refunded { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.or__card-body { padding: 1.1rem 1.5rem; }
.or__order-info {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f5ee;
}
.or__order-num {
    font-size: 0.9rem;
    color: #1a2e1a;
    font-weight: 600;
}
.or__reason {
    font-size: 0.85rem;
    color: #6b7c6b;
    margin-top: 0.25rem;
}
.or__description {
    font-size: 0.8rem;
    color: #6b7c6b;
    margin-top: 0.5rem;
    line-height: 1.4;
}
.or__card-footer {
    border-top: 1px solid #f0f5ee;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.or__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: #2d7a45;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.or__view-btn:hover {
    background: #245e36;
    color: #fff;
}
.or__empty {
    text-align: center;
    padding: 5rem 1rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
}
.or__empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.or__empty h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}
.or__empty p {
    color: #6b7c6b;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}
.or__empty-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #2d7a45;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}
.or__empty-btn:hover {
    background: #245e36;
    color: #fff;
}

@media (max-width: 576px) {
    .or__card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .or__header-right { margin-left: 0; }
}


/* ORDER SUCCESS PAGE STYLES */
.suc__section {
    padding: 4rem 0 6rem;
    background: #f8fbf6;
    min-height: 70vh;
}
.suc__hero {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 4px 24px rgba(60,120,60,0.08);
    margin-bottom: 2rem;
}
.suc__icon-wrap {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #e8f5ed, #b8e8cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.suc__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.4rem;
}
.suc__subtitle {
    font-size: 0.95rem;
    color: #6b7c6b;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.suc__order-num {
    display: inline-block;
    background: #e8f5ed;
    border: 1.5px solid #a8d5b5;
    border-radius: 30px;
    padding: 0.5rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d7a45;
    letter-spacing: 0.5px;
}
.suc__info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.75rem;
}
.suc__info-pill {
    background: #f4faf0;
    border: 1px solid #d4e8d0;
    border-radius: 12px;
    padding: 0.85rem 1.4rem;
    text-align: center;
    min-width: 120px;
}
.suc__info-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a6b4a;
    margin-bottom: 3px;
}
.suc__info-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a2e1a;
}
.suc__info-value--success { color: #2d7a45; }
.suc__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    margin-bottom: 1.5rem;
}
.suc__card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f5ee;
}
.suc__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f5ee;
}
.suc__item:last-of-type { border-bottom: none; }
.suc__item-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #f4faf0;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
}
.suc__item-img-placeholder {
    width: 52px;
    height: 52px;
    background: #f4faf0;
    border-radius: 8px;
    border: 1px solid #e8f0e4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.suc__item-info {
    flex: 1;
    min-width: 0;
}
.suc__item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e1a;
    line-height: 1.3;
}
.suc__item-meta {
    font-size: 0.75rem;
    color: #6b7c6b;
}
.suc__item-price {
    font-size: 0.92rem;
    font-weight: 700;
    color: #2d7a45;
    margin-left: auto;
    white-space: nowrap;
}
.suc__totals { margin-top: 1rem; }
.suc__total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #4a6b4a;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.suc__total-row:last-of-type { border-bottom: none; }
.suc__total-row.grand {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a2e1a;
    border-top: 2px solid #e8f0e4;
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.suc__total-row.grand span:last-child { color: #2d7a45; }
.suc__shipping-value {
    color: #2d7a45;
    font-weight: 700;
}
.suc__status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.suc__status--pending { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.suc__status--confirmed { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.suc__status--processing { background: #e8f5fd; color: #1a6fa8; border: 1px solid #90caf9; }
.suc__status--shipped { background: #f3e8fd; color: #6d28d9; border: 1px solid #c4b5fd; }
.suc__status--delivered { background: #e8f5ed; color: #2d7a45; border: 1px solid #a8d5b5; }
.suc__status--cancelled { background: #fdecea; color: #c0392b; border: 1px solid #f5a9a4; }
.suc__address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.suc__address-full { grid-column: 1 / -1; }
.suc__detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #4a6b4a;
    margin-bottom: 2px;
}
.suc__detail-value {
    font-size: 0.9rem;
    color: #1a2e1a;
    font-weight: 500;
}
.suc__timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}
.suc__tl-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f5ee;
}
.suc__tl-item:last-child { border-bottom: none; }
.suc__tl-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.suc__tl-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 2px;
}
.suc__tl-desc {
    font-size: 0.8rem;
    color: #6b7c6b;
}
.suc__cta-card { text-align: center; }
.suc__btn-primary {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: #2d7a45;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    margin-bottom: 0.75rem;
}
.suc__btn-primary:hover {
    background: #245e36;
    color: #fff;
}
.suc__btn-outline {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: transparent;
    color: #2d7a45;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    border: 1.5px solid #2d7a45;
    transition: background 0.2s;
}
.suc__btn-outline:hover {
    background: #f0faf4;
    color: #2d7a45;
}
.suc__support-note {
    font-size: 0.75rem;
    color: #9aab9a;
    margin-top: 1rem;
    margin-bottom: 0;
}
.suc__support-link {
    color: #2d7a45;
    font-weight: 600;
}

@media (max-width: 576px) {
    .suc__address-grid { grid-template-columns: 1fr; }
    .suc__title { font-size: 1.6rem; }
}


/* PRODUCT LIST PAGE STYLES */
.shop__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8f0e4;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.shop__card:hover { box-shadow: none; }
.shop__img-wrap {
    position: relative;
    background: #f4faf0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.shop__img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}
.shop__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.shop__badge--available {
    background: #e8f5ed;
    color: #2d7a45;
    border: 1px solid #a8d5b5;
}
.shop__badge--soon {
    background: #fff8e1;
    color: #b45309;
    border: 1px solid #fcd34d;
}
.shop__wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8f0e4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.shop__wishlist-btn:hover {
    background: #fdecea;
    border-color: #f5a9a4;
    transform: none;
}
.shop__wishlist-btn.wishlisted {
    background: #fdecea;
    border-color: #e74c3c;
}
.shop__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.shop__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.6rem;
}
.shop__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.shop__desc {
    font-size: 0.85rem;
    color: #6b7c6b;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.shop__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 0.25rem;
}
.shop__price-label {
    font-size: 0.75rem;
    color: #9aab9a;
}
.shop__price-label--spaced { margin-left: 8px; }
.shop__price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d7a45;
}
.shop__variants {
    font-size: 0.78rem;
    color: #9aab9a;
    margin-bottom: 1rem;
}
.shop__variation-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.9rem;
}
.shop__variation-btn {
    border: 1px solid #d1e7d5;
    background: #f4faf0;
    color: #2d7a45;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.shop__variation-btn:hover { background: #eaf5e8; }
.shop__variation-btn--active {
    background: #2d7a45;
    color: #fff;
    border-color: #2d7a45;
}
.shop__actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f5ee;
}
.shop__btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.shop__btn--primary {
    background: #2d7a45;
    color: #fff;
}
.shop__btn--primary:hover { background: #245e36; }
.shop__btn--primary.shop__btn--added { background: #4caf72; }
.shop__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.shop__btn--outline:hover { background: #f0faf4; }
.shop__btn--disabled {
    background: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}
.shop__filters-card {
    background: #fff;
    border: 1px solid #e8f0e4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.shop__search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.shop__search-group {
    position: relative;
    flex: 1;
    min-width: 250px;
}
.shop__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aab9a;
    font-size: 1.1rem;
}
.shop__search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1.5px solid #c8e6c9;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.shop__search-input:focus {
    outline: none;
    border-color: #2d7a45;
}
.shop__search-btn,
.shop__clear-btn,
.shop__apply-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.shop__search-btn {
    background: #2d7a45;
    color: #fff;
}
.shop__search-btn:hover { background: #245e36; }
.shop__clear-btn {
    background: #f0f0f0;
    color: #666;
}
.shop__clear-btn:hover { background: #e0e0e0; }
.shop__filters-row {
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
}
.shop__filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
}
.shop__filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d7a45;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shop__filter-select,
.shop__price-input {
    padding: 8px 12px;
    border: 1.5px solid #c8e6c9;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}
.shop__filter-select:focus,
.shop__price-input:focus {
    outline: none;
    border-color: #2d7a45;
}
.shop__price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop__price-input { width: 80px; }
.shop__price-separator {
    color: #9aab9a;
    font-weight: 600;
}
.shop__filter-actions { margin-left: auto; }
.shop__apply-btn {
    background: #2d7a45;
    color: #fff;
    padding: 10px 20px;
}
.shop__apply-btn:hover { background: #245e36; }
.shop__results-info {
    background: #e8f5ed;
    border: 1px solid #a8d5b5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #2d7a45;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop__empty-icon {
    width: 60px;
    opacity: 0.3;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .shop__search-row {
        flex-direction: column;
        align-items: stretch;
    }
    .shop__filters-row { flex-direction: column; }
    .shop__filter-group { width: 100%; }
    .shop__filter-actions {
        margin-left: 0;
        margin-top: 12px;
    }
}


/* WISHLIST PAGE STYLES */
.wl__page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 0.2rem;
}
.wl__page-subtitle {
    font-size: 0.9rem;
    color: #6b7c6b;
    margin-bottom: 1.75rem;
}
.wl__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
    box-shadow: 0 2px 16px rgba(60,120,60,0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wl__card:hover { box-shadow: 0 2px 16px rgba(60,120,60,0.06); }
.wl__img-wrap {
    background: #f4faf0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
}
.wl__img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
}
.wl__remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f0e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #e74c3c;
    transition: all 0.2s;
}
.wl__remove-btn:hover { background: #fdecea; }
.wl__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wl__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.4rem;
}
.wl__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d7a45;
    margin-bottom: 1rem;
}
.wl__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.wl__btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.wl__btn--primary {
    background: #2d7a45;
    color: #fff;
}
.wl__btn--primary:hover {
    background: #245e36;
    color: #fff;
}
.wl__btn--added { background: #4caf72; }
.wl__btn--outline {
    background: transparent;
    color: #2d7a45;
    border: 1.5px solid #2d7a45;
}
.wl__btn--outline:hover { background: #f0faf4; }
.wl__empty {
    text-align: center;
    padding: 5rem 1rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8f0e4;
}
.wl__empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.wl__empty-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.5rem;
}
.wl__empty-text {
    color: #6b7c6b;
    margin-bottom: 1.5rem;
}
.wl__empty-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #2d7a45;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}
.wl__empty-btn:hover {
    background: #245e36;
    color: #fff;
}
