      /* === Product Modal / Lightbox === */
      .product-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 2147483647;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(13, 26, 13, 0.92);
        backdrop-filter: blur(8px);
        animation: fadeIn 0.25s ease;
        overflow-y: auto;
      }
      .product-modal.open { display: flex; }
      .product-modal__inner {
        background: #fff;
        border-radius: 24px;
        max-width: 980px;
        width: 100%;
        max-height: 92vh;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        position: relative;
        animation: scaleIn 0.3s cubic-bezier(.2,.9,.3,1);
      }
      .product-modal__close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: rgba(13, 26, 13, 0.08);
        cursor: pointer;
        font-size: 22px;
        z-index: 2;
        transition: all 0.2s;
      }
      .product-modal__close:hover { background: rgba(13, 26, 13, 0.18); transform: rotate(90deg); }
      .product-modal__gallery {
        background: #f0f7ea;
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .product-modal__main-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .product-modal__main-img img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }
      .product-modal__thumbs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }
      .product-modal__thumb {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.2s;
        padding: 0;
      }
      .product-modal__thumb img { width: 100%; height: 100%; object-fit: contain; }
      .product-modal__thumb:hover { border-color: var(--green, #76c442); transform: translateY(-2px); }
      .product-modal__thumb.active { border-color: var(--green, #76c442); }
      .product-modal__body {
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
      }
      .product-modal__tag {
        display: inline-block;
        background: rgba(74, 124, 47, 0.12);
        color: var(--green, #76c442);
        padding: 5px 14px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        align-self: flex-start;
      }
      .product-modal__title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: var(--green-dark, #2f6b1f);
        line-height: 1.15;
        margin: 0;
      }
      .product-modal__desc {
        font-size: 15px;
        line-height: 1.6;
        color: #2d3a2a;
        opacity: 0.85;
      }
      .product-modal__specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 6px;
      }
      .product-modal__spec {
        background: #f7faf4;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid rgba(74, 124, 47, 0.12);
      }
      .product-modal__spec-label { font-size: 11px; color: var(--green, #76c442); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
      .product-modal__spec-value { font-size: 15px; color: var(--green-dark, #2f6b1f); font-weight: 700; margin-top: 2px; }
      .product-modal__cta {
        margin-top: auto;
        padding: 14px 20px;
        background: var(--green, #76c442);
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
        font-size: 15px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s;
      }
      .product-modal__cta:hover { background: var(--green-dark, #2f6b1f); transform: translateY(-2px); }
      @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
      @keyframes scaleIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
      @media (max-width: 720px) {
        .product-modal__inner { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
        .product-modal__gallery { padding: 20px; }
        .product-modal__body { padding: 24px 20px; }
        .product-modal__title { font-size: 24px; }
      }

      /* Cards are clickable */
      .product-card { cursor: zoom-in; }
      .product-card .product-link { cursor: zoom-in; }
