body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--dark);
}

/* ========================================
   MERCHANDISE SHOWCASE
======================================== */

.merch-showcase {
  position: relative;

  padding: 120px 0 110px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(218, 170, 85, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, #fffaf1 0%, #f6ecdc 100%);

  overflow: hidden;
}

.merch-wrapper {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1400px;

  margin: auto;
}

/* ========================================
   HEADER
======================================== */

.merch-header {
  max-width: 700px;

  margin: 0 auto 60px;

  padding: 0 24px;

  text-align: center;
}

.merch-eyebrow {
  display: block;

  margin-bottom: 16px;

  color: #a9612e;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 4px;
}

.merch-header h2 {
  margin: 0;

  color: #3c281d;

  font-family: "Cinzel", serif;

  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 700;
  line-height: 1.1;
}

.merch-header h2 span {
  color: #b86b32;
}

.merch-header p {
  max-width: 570px;

  margin: 22px auto 0;

  color: #806e61;

  font-size: 15px;

  line-height: 1.8;
}

/* ========================================
   CAROUSEL
======================================== */

.merch-carousel {
  position: relative;

  display: flex;

  align-items: center;

  width: 100%;
}

.merch-track-container {
  width: 100%;

  overflow: hidden;

  padding: 30px 0;
}

.merch-track {
  display: flex;

  align-items: center;

  transition: transform 0.65s cubic-bezier(0.22, 0.8, 0.25, 1);

  will-change: transform;
}

/* ========================================
   SLIDE
======================================== */

.merch-slide {
  flex: 0 0 33.333%;

  padding: 0 18px;

  opacity: 0.45;

  transform: scale(0.78);

  transition:
    transform 0.6s cubic-bezier(0.22, 0.8, 0.25, 1),
    opacity 0.5s ease;

  cursor: pointer;
}

.merch-slide.active {
  opacity: 1;

  transform: scale(1);
}

/* ========================================
   IMAGE
======================================== */

.merch-product-image {
  position: relative;

  height: 500px;

  border-radius: 30px;

  background: linear-gradient(145deg, #eee1cf, #fff8ed);

  overflow: hidden;

  box-shadow: 0 30px 70px rgba(74, 46, 25, 0.08);
}

.merch-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  user-select: none;

  transition: transform 0.7s ease;
}

.merch-slide.active:hover img {
  transform: scale(1.04);
}

/* ========================================
   BADGE
======================================== */

.product-badge {
  position: absolute;

  top: 22px;
  left: 22px;

  z-index: 5;

  padding: 8px 15px;

  background: #b66b32;

  color: white;

  border-radius: 30px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.product-badge.limited {
  background: #3d291d;
}

/* ========================================
   ARROW
======================================== */

.merch-arrow {
  position: absolute;

  top: 50%;

  z-index: 20;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  border: 1px solid rgba(62, 40, 28, 0.15);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(10px);

  color: #3d291d;

  font-size: 22px;

  cursor: pointer;

  transform: translateY(-50%);

  transition: 0.3s ease;
}

.merch-arrow:hover {
  background: #3d291d;

  color: white;

  transform: translateY(-50%) scale(1.08);
}

.merch-prev {
  left: 40px;
}

.merch-next {
  right: 40px;
}

/* ========================================
   ACTIVE PRODUCT
======================================== */

.active-product-info {
  max-width: 650px;

  margin: 25px auto 0;

  padding: 0 20px;

  text-align: center;
}

.active-product-category {
  color: #ad642f;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.active-product-info h3 {
  margin: 10px 0 4px;

  color: #3d291d;

  font-family: "Cinzel", serif;

  font-size: 27px;
}

.active-product-info > p {
  margin: 5px 0 25px;

  color: #3d291d;

  font-size: 18px;
  font-weight: 600;
}

/* ========================================
   BUY BUTTON
======================================== */

.merch-buy-button {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  padding: 14px 27px;

  background: #3d291d;

  border-radius: 50px;

  color: white;

  font-size: 13px;
  font-weight: 500;

  transition: 0.3s ease;
}

.merch-buy-button:hover {
  background: #ae632f;

  transform: translateY(-2px);
}

.merch-buy-button span {
  font-size: 18px;

  transition: transform 0.3s ease;
}

.merch-buy-button:hover span {
  transform: translateX(5px);
}

/* ========================================
   PAGINATION
======================================== */

.merch-pagination {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 35px;
}

.merch-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  border: 0;

  background: rgba(61, 41, 29, 0.25);

  cursor: pointer;

  transition: 0.3s;
}

.merch-dot.active {
  width: 25px;

  border-radius: 20px;

  background: #ad642f;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {
  .merch-showcase {
    padding: 90px 0;
  }

  .merch-slide {
    flex-basis: 50%;
  }

  .merch-product-image {
    height: 450px;
  }

  .merch-prev {
    left: 20px;
  }

  .merch-next {
    right: 20px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 640px) {
  .merch-showcase {
    padding: 75px 0;
  }

  .merch-header {
    margin-bottom: 35px;
  }

  .merch-header h2 {
    font-size: 38px;
  }

  .merch-track-container {
    padding: 20px 0;
  }

  .merch-slide {
    flex-basis: 82%;

    padding: 0 8px;

    opacity: 0.35;

    transform: scale(0.88);
  }

  .merch-slide.active {
    opacity: 1;

    transform: scale(1);
  }

  .merch-product-image {
    height: 430px;

    border-radius: 22px;
  }

  .merch-arrow {
    display: none;
  }

  .active-product-info {
    margin-top: 15px;
  }

  .active-product-info h3 {
    font-size: 22px;
  }
}
