*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-width: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }
.section h2 { font-size: 2rem; margin-bottom: 20px; }
.section p  { font-size: 1rem; line-height: 1.7; color: #444; margin-bottom: 14px; }
.section-1  { background: #f5f5f5; }
.section-3  { background: #f5f5f5; }

/* ════════════════════════════════
   SLIDER SECTION
════════════════════════════════ */
.section-slider {
  padding: 48px 0 52px;
  background: #fff;
}

.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.slider-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e8501a;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.slider-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}
.slider-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider-view-all {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8501a;
  text-decoration: none;
  white-space: nowrap;
}
.slider-view-all:hover { text-decoration: underline; }

.slider-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #e8501a;
  background: transparent;
  color: #e8501a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.arrow-btn:hover { background: #e8501a; color: #fff; }
.arrow-btn:disabled,
.arrow-btn.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

/* Swiper clip — always aligned to container left, right side bleeds */
.swiper-clip {
  padding-left: calc((100vw - 1200px) / 2 + 20px);
  overflow: hidden;
}
@media (max-width: 1240px) {
  .swiper-clip { padding-left: 20px; }
}

.swiper-container {
  width: 100%;
  overflow: visible;
}

/* ── Product card — plain div, no pointer on the whole card ── */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #e8501a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
  pointer-events: none; /* badge shouldn't intercept clicks */
}

/* Image — full <a> wrapping the image block */
.product-img-link {
  display: block;
  text-decoration: none;
}
.product-img-link:hover .product-img-wrap {
  background: #eef0f0;
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.2s;
}
.product-img-wrap img {
  width: 70%; height: 70%;
  object-fit: contain;
  transition: transform 0.2s;
}
.product-img-link:hover .product-img-wrap img {
  transform: scale(1.04);
}

/* Info area */
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Title — clickable <a> */
.product-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}
.product-name:hover { text-decoration: underline; color: #e8501a; }

.product-price { font-size: 1.05rem; font-weight: 700; color: #111; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.stars { display: flex; gap: 2px; }
.star        { font-size: 1rem; color: #ccc; line-height: 1; }
.star.filled { color: #e8501a; }

/* Cart button */
.cart-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  border: none;
  background: #e8501a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.cart-btn:hover { background: #c93f10; transform: scale(1.08); }
.cart-btn:active { transform: scale(0.95); }

/* ── Bottom: dots + scrollbar ── */
.slider-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.swiper-pagination-custom {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.swiper-pagination-custom .swiper-pagination-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: #e8501a;
  transform: scale(1.25);
}

.swiper-scrollbar-custom {
  height: 3px;
  background: #e8e8e8;
  border-radius: 99px;
  position: relative;
  cursor: pointer;
}
.swiper-scrollbar-custom .swiper-scrollbar-drag {
  height: 100%;
  border-radius: 99px;
  background: #e8501a;
  position: absolute;
  top: 0; left: 0;
}
