/* ── TOKENS ── */

    /* ── ANIMATIONS CORE ── */
    .reveal {
      opacity: 0;
      transform: translateY(35px) scale(0.98);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
      will-change: opacity, transform;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ── WHATSAPP FLOATING ── */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
      animation: waPulse 3s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: scale(1.15) rotate(-5deg);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    }

    .wa-float:active {
      transform: scale(0.95);
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.3);
      }

      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
      }
    }

    /* ── TOP STRIP ── */

    /* ── NAV ── */

    .logo:hover {
      transform: scale(1.05);
    }

    .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--tagz);
      transition: width 0.3s var(--ease);
      border-radius: 2px;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* ── BUTTONS ── */

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--ink);
      color: var(--ink);
    }

    .btn-outline:hover {
      border-color: var(--tagz);
      color: var(--tagz);
      background: var(--tagz-lt);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink-2);
      border: 1.5px solid var(--paper);
    }

    .btn-ghost:hover {
      border-color: var(--tagz-lt);
      color: var(--tagz);
    }

    .btn-lg {
      padding: 16px 32px;
      font-size: 16px;
      border-radius: var(--r-lg);
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1320px;
      margin: auto;
      padding: 0 20px;
      width: 100%;
    }

    section {
      padding: 80px 0;
    }

    /* ── HERO ── */
    .hero {
      min-height: auto;
      display: grid;
      align-items: center;
      background: var(--cream);
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, var(--paper) 1.5px, transparent 1.5px);
      background-size: 32px 32px;
      opacity: 0.7;
      pointer-events: none;
    }

    .hero-blob,
    .hero-blob2 {
      display: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      padding: 80px 0 60px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--tagz-lt);
      border: 1px solid rgba(255, 69, 0, 0.2);
      color: var(--tagz);
      font-family: var(--ff-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 8px 16px;
      border-radius: 999px;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(255, 69, 0, 0.05);
    }

    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--tagz);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4);
      }

      50% {
        opacity: 0.4;
        box-shadow: 0 0 0 6px rgba(255, 69, 0, 0);
      }
    }

    .hero h1 {
      font-family: var(--ff-head);
      font-size: clamp(46px, 9vw, 84px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin-bottom: 12px;
    }

    .hero h1 .serif {
      font-family: var(--ff-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--tagz);
      letter-spacing: -0.02em;
    }

    .hero-sub {
      font-family: var(--ff-head);
      font-size: clamp(32px, 7vw, 56px);
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--ink-2);
      margin-bottom: 24px;
      line-height: 1;
    }

    .hero-desc {
      font-size: 18px;
      line-height: 1.6;
      color: var(--ink-2);
      max-width: 100%;
      margin-bottom: 32px;
      font-weight: 400;
    }

    .hero-rating-strip {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .hero-rating-stars {
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 2px;
    }

    .hero-rating-text {
      font-family: var(--ff-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
    }

    .hero-rating-text span {
      color: var(--ink-3);
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-direction: column;
      margin-bottom: 48px;
    }

    .hero-proof {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--ink-3);
      font-weight: 600;
    }

    .proof-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--teal-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .proof-check svg {
      width: 12px;
      height: 12px;
      stroke: var(--teal);
      stroke-width: 2.5;
      fill: none;
    }

    /* ── HERO PRODUCT VISUAL ── */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 360px;
      transform: scale(0.9);
    }

    .hero-bg-shape {
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: var(--r-xl);
      background: linear-gradient(145deg, var(--warm), var(--paper));
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.09);
      transition: transform 0.8s var(--ease);
    }

    .hero-visual:hover .hero-bg-shape {
      transform: scale(1.02) rotate(2deg);
    }

    .card-stack {
      position: relative;
      z-index: 3;
      width: 260px;
      height: 165px;
    }

    .nfc-product-card {
      position: absolute;
      width: 260px;
      height: 165px;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s var(--ease);
    }

    .nfc-product-card.card-back {
      background: linear-gradient(135deg, #2D2420, #1A1714);
      transform: rotate(-8deg) translateY(16px) translateX(24px);
      z-index: 1;
    }

    .nfc-product-card.card-mid {
      background: linear-gradient(135deg, #FF6B30, #FF4500);
      transform: rotate(-4deg) translateY(8px) translateX(12px);
      z-index: 2;
    }

    .nfc-product-card.card-front {
      background: linear-gradient(145deg, #FAF7F2, #ECEADF);
      border: 1px solid rgba(255, 255, 255, 0.4);
      z-index: 3;
      animation: cardLift 6s ease-in-out infinite;
      backdrop-filter: blur(10px);
    }

    @keyframes cardLift {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      }

      50% {
        transform: translateY(-12px) rotate(1.5deg);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
      }
    }

    .hero-visual:hover .card-front {
      animation-play-state: paused;
      transform: translateY(-15px) scale(1.05) rotate(0deg);
    }

    .hero-visual:hover .card-mid {
      transform: rotate(-12deg) translateY(15px) translateX(30px);
    }

    .hero-visual:hover .card-back {
      transform: rotate(-20deg) translateY(30px) translateX(50px);
    }

    .card-chip {
      width: 36px;
      height: 28px;
      border-radius: 6px;
      background: linear-gradient(135deg, #E8C44A, #B8962E);
      margin-bottom: 18px;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    }

    .card-chip::before {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 2px;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .card-brand {
      font-family: var(--ff-head);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      color: var(--ink);
    }

    .card-type {
      font-size: 10px;
      color: var(--ink-3);
      letter-spacing: 0.12em;
      font-family: var(--ff-head);
      font-weight: 600;
    }

    .card-wave-lines {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 5px;
      align-items: flex-end;
    }

    .wave-arc {
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--tagz));
      animation: waveGrow 2s ease-in-out infinite;
    }

    .wave-arc:nth-child(1) {
      width: 14px;
      animation-delay: 0s;
    }

    .wave-arc:nth-child(2) {
      width: 20px;
      animation-delay: 0.15s;
    }

    .wave-arc:nth-child(3) {
      width: 28px;
      animation-delay: 0.3s;
    }

    @keyframes waveGrow {

      0%,
      100% {
        opacity: 0.2;
      }

      50% {
        opacity: 1;
      }
    }

    .hero-tag-badge {
      position: absolute;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      border: 1px solid var(--paper);
      border-radius: 14px;
      padding: 10px 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      z-index: 10;
      animation: tagFloat ease-in-out infinite;
    }

    .htb-1 {
      top: 10px;
      right: 0px;
      animation-duration: 6s;
      animation-delay: -2s;
    }

    .htb-2 {
      bottom: 30px;
      left: -10px;
      animation-duration: 7s;
      animation-delay: -4s;
    }

    .htb-3 {
      top: 180px;
      left: -30px;
      animation-duration: 5.5s;
      animation-delay: -1s;
    }

    @keyframes tagFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .htb-label {
      font-size: 10px;
      color: var(--ink-3);
      letter-spacing: 0.1em;
      font-family: var(--ff-head);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .htb-value {
      font-family: var(--ff-head);
      font-size: 18px;
      font-weight: 800;
      color: var(--ink);
    }

    .htb-value.tagz {
      color: var(--tagz);
    }

    .htb-value.teal {
      color: var(--teal);
    }

    /* ── TRUST BAND ── */
    .trust-band {
      background: var(--ink);
      padding: 18px 0;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .trust-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: trustScroll 30s linear infinite;
    }

    .trust-track:hover {
      animation-play-state: paused;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 32px;
      white-space: nowrap;
      font-family: var(--ff-head);
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .trust-item .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--tagz);
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
    }

    @keyframes trustScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ── MARKETPLACE BAND ── */
    .marketplace-section {
      background: var(--warm);
      border-top: 1px solid var(--paper);
      border-bottom: 1px solid var(--paper);
      padding: 48px 0;
    }

    .marketplace-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      text-align: center;
    }

    .marketplace-label {
      font-family: var(--ff-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
    }

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

    .mp-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1.5px solid var(--paper);
      border-radius: var(--r-lg);
      padding: 14px 24px;
      transition: all 0.3s var(--ease);
      min-width: 160px;
      justify-content: center;
    }

    .mp-badge:hover {
      border-color: rgba(255, 69, 0, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .mp-badge-name {
      font-family: var(--ff-head);
      font-weight: 800;
      font-size: 16px;
      letter-spacing: -0.02em;
    }

    .mp-amazon .mp-badge-name {
      color: #131921;
    }

    .mp-amazon .mp-badge-name span {
      color: #FF9900;
    }

    .mp-flipkart .mp-badge-name {
      color: #2874F0;
    }

    .mp-indiamart .mp-badge-name {
      color: #069550;
    }

    .mp-stars {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1px;
      display: block;
      margin-top: 2px;
    }

    .marketplace-note {
      font-size: 13px;
      color: var(--ink-3);
      font-weight: 500;
      max-width: 520px;
    }

    .marketplace-note strong {
      color: var(--ink);
      font-weight: 700;
    }

    /* ── PRODUCTS ── */
    .products-section {
      background: var(--cream);
      padding-top: 100px;
    }

    .section-header {
      margin-bottom: 48px;
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--ff-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--tagz);
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .sec-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--tagz);
      border-radius: 999px;
    }

    .sec-head {
      font-family: var(--ff-head);
      font-size: clamp(36px, 8vw, 56px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .sec-sub {
      font-size: 16px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
      max-width: 100%;
    }

    .filter-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .ftab {
      padding: 10px 20px;
      border-radius: 999px;
      font-family: var(--ff-head);
      font-size: 13px;
      font-weight: 700;
      border: 1.5px solid var(--paper);
      background: transparent;
      color: var(--ink-2);
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }

    .ftab:hover {
      background: var(--warm);
      transform: translateY(-2px);
    }

    .ftab.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Product Grid */
    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .product-card {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r-xl);
      overflow: hidden;
      transition: all 0.4s var(--ease);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      padding: 6px 12px;
      border-radius: 999px;
      font-family: var(--ff-head);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .badge-hot {
      background: #FF4500;
      color: #fff;
    }

    .badge-new {
      background: var(--teal);
      color: #fff;
    }

    .badge-bulk {
      background: var(--gold);
      color: #fff;
    }

    .badge-dark {
      background: var(--ink);
      color: #fff;
    }

    .badge-sample {
      background: linear-gradient(135deg, #FF4500, #C8960C);
      color: #fff;
    }

    .product-img {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Real photo product images + carousel */
    .product-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease);
    }

    .product-card:hover .product-photo {
      transform: scale(1.06);
    }

    .img-carousel {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .img-carousel .product-photo {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    }

    .img-carousel .product-photo.active {
      opacity: 1;
    }

    .carousel-dots {
      position: absolute;
      bottom: 12px;
      left: 0;
      right: 0;
      display: flex;
      gap: 6px;
      justify-content: center;
      z-index: 5;
    }

    .carousel-dots button {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(0, 0, 0, 0.15);
      padding: 0;
      cursor: pointer;
      transition: all 0.25s var(--ease);
    }

    .carousel-dots button.active {
      background: var(--tagz);
      width: 18px;
      border-radius: 4px;
      border-color: var(--tagz);
    }

    .carousel-label {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 4;
      background: rgba(26, 23, 20, 0.75);
      color: #fff;
      font-family: var(--ff-head);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 999px;
      backdrop-filter: blur(4px);
    }

    /* CSS Product Illustrations (fallback / sample-kit) */
    .prod-mini-tag {
      width: 56px;
      height: 30px;
      border-radius: 6px;
      background: #fff;
      border: 2px solid var(--paper);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: transform 0.5s var(--ease);
    }

    .product-card:hover .prod-mini-tag {
      transform: scale(1.15) rotate(5deg);
    }

    .prod-mini-tag::after {
      content: '';
      width: 28px;
      height: 14px;
      border-radius: 3px;
      border: 1px dashed var(--tagz);
      opacity: 0.5;
    }

    /* Sample Kit Visual */
    .sample-kit-visual {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      justify-content: center;
    }

    .sample-kit-row {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
    }

    .sk-card-black {
      width: 72px;
      height: 46px;
      border-radius: 6px;
      background: linear-gradient(135deg, #1A1714, #2D2420);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
      position: relative;
      transition: transform 0.4s var(--ease);
    }

    .sk-card-black::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 8px;
      width: 18px;
      height: 13px;
      border-radius: 2px;
      background: linear-gradient(135deg, #E8C44A, #B8962E);
    }

    .sk-card-white {
      width: 72px;
      height: 46px;
      border-radius: 6px;
      background: linear-gradient(145deg, #fff, #ECEADF);
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      position: relative;
      transition: transform 0.4s var(--ease);
    }

    .sk-card-white::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 8px;
      width: 18px;
      height: 13px;
      border-radius: 2px;
      background: linear-gradient(135deg, #E8C44A, #B8962E);
    }

    .sk-coin {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(145deg, #fff, #E8E5DD);
      border: 3px solid #D6D3CB;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-head);
      font-size: 7px;
      font-weight: 800;
      color: var(--ink-3);
      transition: transform 0.4s var(--ease);
    }

    .sk-metal {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #E8E5DD;
      border: 4px solid #8C8C8C;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s var(--ease);
    }

    .sk-metal-inner {
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 50%;
      border: 1.5px dashed #bbb;
    }

    .sk-mini {
      width: 32px;
      height: 18px;
      border-radius: 4px;
      background: #fff;
      border: 1.5px solid var(--paper);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s var(--ease);
    }

    .sk-flex {
      width: 22px;
      height: 46px;
      border-radius: 3px;
      background: linear-gradient(145deg, #DE9C32, #C48520);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s var(--ease);
    }

    .sk-rfid {
      width: 56px;
      height: 28px;
      border-radius: 4px;
      background: linear-gradient(145deg, #fff, #F2EDE4);
      border: 1px solid var(--paper);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
      transition: transform 0.4s var(--ease);
    }

    .sk-rfid::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 14px;
      border-radius: 2px;
      border: 1.5px dashed rgba(255, 69, 0, 0.4);
    }

    .product-card:hover .sk-card-black {
      transform: rotate(-6deg) translateY(-4px);
    }

    .product-card:hover .sk-card-white {
      transform: rotate(4deg) translateY(-4px);
    }

    .product-card:hover .sk-coin {
      transform: rotate(30deg) scale(1.1);
    }

    .product-card:hover .sk-metal {
      transform: scale(1.1);
    }

    .product-card:hover .sk-mini {
      transform: rotate(8deg) scale(1.1);
    }

    .product-card:hover .sk-flex {
      transform: skewY(-8deg) scale(1.1);
    }

    .product-card:hover .sk-rfid {
      transform: translateY(-4px);
    }

    .product-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background: #fff;
    }

    .product-name {
      font-family: var(--ff-head);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .product-desc {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
      margin-bottom: 24px;
      font-weight: 500;
      flex-grow: 1;
    }

    .product-meta {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .product-price {
      font-family: var(--ff-head);
      font-size: 22px;
      font-weight: 800;
      color: var(--ink);
      line-height: 1.1;
    }

    .product-price .price-from {
      font-size: 11px;
      color: var(--ink-3);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .product-price .price-unit {
      font-size: 13px;
      color: var(--ink-3);
      font-weight: 600;
    }

    .product-price .price-gst {
      font-size: 11px;
      color: var(--ink-3);
      font-weight: 500;
      margin-top: 4px;
    }

    .add-btn {
      display: inline-block;
      padding: 14px;
      border-radius: var(--r);
      background: var(--tagz-lt);
      color: var(--tagz);
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 800;
      border: 1.5px solid rgba(255, 69, 0, 0.2);
      transition: all 0.3s var(--ease-bounce);
      text-align: center;
      text-decoration: none;
      width: 100%;
    }

    .add-btn:hover {
      background: var(--tagz);
      color: #fff;
      border-color: var(--tagz);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 69, 0, 0.25);
    }

    .add-btn:active {
      transform: scale(0.96);
    }

    .add-btn-wa {
      display: inline-block;
      padding: 14px;
      border-radius: var(--r);
      background: rgba(37, 211, 102, 0.1);
      color: #1EB85A;
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 800;
      border: 1.5px solid rgba(37, 211, 102, 0.25);
      transition: all 0.3s var(--ease-bounce);
      text-align: center;
      text-decoration: none;
      width: 100%;
    }

    .add-btn-wa:hover {
      background: #25D366;
      color: #fff;
      border-color: #25D366;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .product-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .ptag {
      font-size: 10px;
      color: var(--ink-2);
      background: var(--warm);
      border-radius: 6px;
      padding: 4px 8px;
      font-family: var(--ff-head);
      letter-spacing: 0.04em;
      font-weight: 700;
    }

    .img-bg-light {
      background: var(--warm);
    }

    .img-bg-tagz {
      background: linear-gradient(145deg, var(--tagz-lt), #FFE8DE);
    }

    .img-bg-teal {
      background: linear-gradient(145deg, var(--teal-lt), #D0EDE9);
    }

    .img-bg-dark {
      background: linear-gradient(145deg, #2D2D2D, #1A1A1A);
    }

    .img-bg-sample {
      background: linear-gradient(145deg, #FFF8F5, #FFF0E8);
    }

    /* Sample Kit card highlight border */
    .product-card.sample-card {
      border: 1.5px solid rgba(255, 69, 0, 0.2);
      box-shadow: 0 8px 32px rgba(255, 69, 0, 0.06);
    }

    .product-card.rfid-card {
      border: 1.5px solid rgba(0, 122, 107, 0.25);
      box-shadow: 0 8px 32px rgba(0, 122, 107, 0.06);
    }

    /* ── TECH BADGE (NFC vs RFID — always visible, never mixed) ── */
    .tech-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
      padding: 5px 11px;
      border-radius: 999px;
      font-family: var(--ff-head);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
    }

    .tech-badge.tech-nfc {
      background: rgba(255, 69, 0, 0.92);
      color: #fff;
    }

    .tech-badge.tech-rfid {
      background: rgba(0, 122, 107, 0.92);
      color: #fff;
    }

    /* ── IMAGE FALLBACK ILLUSTRATIONS ──
       Used automatically via onerror="imgFallback(this)" whenever a real
       product photo (assets/*.jpg) is missing or fails to load, so the
       grid never shows a broken-image icon. Drop the real photo into
       /assets with the same filename and it will display instead. */
    .prod-illo {
      display: none;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
    }

    .product-img.img-fallback .prod-illo {
      display: flex;
    }

    .product-img.img-fallback .img-carousel,
    .product-img.img-fallback>.product-photo {
      display: none !important;
    }

    .illo-shape {
      transition: transform 0.5s var(--ease);
    }

    .product-card:hover .illo-shape {
      transform: scale(1.08) rotate(-3deg);
    }

    .illo-card {
      width: 132px;
      height: 84px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    .illo-card.illo-card-dark {
      background: linear-gradient(135deg, #1A1714, #2D2420);
    }

    .illo-card.illo-card-light {
      background: linear-gradient(145deg, #fff, #ECEADF);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .illo-card::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 14px;
      width: 30px;
      height: 22px;
      border-radius: 4px;
      background: linear-gradient(135deg, #E8C44A, #B8962E);
    }

    .illo-card::after {
      content: '))) ';
      position: absolute;
      bottom: 12px;
      right: 14px;
      font-family: var(--ff-head);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      color: rgba(255, 69, 0, 0.55);
    }

    .illo-card.illo-card-dark::after {
      color: rgba(255, 255, 255, 0.4);
    }

    .illo-disc {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: linear-gradient(145deg, #fff, #E8E5DD);
      border: 3px solid #D6D3CB;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-head);
      font-size: 10px;
      font-weight: 800;
      color: var(--ink-3);
      letter-spacing: 0.05em;
    }

    .illo-disc.illo-disc-metal {
      border: 5px solid #9C9C9C;
      background: #ECEADF;
    }

    .illo-disc.illo-disc-rfid {
      border-color: rgba(0, 122, 107, 0.4);
      color: var(--teal);
    }

    .illo-tag {
      width: 80px;
      height: 44px;
      border-radius: 6px;
      background: #fff;
      border: 1.5px solid var(--paper);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-head);
      font-size: 9px;
      font-weight: 800;
      color: var(--ink-3);
    }

    .illo-tag::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1.5px dashed rgba(255, 69, 0, 0.4);
      border-radius: 3px;
    }

    .illo-tag.illo-tag-rfid::before {
      border-color: rgba(0, 122, 107, 0.4);
    }

    .illo-label {
      margin-top: 10px;
      font-size: 10px;
      font-weight: 700;
      color: var(--ink-3);
      letter-spacing: 0.04em;
      text-align: center;
    }

    .illo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ── DUAL PRICE (blank vs printed) ── */
    .price-options {
      display: flex;
      gap: 10px;
      margin-bottom: 4px;
    }

    .price-opt {
      flex: 1;
      background: var(--warm);
      border: 1px solid var(--paper);
      border-radius: 10px;
      padding: 10px 12px;
    }

    .price-opt-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--ink-3);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }

    .price-opt-val {
      font-family: var(--ff-head);
      font-size: 17px;
      font-weight: 800;
      color: var(--ink);
    }

    .price-opt-val span {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink-3);
    }

    /* ── DUAL PRICE PRODUCT CARD FIX ── */
    /* The desktop .product-meta rule changes all product cards to a row.
       This card has 4 children, so keep its pricing and actions inside the card. */
    .product-meta.dual-price-meta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
      align-items: center;
      gap: 12px;
      width: 100%;
    }

    .dual-price-meta .price-options {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      min-width: 0;
      margin-bottom: 0;
    }

    .dual-price-meta .price-opt {
      min-width: 0;
    }

    .dual-price-meta .price-gst {
      white-space: nowrap;
      font-size: 13px;
      color: var(--ink-3);
      font-weight: 500;
      margin: 0 !important;
    }

    .dual-price-meta .add-btn {
      width: 110px;
      min-width: 110px;
      white-space: nowrap;
      margin-right: 0 !important;
    }

    @media (max-width: 599px) {
      .product-meta.dual-price-meta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }

      .dual-price-meta .price-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .dual-price-meta .price-gst {
        white-space: normal;
      }

      .dual-price-meta .add-btn {
        width: 100%;
        min-width: 0;
      }
    }

    /* ── CUSTOM REQUEST / "NOT LISTED" CARD ── */
    .product-card.custom-card {
      border: 1.5px dashed rgba(74, 69, 64, 0.3);
      background: var(--warm);
      box-shadow: none;
    }

    .custom-card .product-img {
      background: transparent;
      height: auto;
      padding: 36px 24px 0;
    }

    .custom-card .custom-icon-row {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
    }

    .custom-card .custom-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px dashed var(--ink-3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .custom-card .custom-plus {
      font-family: var(--ff-head);
      font-size: 20px;
      font-weight: 800;
      color: var(--ink-3);
    }

    /* ── HOW IT WORKS ── */
    .how-section {
      background: var(--warm);
      border-top: 1px solid var(--paper);
      border-bottom: 1px solid var(--paper);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      background: var(--paper);
      border-radius: var(--r-xl);
      overflow: hidden;
      border: 1px solid var(--paper);
      margin-top: 48px;
    }

    .step {
      background: var(--warm);
      padding: 40px 32px;
      position: relative;
      transition: background 0.4s var(--ease);
    }

    .steps-grid .step:nth-child(1) {
      z-index: 30 !important;
    }

    .steps-grid .step:nth-child(2) {
      z-index: 20 !important;
    }

    .steps-grid .step:nth-child(3) {
      z-index: 10 !important;
    }

    .step-num {
      font-family: var(--ff-serif);
      font-style: italic;
      font-size: 64px;
      color: var(--paper);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.4s var(--ease), transform 0.4s var(--ease);
    }

    .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: #fff;
      border: 1.5px solid var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      transition: transform 0.4s var(--ease), box-shadow 0.4s;
    }

    .step h3 {
      font-family: var(--ff-head);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .step p {
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
    }

    .step-arrow {
      display: none;
    }

    /* ── USE CASES ── */
    .usecases-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .usecase-card {
      background: #fff;
      border: 1.5px solid var(--paper);
      border-radius: var(--r-xl);
      padding: 32px;
      transition: all 0.4s var(--ease);
    }

    .uc-emoji {
      font-size: 40px;
      margin-bottom: 16px;
      display: inline-block;
      transition: transform 0.3s var(--ease-bounce);
    }

    .uc-title {
      font-family: var(--ff-head);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .uc-desc {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
    }

    /* ── BULK CTA ── */
    .bulk-section {
      background: var(--ink);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .bulk-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    .bulk-copy .sec-eyebrow {
      color: var(--tagz);
    }

    .bulk-copy .sec-head {
      color: #fff;
    }

    .bulk-copy .sec-sub {
      color: rgba(255, 255, 255, 0.7);
    }

    .bulk-copy .sec-sub strong {
      color: #fff;
      font-weight: 700;
    }

    .bulk-tiers {
      display: grid;
      gap: 16px;
    }

    .bulk-tier {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-xl);
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: all 0.3s var(--ease);
    }

    .tier-range {
      font-family: var(--ff-head);
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }

    .tier-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      font-family: var(--ff-head);
      letter-spacing: 0.06em;
      margin-top: 4px;
      font-weight: 600;
    }

    .tier-badge {
      padding: 6px 14px;
      border-radius: 999px;
      font-family: var(--ff-head);
      font-size: 11px;
      font-weight: 800;
      background: var(--tagz);
      color: #fff;
      letter-spacing: 0.05em;
    }

    .tier-badge.gold {
      background: var(--gold);
    }

    .bulk-actions {
      margin-top: 32px;
      display: flex;
      gap: 16px;
      flex-direction: column;
    }

    /* ── TESTIMONIALS ── */
    .testi-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .testi-card {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r-xl);
      padding: 32px;
      transition: all 0.4s var(--ease);
    }

    .testi-stars {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 4px;
      margin-bottom: 16px;
    }

    .testi-text {
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-2);
      margin-bottom: 24px;
      font-style: italic;
      font-weight: 500;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-av {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--tagz-lt);
      border: 2px solid rgba(255, 69, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-head);
      font-size: 15px;
      font-weight: 800;
      color: var(--tagz);
      flex-shrink: 0;
    }

    .testi-name {
      font-family: var(--ff-head);
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--ink);
    }

    .testi-role {
      font-size: 11px;
      color: var(--ink-3);
      letter-spacing: 0.04em;
      font-weight: 600;
    }

    .testi-city {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: var(--tagz);
      font-family: var(--ff-head);
      margin-top: 4px;
      font-weight: 700;
    }

    .testi-source {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: var(--ink-3);
      font-family: var(--ff-head);
      margin-top: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding-top: 10px;
      border-top: 1px dashed var(--paper);
    }

    /* ── RFID SPEC TABLE ── */
    .rfid-table-section {
      background: var(--teal-lt);
      border-top: 1px solid rgba(0, 122, 107, 0.15);
      border-bottom: 1px solid rgba(0, 122, 107, 0.15);
    }

    .rfid-table-wrap {
      background: #fff;
      border-radius: var(--r-xl);
      border: 1px solid rgba(0, 122, 107, 0.15);
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(0, 122, 107, 0.08);
    }

    .rfid-table-scroll {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    table.rfid-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 760px;
      font-size: 13px;
    }

    .rfid-table caption {
      text-align: left;
      padding: 20px 24px 0;
      font-size: 12px;
      color: var(--ink-3);
      font-weight: 600;
    }

    .rfid-table thead th {
      text-align: left;
      font-family: var(--ff-head);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-3);
      font-weight: 800;
      padding: 18px 16px;
      background: var(--warm);
      border-bottom: 1.5px solid var(--paper);
      white-space: nowrap;
    }

    .rfid-table tbody td {
      padding: 18px 16px;
      border-bottom: 1px solid var(--paper);
      color: var(--ink-2);
      font-weight: 500;
      vertical-align: middle;
    }

    .rfid-table tbody tr:last-child td {
      border-bottom: none;
    }

    .rfid-table tbody tr:hover td {
      background: var(--tagz-lt);
    }

    .rfid-product-name {
      font-family: var(--ff-head);
      font-weight: 800;
      color: var(--ink);
      font-size: 14px;
    }

    .rfid-product-name small {
      display: block;
      font-family: var(--ff-body);
      font-weight: 500;
      color: var(--ink-3);
      font-size: 11px;
      margin-top: 2px;
    }

    .rfid-spec-pill {
      display: inline-block;
      background: var(--teal-lt);
      color: var(--teal);
      font-family: var(--ff-head);
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .rfid-table-row-soon td {
      color: var(--ink-3);
      font-style: italic;
    }

    .rfid-table-cta-row td {
      padding: 16px;
      text-align: center;
      background: var(--cream);
    }

    .rfid-table-foot-note {
      padding: 18px 24px;
      font-size: 12px;
      color: var(--ink-3);
      font-weight: 500;
      border-top: 1px solid var(--paper);
      background: var(--cream);
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--warm);
      border-top: 1px solid var(--paper);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .faq-list {
      display: grid;
      gap: 4px;
    }

    .faq-item {
      background: #fff;
      border-radius: var(--r-lg);
      border: 1px solid var(--paper);
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .faq-item:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }

    .faq-item.open .faq-q {
      color: var(--tagz);
    }

    .faq-q {
      padding: 20px 24px;
      font-family: var(--ff-head);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
      user-select: none;
    }

    .faq-q-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--warm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      font-weight: 400;
      transition: transform 0.4s var(--ease-bounce), background 0.2s;
    }

    .faq-item.open .faq-q-icon {
      transform: rotate(45deg);
      background: var(--tagz-lt);
      color: var(--tagz);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
      padding: 0 24px;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding: 0 24px 24px;
    }

    .faq-cta-box {
      background: var(--tagz);
      border-radius: var(--r-xl);
      padding: 40px 32px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      order: -1;
      box-shadow: 0 20px 60px rgba(255, 69, 0, 0.2);
    }

    .faq-cta-box h3 {
      font-family: var(--ff-head);
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .faq-cta-box p {
      font-size: 15px;
      opacity: 0.9;
      line-height: 1.6;
      font-weight: 500;
    }

    .btn-white {
      background: #fff;
      color: var(--tagz);
      width: 100%;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .btn-white:hover {
      background: var(--tagz-lt);
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    /* ── TRUST/FOOTER BADGES ── */
    .badges-section {
      background: var(--ink);
      padding: 60px 0;
    }

    .badges-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }

    .badge-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--r-xl);
      padding: 24px 16px;
      text-align: center;
      transition: all 0.3s var(--ease);
    }

    .badge-icon {
      font-size: 32px;
      margin-bottom: 12px;
      display: block;
    }

    .badge-title {
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }

    .badge-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    /* ── LOCATION / MAP ── */
    .location-section {
      background: var(--cream);
      padding-bottom: 80px;
    }

    .location-inner {
      display: grid;
      grid-template-columns: 1fr;
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    }

    .location-content {
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .location-content .sec-head {
      margin-bottom: 12px;
    }

    .location-content .sec-sub {
      margin-bottom: 24px;
    }

    .loc-address {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
      padding-left: 16px;
      border-left: 3px solid var(--tagz-lt);
    }

    .loc-address strong {
      color: var(--ink);
      display: block;
      font-family: var(--ff-head);
      font-size: 16px;
      margin-bottom: 4px;
    }

    .location-map {
      min-height: 350px;
      background: var(--warm);
      position: relative;
      overflow: hidden;
    }

    .location-map iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: grayscale(1) opacity(0.8) contrast(1.1);
      transition: all 0.5s var(--ease);
    }

    .location-map:hover iframe {
      filter: grayscale(0) opacity(1) contrast(1);
    }

    /* ── FOOTER ── */

    /* =========================================
     TABLET & DESKTOP (min-width Overrides) 
     ========================================= */

    @media (min-width: 600px) {
      .usecases-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }

      .testi-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-actions {
        flex-direction: row;
      }

      .product-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .add-btn {
        width: auto;
      }

      .add-btn-wa {
        width: auto;
      }
    }

    @media (min-width: 768px) {
      .wrap {
        padding: 0 48px;
      }

      section {
        padding: 100px 0;
      }

      .nav-inner {
        height: 80px;
      }

      .hero-visual {
        height: 440px;
        transform: scale(1);
      }

      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      }

      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
      }

      .step-arrow {
        display: flex;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--paper);
        align-items: center;
        justify-content: center;
        z-index: 2;
        font-size: 16px;
        color: var(--ink-3);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }

      .marketplace-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    @media (min-width: 1024px) {
      section {
        padding: 120px 0;
      }

      .location-section {
        padding-bottom: 120px;
      }

      .location-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .location-content {
        padding: 64px 56px;
      }

      .location-map {
        min-height: 100%;
      }

      .hero-blob,
      .hero-blob2 {
        display: block;
      }

      .hero-blob {
        position: absolute;
        top: -150px;
        right: -100px;
        width: 800px;
        height: 800px;
        border-radius: 50%;
        background: radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.1), transparent 60%);
        pointer-events: none;
        animation: blobPulse 15s ease-in-out infinite alternate;
      }

      .hero-blob2 {
        position: absolute;
        bottom: -250px;
        left: -150px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 122, 107, 0.06), transparent 60%);
        pointer-events: none;
        animation: blobPulse 20s ease-in-out infinite alternate-reverse;
      }

      @keyframes blobPulse {
        0% {
          transform: scale(1) translate(0, 0);
        }

        100% {
          transform: scale(1.1) translate(40px, -30px);
        }
      }

      .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        padding: 100px 0 80px;
      }

      .hero-visual {
        height: 560px;
      }

      .hero-bg-shape {
        width: 440px;
        height: 440px;
      }

      .card-stack {
        width: 320px;
        height: 200px;
      }

      .nfc-product-card {
        width: 320px;
        height: 200px;
        padding: 28px;
      }

      .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }

      .faq-cta-box {
        order: 1;
        padding: 56px 48px;
      }

      .btn-white {
        width: auto;
      }

      .bulk-inner {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
      }

      .bulk-actions {
        flex-direction: row;
      }

      .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .testi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    @media (hover: hover) {
      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
        border-color: rgba(255, 69, 0, 0.25);
      }

      .step:hover {
        background: #fff;
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
        z-index: 40 !important;
        border-radius: var(--r-xl);
      }

      .step:hover .step-num {
        color: var(--tagz-lt);
        transform: scale(1.1) translateX(10px);
      }

      .step:hover .step-icon {
        border-color: rgba(255, 69, 0, 0.3);
        background: var(--tagz-lt);
        transform: scale(1.1) rotate(5deg);
      }

      .usecase-card:hover {
        border-color: rgba(255, 69, 0, 0.3);
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
      }

      .usecase-card:hover .uc-emoji {
        transform: scale(1.2) rotate(-5deg);
      }

      .testi-card:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        transform: translateY(-6px);
        border-color: rgba(255, 69, 0, 0.15);
      }

      .bulk-tier:hover {
        background: rgba(255, 69, 0, 0.08);
        border-color: rgba(255, 69, 0, 0.4);
        transform: translateX(10px);
      }

      .badge-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 69, 0, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
    }

    /* ── SKIP NAV (Accessibility + SEO) ── */
    .skip-nav {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--tagz);
      color: #fff;
      padding: 12px 20px;
      border-radius: 0 0 var(--r) var(--r);
      font-family: var(--ff-head);
      font-weight: 700;
      font-size: 14px;
      z-index: 9999;
      transition: top 0.2s;
    }

    .skip-nav:focus {
      top: 0;
    }

    /* Visible keyboard focus for accessibility */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--tagz);
      outline-offset: 2px;
      border-radius: 4px;
    }

    @media (prefers-reduced-motion: reduce) {

    }
