@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

.best-sellers-section {
  display: flex;
  gap: 0;

  margin: 80px 0;

  position: relative;

  overflow: hidden;

  border-radius: 32px;

  background: linear-gradient(
    90deg,
    #2b0073 0%,
    #3a0099 20%,
    #f6ebff 45%,
    #fff5fc 70%,
    #ffe9d8 100%
  );
}

.best-left {
  position: relative;

  width: 500px;
  min-width: 500px;

  padding: 42px;

  overflow: hidden;

  height: 430px;

  background: transparent;

  font-family: "Poppins", sans-serif;

  color: #fff;
}

.best-crown,
.best-title,
.best-subtitle,
.best-btn {
  position: relative;
  z-index: 100;
}

/* BIG DARK CIRCLE */

.best-circle {
  position: absolute;

  width: 520px;
  height: 520px;

  top: -180px;
  right: -120px;

  border-radius: 50%;

  background: rgba(20, 0, 55, 0.45);

  z-index: 1;
}

/* ORANGE GLOW */

.best-left::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 145, 90, 0.55),
    transparent 70%
  );

  z-index: 1;
}

/* PURPLE GLOW */

.best-left::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  left: -90px;
  bottom: -80px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(173, 115, 255, 0.45),
    transparent 70%
  );

  z-index: 1;
}

/* LEAVES */

.best-leaf {
  position: absolute;

  width: 95px;
  height: 210px;

  border-radius: 100px;

  background: linear-gradient(
    180deg,
    rgba(220, 150, 255, 0.55),
    rgba(120, 60, 255, 0.3)
  );

  z-index: 2;
}

.best-leaf-1 {
  left: 20px;
  bottom: -40px;

  transform: rotate(22deg);
}

.best-leaf-2 {
  left: 85px;
  bottom: -50px;

  transform: rotate(-15deg);
}

/* SPARKLES */

.best-sparkle {
  position: absolute;

  color: #ffd86b;

  z-index: 4;

  font-size: 20px;
}

.best-sparkle-1 {
  top: 145px;
  left: 42px;
}

.best-sparkle-2 {
  top: 75px;
  left: 260px;
}

.best-sparkle-3 {
  right: 70px;
  bottom: 70px;
}

/* CONTENT */
.best-crown {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #ffcf57;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.best-crown svg {
  width: 22px;
  height: 22px;

  filter: drop-shadow(0 0 8px rgba(255, 207, 87, 0.6));
}

.best-crown {
  text-shadow: 0 0 10px rgba(255, 207, 87, 0.25);
}

.best-title {
  font-size: 64px;
  font-weight: 800;

  line-height: 0.92;

  margin-bottom: 20px;
}

.best-subtitle {
  max-width: 240px;

  font-size: 18px;

  line-height: 1.7;

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.92);
}

.best-btn {
  border: none;

  background: #fff;

  color: #2b006f;

  font-size: 15px;
  font-weight: 700;

  padding: 18px 34px;

  border-radius: 999px;

  cursor: pointer;
}
.best-card,
.best-card * {
  font-family: "Poppins", sans-serif;
}
.best-card {
  position: relative;

  width: 220px;
  min-width: 270px;

  background: linear-gradient(180deg, #fff8ff 0%, #ffffff 55%, #fff4fd 100%);

  border: 1px solid rgba(122, 44, 255, 0.08);

  box-shadow: 0 15px 40px rgba(122, 44, 255, 0.08);

  border-radius: 22px;

  padding: 18px;

  overflow: hidden;

  transition: 0.3s;
}

.best-card:hover {
  transform: translateY(-6px);
}

.best-rank {
  position: absolute;

  top: 0;
  left: 0;

  background: linear-gradient(135deg, #ff7a18, #ff5b00);

  color: #fff;

  font-weight: 800;

  font-size: 22px;

  padding: 14px 18px;

  border-radius: 0 0 22px 0;

  z-index: 10;
}

.best-card-image {
  width: 100%;
  height: 250px;

  object-fit: contain;

  padding: 10px;

  border-radius: 18px;

  background: radial-gradient(
    circle at center,
    rgba(122, 44, 255, 0.08),
    rgba(255, 255, 255, 0) 70%
  );

  margin-bottom: 16px;
}

.best-brand {
  font-size: 11px;
  font-weight: 700;

  color: #7a2cff;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}
.best-products {
  display: flex;
  gap: 14px;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
}

.best-products::-webkit-scrollbar {
  display: none;
}
.best-products::-webkit-scrollbar {
  display: none;
}
.best-product-name {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;

  margin: 6px 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.best-card-content {
  display: flex;
  flex-direction: column;

  gap: 6px;
}
.best-size {
  font-size: 13px;

  color: #666;

  margin-bottom: 15px;
}

.best-card-footer {
  margin-top: 6px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.best-price {
  font-family: "Poppins", sans-serif;

  font-size: 25px;
  font-weight: 600;

  color: #ff6a00;
}

.best-actions {
  display: flex;
  gap: 10px;
}

.best-heart {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: #f5f5f5;

  border: none;
}

.best-shop-btn {
  border: none;

  background: #2d0078;
  color: #fff;

  font-size: 12px;
  font-weight: 700;

  padding: 10px 16px;

  border-radius: 12px;

  height: 40px;

  box-shadow: none;

  cursor: pointer;
}
