* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals {
  padding: 60px 0;
  background: transparent;
}

.new-arrivals-container {
  max-width: 1800px;
  margin: auto;

  display: flex;
  gap: 0;

  position: relative;

  border-radius: 28px;
  overflow: hidden;

  align-items: stretch;

  background:
    radial-gradient(
      circle at top right,
      rgba(255, 196, 120, 0.25) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 105, 180, 0.12) 0%,
      transparent 35%
    ),
    linear-gradient(135deg, #fff8fc 0%, #fcf6ff 45%, #fff4ee 100%);

  box-shadow: 0 10px 40px rgba(122, 0, 255, 0.05);
}
.new-arrivals-container::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 170, 120, 0.15),
    transparent 70%
  );

  top: -180px;
  right: -120px;

  pointer-events: none;
}

.new-arrivals-container::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 120, 180, 0.12),
    transparent 70%
  );

  bottom: -180px;
  left: 220px;

  pointer-events: none;
}

/* =========================
   LEFT BANNER
========================= */

.arrival-banner {
  position: relative;
  overflow: hidden;

  width: 400px;
  min-width: 400px;

  padding: 45px;

  flex-shrink: 0;

  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(255, 194, 72, 0.9) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 45%,
      rgba(255, 145, 66, 0.8) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(255, 95, 162, 0.5) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #7d18ff 0%, #ff4f7b 45%, #ff8b4f 100%);

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: white;
}

.arrival-banner::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  left: -120px;
  bottom: -140px;
}

.arrival-banner::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  top: -100px;
  right: -80px;
}

.arrival-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.arrival-banner h2 {
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 20px;
}

.arrival-banner p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.arrival-btn {
  width: 250px;
  height: 60px;

  border-radius: 50px;

  text-decoration: none;
  color: white;

  background: linear-gradient(90deg, #2800b8, #5200ff);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-weight: 700;

  box-shadow: 0 10px 25px rgba(35, 0, 130, 0.4);
}

/* =========================
   SPARKLES
========================= */

.sparkle {
  position: absolute;
  color: white;
  font-size: 28px;
}

.sparkle1 {
  top: 40px;
  left: 30px;
}

.sparkle2 {
  top: 100px;
  right: 35px;
}

.sparkle3 {
  bottom: 70px;
  left: 55px;
}

.sparkle4 {
  bottom: 130px;
  right: 70px;
}

/* =========================
   PRODUCTS
========================= */

.arrival-products {
  flex: 1;

  display: flex;
  gap: 14px;

  padding: 16px;

  overflow-x: auto;

  scrollbar-width: none;
}

.arrival-products::-webkit-scrollbar {
  display: none;
}

/* =========================
   CARD
========================= */

.arrival-card {
  position: relative;

  width: 240px;
  min-width: 240px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);

  border-radius: 20px;

  padding: 16px;

  display: flex;
  flex-direction: column;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);

  transition: 0.3s;
}

.arrival-card:hover {
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;

  background: #5b00ff;
  color: white;

  font-size: 11px;
  font-weight: 700;

  padding: 6px 12px;

  border-radius: 8px;
}

.wishlist {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  cursor: pointer;
}
/* IMAGE */

.product-image {
  height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 4px;
}

.product-image img {
  max-width: 95%;
  max-height: 210px;

  object-fit: contain;
}

/* INFO */

.product-info {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.brand {
  color: #6a3cff;

  font-size: 11px;
  font-weight: 600;

  margin-bottom: 4px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;

  line-height: 1.3;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;

  min-height: 36px;
  max-height: 36px;

  margin-bottom: 6px;
}

/* PRICE */

.product-bottom {
  margin-top: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: #ff6a2b;

  font-size: 20px;
  font-weight: 700;
}

.add-btn {
  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #6a3cff;
  color: white;

  font-size: 24px;

  cursor: pointer;
}
