/* Homepage – exact mockup match */

.home-page .section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: .04em;
}

.section-header-left {
  text-align: left;
  margin-bottom: 28px;
}

/* Hero platform */
.hero-platform {
  background: radial-gradient(circle, #fff 55%, transparent 56%);
  border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-platform img {
  max-height: 340px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.12));
}

.hero-badge {
  width: 120px;
  height: 120px;
  font-size: .68rem;
  letter-spacing: .02em;
}

/* Featured section */
.featured-section {
  padding: 50px 0 30px;
  background: var(--white);
}

.featured-section .promo-grid {
  margin-bottom: 36px;
}

.promo-desc {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.btn-white:hover {
  background: var(--dark);
  color: var(--white);
}

.promo-card.blue .btn-white {
  color: var(--blue);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Featured product card – visible ADD TO CART */
.featured-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}

.featured-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.featured-card-image {
  height: 160px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.featured-card-image img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
}

.featured-card-body {
  padding: 14px 12px 16px;
}

.featured-card-body h3 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1.3;
}

.featured-card-sub {
  font-size: .72rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.featured-card-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 10px;
}

.color-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.color-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.featured-card .btn-add {
  width: 100%;
  padding: 10px;
  font-size: .72rem;
  border-radius: 6px;
}

/* Collections 3x2 */
.collections-section {
  padding: 50px 0;
  background: var(--gray-light);
}

.collections-grid {
  grid-template-columns: repeat(3, 1fr);
}

.collection-tile {
  background: var(--white);
  min-height: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.collection-text span {
  color: var(--red);
}

.collection-tile img {
  width: 110px;
  height: 90px;
  opacity: 1;
}

/* Latest products */
.latest-section {
  background: var(--white);
}

.latest-col .products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.latest-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.latest-card-image {
  height: 180px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.latest-card-image img {
  max-height: 150px;
  object-fit: contain;
}

.latest-card-body {
  padding: 16px;
}

.latest-card-body h3 {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.latest-card-body .price-current {
  display: block;
  margin-bottom: 12px;
}

.latest-card .btn-add {
  width: 100%;
  padding: 11px;
  font-size: .75rem;
  border-radius: 6px;
}

/* Special offers white panel */
.offers-panel-white {
  background: var(--white);
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

.offers-panel-white h3 {
  font-size: 1.1rem;
  letter-spacing: .04em;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Mid banner – jeep left, text right */
.mid-banner {
  background: var(--orange);
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mid-banner-grid {
  grid-template-columns: 1fr 1.2fr;
}

.mid-banner-image img {
  max-height: 260px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.25));
}

.btn-navy {
  background: #1a2332;
  color: var(--white);
  border-radius: 6px;
  padding: 14px 32px;
}

.btn-navy:hover {
  background: #0d1520;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/* Blog author */
.blog-author {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 8px;
}

/* Benefits ribbon */
.benefits-ribbon {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid #eee;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.benefit-icon svg { width: 24px; height: 24px; }

.benefit-item h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 2px;
}

.benefit-item p {
  font-size: .75rem;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-col .products-grid-3 { grid-template-columns: 1fr; }
  .mid-banner-grid { grid-template-columns: 1fr; }
  .mid-banner-image { order: -1; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
}
