  :root {
      --primary: #F59E0B;
      --primary-dark: #D97706;
      --secondary: #DC2626;
      --accent: #F97316;
      --dark: #1F1A17;
      --dark-soft: #2B2521;
      --bg-light: #FFF7ED;
      --text: #2A211C;
      --border: #E5C07B;
  }

  .category-box {
      display: block;
      transition: 0.3s ease;
  }

  .category-image {
      width: 110px;
      height: 110px;
      margin: auto;
      border-radius: 50%;
      overflow: hidden;
      background: #f8f8f8;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
  }

  .category-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .category-box h6 {
      margin-top: 12px;
      color: #111;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.4;
  }

  .category-box:hover .category-image {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
  }

  .category-box:hover h6 {
      color: #d35400;
  }

  .product-card-wrap {
      position: relative;
  }

  .product-card {
      display: block;
      color: var(--text);
  }

  .product-image-wrap {
      border-radius: 18px;
      overflow: hidden;
      background: var(--bg-light);
  }

  .product-image-wrap img {
      width: 100%;
      height: 180px;
      object-fit: cover;
  }

  .add-btn {
      position: absolute;
      right: 1px;
      top: 140px;
      width: 40px;
      height: 40px;
      border: none;
      background: #fff;
      border-radius: 14px;
      font-size: 24px;
      font-weight: 600;
      color: var(--secondary);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
      cursor: pointer;
      z-index: 5;
      transition: .25s;
  }

  .add-btn:hover {
      background: var(--secondary);
      color: #fff;
      transform: scale(1.01);
  }

  .product-card h6 {
      font-size: 18px;
      margin-top: 14px;
      line-height: 1.5;
      font-weight: 600;
  }

  .product-meta {
      color: #666;
      font-size: 14px;
      margin-bottom: 8px;
  }

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

  .price-row del {
      color: #777;
      font-size: 14px;
  }

  .discount {
      color: #16a34a;
      font-size: 14px;
      font-weight: 600;
  }

  .delivery-time {
      color: #555;
      font-size: 14px;
  }

  .product-scroll-wrapper {
      position: relative;
  }

  .product-scroll {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
  }

  .product-scroll::-webkit-scrollbar {
      display: none;
  }

  .product-item {
      min-width: 240px;
      flex: 0 0 auto;
  }

  .scroll-btn {
      position: absolute;
      top: 35%;
      transform: translateY(-50%);
      z-index: 10;
      border: none;
      background: #fff;
      width: 45px;
      height: 45px;
      border-radius: 14px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
      font-size: 22px;
      cursor: pointer;
  }

  .scroll-btn.left {
      left: -20px;
  }

  .scroll-btn.right {
      right: -20px;
  }