    :root {
      --gold: #ffba00;
      --gold-dark: #e5a700;
      --gold-light: #ffd966;
      --gold-glow: rgba(255, 186, 0, 0.25);
      --deep-blue: #05405e;
      --deep-blue-dark: #022c41;
      --deep-blue-soft: #0a4c6e;
      --deep-blue-light: #1a6d96;
      --glass-white: rgba(255, 255, 255, 0.96);
      --shadow-premium: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
      --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.10);
      --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.18);
      --radius-card: 18px;
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }


    /* ─── SECTION ─── */
    .kitchen-showcase-section {
      background: linear-gradient(160deg, #f0f4f8 0%, #e8eef5 50%, #f4f6f9 100%);
      padding: 2rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

    .kitchen-showcase-section::before {
      content: '';
      position: absolute;
      top: -120px; left: -120px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .kitchen-showcase-section::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(5, 64, 94, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ─── SECTION HEADER ─── */
    .showcase-section-header {
      text-align: center;

      position: relative;
      z-index: 1;
    }

    .showcase-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 186, 0, 0.12);
      border: 1px solid rgba(255, 186, 0, 0.35);
      color: var(--gold-dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .showcase-eyebrow i { font-size: 11px; }

    .showcase-main-title {
      font-size: 3rem;
      font-weight: 700;
      color: var(--deep-blue-dark);
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .showcase-main-title span {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .showcase-subtitle {
      font-size: 16px;
      color: #6b7a8d;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 400;
    }

    .showcase-title-divider {
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      margin: 20px auto 0;
    }

    /* ─── CAROUSEL WRAPPER ─── */
    .kitchen-carousel-wrapper {
      position: relative;
      padding: 16px 0 16px;
    }
.swiper-slide {
  width: auto !important;
}
.product-slide-card {
  width: 100%;
  max-width: 320px;
  margin: 0 auto; /* center card */
}

    .swiper {
      padding: 20px 10px 10px !important;
      overflow: visible !important;
    }

    .swiper-wrapper {
      align-items: stretch;
    }

    /* ─── PRODUCT CARD ─── */
    .product-slide-card {
      background: var(--glass-white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: var(--transition-smooth);
      position: relative;
      height: 100%;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.8);
     
    }

    .product-slide-card:hover {
      transform: translateY(-8px) scale(1.012);
      box-shadow: var(--shadow-hover), 0 0 0 1px rgba(255, 186, 0, 0.2);
    }

.product-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image nicely centered */
  object-position: center; /* ensures center focus */
}
@media (max-width: 576px) {
  .swiper-slide {
    width: 85% !important;
  }
  
}

    .product-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      display: block;
      loading: lazy;
    }

    .product-slide-card:hover .product-card-img {
      transform: scale(1.10);
    }

    /* ─── OVERLAY ─── */
    .product-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(2, 28, 41, 0.92) 0%,
        rgba(5, 64, 94, 0.70) 50%,
        rgba(5, 64, 94, 0.20) 100%
      );
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 28px 20px 24px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .product-slide-card:hover .product-card-overlay {
      opacity: 1;
    }

    .overlay-product-name {
      color: #fff;
      font-size: 17px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 14px;
      transform: translateY(14px);
      opacity: 0;
      transition: transform 0.38s ease 0.05s, opacity 0.38s ease 0.05s;
      letter-spacing: -0.1px;
    }

    .product-slide-card:hover .overlay-product-name {
      transform: translateY(0);
      opacity: 1;
    }

    .btn-view-product {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--gold);
      color: var(--deep-blue-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
      border: none;
      border-radius: 50px;
      padding: 10px 24px;
      cursor: pointer;
      transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
      transform: translateY(14px);
      opacity: 0;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .product-slide-card:hover .btn-view-product {
      transform: translateY(0);
      opacity: 1;
      transition-delay: 0.08s;
    }

    .btn-view-product:hover {
      background: var(--gold-dark);
      transform: scale(1.06) translateY(0) !important;
      box-shadow: 0 6px 20px var(--gold-glow);
      color: var(--deep-blue-dark);
    }

    .btn-view-product:active {
      transform: scale(0.97) translateY(0) !important;
    }

    /* Ripple */
    .btn-view-product .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.38);
      width: 0; height: 0;
      transform: translate(-50%, -50%);
      animation: ripple-anim 0.55s ease-out forwards;
      pointer-events: none;
    }

    @keyframes ripple-anim {
      to { width: 200px; height: 200px; opacity: 0; }
    }

    /* ─── BADGE ─── */
    .product-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 50px;
    }

    .badge-new {
      background: var(--gold);
      color: var(--deep-blue-dark);
    }

    .badge-featured {
      background: var(--deep-blue);
      color: #fff;
    }

    .badge-sale {
      background: #e5533a;
      color: #fff;
    }

    /* ─── CARD BODY ─── */
    .product-card-body {
      padding: 18px 20px 20px;
    }

    .product-card-category {
      font-size: 11px;
      font-weight: 600;
      color: var(--gold-dark);
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 6px;
    }

    .product-card-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--deep-blue-dark);
      margin-bottom: 10px;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .product-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-price {
      font-size: 17px;
      font-weight: 700;
      color: var(--deep-blue);
    }

    .product-price-old {
      font-size: 12px;
      color: #aab0ba;
      text-decoration: line-through;
      margin-left: 5px;
      font-weight: 400;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--gold);
      font-size: 11px;
    }

    .product-rating span {
      font-size: 11px;
      color: #8898aa;
      font-weight: 500;
    }

    /* ─── NAV ARROWS ─── */
    .kitchen-nav-btn {
      position: absolute;
      top: 41%;
      transform: translateY(-60%);
      z-index: 10;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--glass-white);
      border: 1.5px solid rgba(255, 186, 0, 0.3);
      color: var(--deep-blue);
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
      transition: var(--transition-smooth);
    }

    .kitchen-nav-btn:hover {
      background: var(--gold);
      color: var(--deep-blue-dark);
      border-color: var(--gold);
      box-shadow: 0 6px 24px var(--gold-glow);
      transform: translateY(-60%) scale(1.08);
    }

    .kitchen-nav-prev { left: -12px; }
    .kitchen-nav-next { right: -12px; }

    /* ─── PAGINATION DOTS ─── */
    .kitchen-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 36px;
    }

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: #c2cad4;
      border-radius: 4px;
      opacity: 1;
      transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      width: 28px;
      background: var(--gold);
    }

    /* ─── STATS BAR ─── */
    .showcase-stats-bar {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(5, 64, 94, 0.09);
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      animation: fadeSlideUp 0.6s ease both;
    }

    .stat-item:nth-child(2) { animation-delay: 0.1s; }
    .stat-item:nth-child(3) { animation-delay: 0.2s; }

    .stat-value {
      font-size: 30px;
      font-weight: 700;
      color: var(--deep-blue-dark);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-value em {
      color: var(--gold-dark);
      font-style: normal;
    }

    .stat-label {
      font-size: 12.5px;
      color: #8898aa;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .anim-fade-up {
      animation: fadeSlideUp 0.65s ease both;
    }

    .anim-delay-1 { animation-delay: 0.1s; }
    .anim-delay-2 { animation-delay: 0.2s; }
    .anim-delay-3 { animation-delay: 0.3s; }

    /* ─── RESPONSIVE OVERRIDES ─── */
    @media (max-width: 768px) {
      .kitchen-showcase-section { padding: 56px 0 72px; }
      .kitchen-nav-btn { display: none; }
      .showcase-stats-bar { gap: 28px; }
    }

    @media (max-width: 480px) {
      .kitchen-nav-prev, .kitchen-nav-next { display: none; }
    }
    @media only screen and (max-width: 576px) {
  .product-card-image-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #e8eef5;
    }
    .kitchen-showcase-section {
    padding: 12px 0 20px;
  }
}
    