
  .na-section {
    padding: 40px 0;
    font-family: Archivo;
  }

  .na-section-title {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
  }

  /* Desktop: horizontal scrolling row */
  .na-products-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .na-products-track::-webkit-scrollbar {
    display: none;
  }

  .na-product-card {
    flex: 0 0 310px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.25s ease;
  }

  .na-product-card:hover {
    transform: translateY(-2px);
  }

  .na-product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.06);
  }

  .na-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .na-product-card:hover .na-product-image-wrapper img {
    transform: scale(1.03);
  }

  .na-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: scale(0.85);
  }

  .na-product-card:hover .na-wishlist-btn {
    opacity: 1;
    transform: scale(1);
  }

  .na-wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1) !important;
  }

  .na-wishlist-btn svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    fill: none;
    stroke-width: 2;
    transition: fill 0.2s ease, stroke 0.2s ease;
  }

  .na-wishlist-btn.na-active svg {
    fill: #e74c6f;
    stroke: #e74c6f;
  }

  .na-product-info {
    padding: 12px 4px 0;
  }

  .na-product-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
  }

  .na-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .na-color-options {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }

  .na-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .na-color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
  }

  .na-more-options {
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
  }

  .na-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .na-currency {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .na-price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .na-price-unit {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .na-tax-info {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
  }

  /* Mobile: vertical stack */
  @media (max-width: 991px) {
    .na-section {
      padding: 28px 16px;
    }
  }

  @media (max-width: 640px) {
    .na-section {
      padding: 28px 16px;
    }

    .na-section-title {
      font-size: 24px;
      text-align: center;
      margin-bottom: 20px;
      color: #6b3a7d;
    }

    .na-products-track {
      flex-direction: column;
      overflow-x: visible;
      gap: 28px;
    }

    .na-product-card {
      flex: 0 0 auto;
      width: 100%;
    }

    .na-product-image-wrapper {
      aspect-ratio: 4 / 3;
      border-radius: 14px;
      box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    }

    .na-wishlist-btn {
      opacity: 1;
      transform: scale(1);
    }

    .na-product-info {
      padding: 10px 2px 0;
    }

    .na-product-name {
      font-size: 14px;
    }

    .na-price {
      font-size: 16px;
    }
  }
