/* ================================================================
       PRODUK KAMI
       ================================================================ */
    .products-section { padding: 80px 20px; }
    .products-section .container { max-width: 1280px; margin: 0 auto; }
    .products-section .section-header { text-align: center; margin-bottom: 40px; }
    .products-section h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 8px;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .products-section .section-sub { color: var(--text-muted); margin-bottom: 32px; }

    /* Filter Tabs */
    .filter-tabs {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .filter-tab {
      padding: 8px 20px;
      border-radius: 50px;
      border: 1px solid rgba(255,214,0,0.3);
      background: transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .filter-tab:hover { border-color: var(--primary); color: var(--primary); }
    .filter-tab.active {
      background: var(--gradient-btn);
      color: #000;
      border-color: transparent;
      font-weight: 700;
    }

    /* Product Grid - 2 Row Horizontal Scroll */
    .product-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
    }
    .product-row {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      gap: 12px;
      padding: 4px 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .product-row::-webkit-scrollbar { display: none; }
    .product-card {
      flex: 0 0 200px;
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: var(--border-glass);
      border-radius: 12px;
      overflow: hidden;
      transition: var(--transition);
      opacity: 1;
      transform: scale(1);
      scroll-snap-align: start;
    }
    .product-card:hover {
      border: var(--border-glass-hover);
      box-shadow: 0 8px 30px rgba(245,166,35,0.25);
      transform: scale(1.04);
    }
    .product-card.hidden { display: none; }
    .product-card.animating {
      opacity: 0;
      transform: scale(0.9);
    }
    .product-image-wrap {
      position: relative;
      height: 170px;
      overflow: hidden;
    }
    .product-image-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-image-wrap img { transform: scale(1.08); }
    .product-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #2a1f00, #1a1200);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }
    .product-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .product-card:hover .product-overlay { opacity: 1; }
    .product-overlay-btn {
      background: var(--gradient-btn);
      color: #000;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.75rem;
      transform: translateY(10px);
      transition: transform 0.3s ease;
    }
    .product-card:hover .product-overlay-btn { transform: translateY(0); }
    .product-badge {
      position: absolute;
      top: 8px; left: 8px;
      background: var(--gradient-btn);
      color: #000;
      font-weight: 700;
      font-size: 0.6rem;
      padding: 3px 8px;
      border-radius: 20px;
      z-index: 2;
    }
    .product-name {
      padding: 10px 10px 0;
      font-weight: 600;
      font-size: 13px;
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .product-price {
      padding: 0 10px;
      font-size: 13px;
      font-weight: 700;
      color: #F5A623;
      margin: 4px 0 8px;
    }
    .product-btn {
      display: block;
      margin: 0 10px 10px;
      padding: 8px;
      height: 32px;
      line-height: 16px;
      background: var(--gradient-btn);
      color: #000;
      font-weight: 700;
      text-align: center;
      border-radius: 50px;
      text-decoration: none;
      font-size: 12px;
      transition: var(--transition);
    }
    .product-btn:hover { box-shadow: var(--shadow-glow); transform: scale(1.02); }

    /* ================================================================
           MARQUEE PRODUK
           ================================================================ */
    .marquee-wrapper {
      overflow: hidden;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .marquee-row {
      display: flex;
      gap: 20px;
      width: max-content;
    }
    .marquee-row--left {
      animation: marquee-left 40s linear infinite;
    }
    .marquee-row--right {
      animation: marquee-right 40s linear infinite;
    }
    @keyframes marquee-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes marquee-right {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    .marquee-row:hover {
      animation-play-state: paused;
    }
    .product-card-mini {
      flex-shrink: 0;
      width: 200px;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,214,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .product-card-mini:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(245,166,35,0.2);
    }
    .product-card-mini img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .product-card-mini-info {
      padding: 10px 12px;
    }
    .product-card-mini-name {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .product-card-mini-price {
      display: block;
      font-size: 13px;
      color: #F5A623;
      font-weight: 700;
      margin-top: 4px;
    }
