/* Homepage featured products — scoped to .product_bg / .site-featured */
.site-featured.product_bg {
  --feat-navy: #0f2d6b;
  --feat-blue: #153f8f;
  --feat-deep: #093480;
  --feat-ink: #1a2332;
  --feat-muted: #6b7a90;
  --feat-line: rgba(21, 63, 143, 0.12);
  --feat-steel: #eef2f8;
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(21, 63, 143, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(15, 45, 107, 0.06), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f8 48%, #f7f9fc 100%);
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.site-featured.product_bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--feat-blue) 0%, #4a7fd4 40%, transparent 75%);
  pointer-events: none;
}

.site-featured .product_index {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* —— Section head —— */
.site-featured__head.product_head {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 640px;
}

.site-featured__head.product_head h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--feat-ink);
  text-transform: none;
}

.site-featured__head.product_head h2 span {
  display: none;
}

.site-featured__desc,
.site-featured__head.product_head p.site-featured__desc {
  margin: 10px 0 0 !important;
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.55;
  color: var(--feat-muted) !important;
}

/* —— Product grid —— */
.site-featured .index_hot_product_main.site-featured__grid,
.site-featured .index_hot_product_main {
  width: 100% !important;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.site-featured .product_img {
  float: none !important;
  position: relative;
  width: 25% !important;
  padding: 10px !important;
  min-height: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.site-featured .product_img > a {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--feat-line);
  border-radius: 4px 4px 0 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-featured .product_img > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--feat-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  z-index: 2;
}

.site-featured .product_img img.img-thumbnail,
.site-featured .product_img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  border: none !important;
  border-radius: 0 !important;
  background: #fff;
  opacity: 1;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.site-featured .product_img .product_title {
  margin: 0;
  padding: 14px 12px 16px;
  min-height: calc(1.4em * 2 + 30px);
  background: #fff;
  border: 1px solid var(--feat-line);
  border-top: none;
  border-radius: 0 0 4px 4px;
  text-align: center;
  height: auto;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-featured .product_img .product_title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--feat-ink);
  transition: color 0.2s ease;
}

.site-featured .product_img:hover > a {
  border-color: rgba(21, 63, 143, 0.28);
  box-shadow: 0 -4px 20px rgba(15, 45, 107, 0.08);
}

.site-featured .product_img:hover > a::after {
  transform: scaleX(1);
}

.site-featured .product_img:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.site-featured .product_img:hover .product_title {
  border-color: rgba(21, 63, 143, 0.28);
  box-shadow: 0 10px 24px rgba(15, 45, 107, 0.1);
}

.site-featured .product_img:hover .product_title a {
  color: var(--feat-blue);
}

/* Visually group card */
.site-featured .product_img > a,
.site-featured .product_img .product_title {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .site-featured .product_img {
    width: 33.333% !important;
  }

  .site-featured__head.product_head h2 {
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) {
  .site-featured.product_bg {
    padding: 40px 0;
  }

  .site-featured__head.product_head {
    margin-bottom: 24px;
  }

  .site-featured__head.product_head h2 {
    font-size: 28px;
  }

  .site-featured .product_img {
    width: 50% !important;
    padding: 6px !important;
  }

  .site-featured .product_img img.img-thumbnail,
  .site-featured .product_img img {
    padding: 12px;
  }

  .site-featured .product_img .product_title {
    padding: 10px 8px 12px;
    min-height: calc(1.35em * 2 + 22px);
  }

  .site-featured .product_img .product_title a {
    font-size: 13px;
  }
}
