
/* ═══════════════════════════════════════════
   SHOP NOW SECTION — DESIGN 2 (Billboard)
═══════════════════════════════════════════ */

.sn2-section {
  width: 100%;
  padding: 48px 16px;
  box-sizing: border-box;
  background: var(--bg);
}

.sn2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── CARD ─────────────────────────────────── */
.sn2-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-color: var(--card-bg, #f5f0eb);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sn2-card:hover {
  transform: translateY(-4px);
}

body.dark-mode .sn2-card {
  background-color: var(--card-bg-dark, #1e1e1e);
}

/* ── IMAGE ZONE ───────────────────────────── */
.sn2-img-zone {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.sn2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sn2-card:hover .sn2-img {
  transform: scale(1.06);
}

.sn2-img-mobile {
  display: none;
}

/* gradient overlay */
.sn2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.18) 60%,
    rgba(0,0,0,0.42) 100%
  );
  z-index: 1;
}

/* ── LABEL PILL — top left ────────────────── */
.sn2-label-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  z-index: 3;
}

body.dark-mode .sn2-label-pill {
  background: rgba(255,255,255,0.92);
  color: #111;
}

/* ── DISCOUNT BADGE — top right ───────────── */
.sn2-disc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* alternating badge colors */
.sn2-badge-black {
  background: #111;
  color: #fff;
}

.sn2-badge-red {
  background: #e02020;
  color: #fff;
}

/* dark mode — both stay same, they're on image so always visible */
body.dark-mode .sn2-badge-black {
  background: #111;
  color: #fff;
}

body.dark-mode .sn2-badge-red {
  background: #e02020;
  color: #fff;
}

/* ── TEXT ZONE ────────────────────────────── */
.sn2-text-zone {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--card-bg, #f5f0eb);
}

body.dark-mode .sn2-text-zone {
  background: var(--card-bg-dark, #1e1e1e);
}

.sn2-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.dark-mode .sn2-title {
  color: #f0f0f0;
}

.sn2-desc {
  font-size: 13px;
  color: #555;
  margin: 2px 0 10px;
  line-height: 1.55;
}

body.dark-mode .sn2-desc {
  color: #999;
}

/* ── BUTTON ───────────────────────────────── */
.sn2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #FFD814;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px 20px;
  border-radius: 100px;
  transition: gap 0.25s ease, background 0.2s ease;
}

.sn2-btn:hover {
  background: #f0c800;
  color: #111;
  gap: 13px;
}

/* force black text always — light and dark */
.sn2-btn,
.sn2-btn span,
body.dark-mode .sn2-btn,
body.dark-mode .sn2-btn span {
  color: #111 !important;
}

body.dark-mode .sn2-btn {
  background: #FFD814;
}

body.dark-mode .sn2-btn:hover {
  background: #f0c800;
}

/* ══════════════════════════════════════════
   MOBILE ≤ 599px
══════════════════════════════════════════ */
@media (max-width: 599px) {

  .sn2-section {
    padding: 28px 12px;
  }

  .sn2-grid {
    gap: 12px;
  }

  .sn2-img-zone {
    height: 200px;
  }

  .sn2-title {
    font-size: 20px;
  }

  .sn2-text-zone {
    padding: 14px 16px 18px;
  }

  .sn2-disc-badge {
    min-width: 44px;
    min-height: 44px;
    font-size: 10px;
    top: 10px;
    right: 10px;
  }
}

/* ══════════════════════════════════════════
   TINY ≤ 360px
══════════════════════════════════════════ */
@media (max-width: 360px) {

  .sn2-img-zone {
    height: 170px;
  }

  .sn2-title {
    font-size: 18px;
  }

  .sn2-desc {
    font-size: 12px;
  }

  .sn2-btn {
    font-size: 11px;
    padding: 9px 15px;
  }

  .sn2-disc-badge {
    min-width: 38px;
    min-height: 38px;
    font-size: 9px;
    padding: 4px 9px;
  }
}

/* ══════════════════════════════════════════
   TABLET 600–899px — 2 col
══════════════════════════════════════════ */
@media (min-width: 600px) and (max-width: 899px) {

  .sn2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sn2-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .sn2-img-zone {
    height: 240px;
  }
}

/* ══════════════════════════════════════════
   DESKTOP ≥ 900px — 3 col
══════════════════════════════════════════ */
@media (min-width: 900px) {

  .sn2-section {
    padding: 64px 32px;
  }

  .sn2-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .sn2-card:last-child:nth-child(odd) {
    grid-column: unset;
    max-width: unset;
    margin: unset;
  }

  .sn2-img-zone {
    height: 280px;
  }
}

/* ══════════════════════════════════════════
   LARGE DESKTOP ≥ 1200px
══════════════════════════════════════════ */
@media (min-width: 1200px) {

  .sn2-grid {
    gap: 24px;
  }

  .sn2-img-zone {
    height: 320px;
  }

  .sn2-text-zone {
    padding: 22px 26px 28px;
  }

  .sn2-title {
    font-size: 26px;
  }
}

/* ══════════════════════════════════════════
   ULTRA WIDE ≥ 1600px
══════════════════════════════════════════ */
@media (min-width: 1600px) {

  .sn2-img-zone {
    height: 380px;
  }
}
