/* =========================
   PREMIUM HERO SLIDER - THEME MATCH
========================= */

.hero-banner-section {
  padding: 34px 0 44px;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 119, 255, 0.1), transparent 28%),
    linear-gradient(180deg, var(--secondary-bg), var(--white));
  overflow: hidden;
}

.hero-slider-wrap {
  position: relative;
}

.heroBannerSwiper {
  overflow: hidden;
  padding: 10px 2px 14px !important;
}

.heroBannerSwiper .swiper-wrapper,
.heroBannerSwiper .swiper-slide {
  height: auto !important;
}

.hero-banner-card {
  position: relative;
  height: 310px !important;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding: 34px;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(0, 119, 255, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, var(--primary-light), #ffffff 72%);
  border: 1px solid var(--border-color);
  box-shadow: 0 22px 48px rgba(0, 119, 255, 0.12);
  transition: 0.35s ease;
}

.hero-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(0, 119, 255, 0.18);
}

.hero-blue,
.hero-dark,
.hero-purple {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(0, 119, 255, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, var(--primary-light), #ffffff 72%);
}

.hero-banner-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.08);
  z-index: -1;
}

.hero-banner-card::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.05);
  z-index: -1;
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  max-width: 330px;
  color: var(--text-dark);
}

.hero-banner-content span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 119, 255, 0.08);
}

.hero-banner-content h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.hero-banner-content p {
  margin: 14px 0 22px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-banner-content a {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 119, 255, 0.24);
  transition: 0.28s ease;
}

.hero-banner-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 119, 255, 0.32);
}

.hero-banner-img {
  position: relative;
  height: 230px;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 34px rgba(0, 119, 255, 0.12);
}

.hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.hero-banner-card:hover .hero-banner-img img {
  transform: scale(1.08);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 119, 255, 0.16);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.28s ease;
}

.hero-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav:hover svg {
  stroke: #ffffff;
}

.hero-prev {
  left: -18px;
}

.hero-next {
  right: -18px;
}

@media (max-width: 768px) {
  .hero-banner-card {
    height: 280px !important;
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hero-banner-img {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 150px;
    height: 120px;
    opacity: 0.32;
  }

  .hero-banner-content {
    max-width: 285px;
  }

  .hero-banner-content h2 {
    font-size: 26px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-banner-section {
    padding: 26px 0 34px;
  }

  .hero-banner-card {
    height: 255px !important;
    border-radius: 24px;
    padding: 24px;
  }

  .hero-banner-content h2 {
    font-size: 23px;
  }

  .hero-banner-content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero-banner-content a {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero-banner-img {
    width: 130px;
    height: 105px;
  }

  .hero-nav {
    display: none;
  }
}
/* =========================================
   BRAND SECTION
========================================= */

.brand-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================================
   BRAND CARD
========================================= */

.brand-card {
  position: relative;

  min-height: 150px;

  border-radius: 24px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: all 0.35s ease;

  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

/* DIFFERENT COLORS */

.brand-card:nth-child(1) {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
}

.brand-card:nth-child(2) {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.brand-card:nth-child(3) {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.brand-card:nth-child(4) {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.brand-card:nth-child(5) {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.brand-card:nth-child(6) {
  background: linear-gradient(135deg, #fae8ff, #f5d0fe);
}

.brand-card:nth-child(7) {
  background: linear-gradient(135deg, #cffafe, #a5f3fc);
}

.brand-card:nth-child(8) {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
}

/* HOVER */

.brand-card:hover {
  transform: translateY(-8px) scale(1.02);

  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

/* CIRCLE EFFECT */

.brand-card::before {
  content: "";

  position: absolute;
  top: -50px;
  right: -50px;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.22);

  transition: 0.35s ease;
}

.brand-card:hover::before {
  transform: scale(1.15);
}

/* =========================================
   BRAND NAME
========================================= */

.brand-logo {
  position: relative;
  z-index: 2;

  font-size: 36px;
  font-weight: 950;

  letter-spacing: 1px;

  color: #071327;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 35px 0;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .brand-card {
    min-height: 120px;
    border-radius: 20px;
  }

  .brand-logo {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .brand-section {
    padding: 25px 0;
  }

  .brand-grid {
    gap: 14px;
  }

  .brand-card {
    min-height: 95px;
    border-radius: 16px;
  }

  .brand-logo {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}
/* =========================
   FEATURED SECTION ONLY
========================= */

.featured-section {
  padding: 50px 0;
  background: #ffffff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .featured-section {
    padding: 35px 0;
  }
}

@media (max-width: 480px) {
  .featured-section {
    padding: 25px 0;
  }
  .product-grid {
    gap: 14px;
  }
}
.top-selling-section {
  padding: 25px 0;
}
/* NEW ARRIVAL SECTION */

.new-arrival-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f6fff7 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .new-arrival-section {
    padding: 35px 0;
  }
}
@media (max-width: 480px) {
  .new-arrival-section {
    padding: 25px 0;
  }
}

/* =========================
   WHY CHOOSE SECTION
========================= */
.why-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 119, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

/* Background Glow */
.why-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(0, 119, 255, 0.08);
  border-radius: 50%;
  filter: blur(20px);
}

.why-inner {
  position: relative;
  z-index: 1;
}

/* =========================
   GRID
========================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.why-card {
  position: relative;
  padding: 34px 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dcecff;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.08);
}

/* Decorative Circle */
.why-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.05);
  transition: 0.35s ease;
}

/* =========================
   ICON
========================= */

.why-icon {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef6ff 0%, #dcebff 100%);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
  box-shadow: 0 10px 22px rgba(0, 119, 255, 0.1);
}

.why-icon svg {
  width: 40px;
  height: 40px;
  fill: #0077ff;
  transition: all 0.35s ease;
}

/* =========================
   TEXT
========================= */

.why-card-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-card-text {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  position: relative;
  z-index: 1;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card-title {
    font-size: 24px;
  }
}
@media (max-width: 1100px) {
  .why-section {
    padding: 35px 0px;
  }
}
/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {
  .why-section {
    padding: 25px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .why-icon svg {
    width: 34px;
    height: 34px;
  }

  .why-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-card-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================
   CUSTOMER REVIEW SECTION
========================= */

.review-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(0, 119, 255, 0.1),
      transparent 25%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.review-card {
  position: relative;

  background: #fff;

  border-radius: 28px;

  padding: 30px;

  border: 1px solid #dcecff;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 14px 32px rgba(0, 119, 255, 0.08);
}

.review-card::before {
  content: "";

  position: absolute;

  top: -70px;
  right: -70px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(0, 119, 255, 0.05);
}

.review-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 24px 50px rgba(0, 119, 255, 0.14);
}

.review-quote {
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 119, 255, 0.12);
  font-weight: 900;
  margin-bottom: -25px;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars span {
  color: #fbbf24;
  font-size: 22px;
}
.review-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  min-height: 54px;
}
.review-user-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: linear-gradient(135deg, #0077ff, #4ea1ff);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 800;

  box-shadow: 0 10px 24px rgba(0, 119, 255, 0.2);
}

.review-user {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.review-label {
  font-size: 13px;
  color: #64748b;
}
/* =========================
   REVIEW SWIPER
========================= */

.review-slider-wrap {
  position: relative;
}

.reviewSwiper {
  overflow: hidden;
  padding: 10px 5px 20px !important;
}
.reviewSwiper .swiper-slide {
  height: auto;
}

.reviewSwiper .review-card {
  width: 100%;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .review-section {
    padding: 35px 0;
  }

  .review-card {
    padding: 24px;
    border-radius: 22px;
  }

  .review-quote {
    font-size: 60px;
  }

  .review-text {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 25px 0;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .review-stars span {
    font-size: 20px;
  }
}
.review-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 12px 0 16px;
  padding: 8px 14px;

  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  border: 1px solid #bfdbfe;
  border-radius: 999px;

  color: #0077ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;

  transition: all 0.3s ease;
  max-width: 100%;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-product:hover {
  background: linear-gradient(135deg, #0077ff, #005fe0);
  color: #fff;
  border-color: #0077ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 119, 255, 0.25);
}
.swiper-wrapper{
  height: auto !important;
}