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

html, body {
  min-height: 100%;
  background: #000;
  font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #f4e3d3;
}

.offers-header {
  text-align: center;
  padding: clamp(32px, 6vh, 56px) 24px clamp(24px, 4vh, 40px);
  background: radial-gradient(circle at 50% 0%, #3a1f14 0%, #000 70%);
  border-bottom: 1px solid rgba(216, 168, 107, 0.15);
}

.offers-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.offers-logo {
  width: 56px;
  height: 56px;
}

.offers-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d8a86b;
  margin-bottom: 8px;
}

.offers-title {
  font-family: 'Playfair Display', 'Segoe UI', serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 900;
  color: #f7ead9;
  margin-bottom: 10px;
}

.offers-dates {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(216, 168, 107, 0.4);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #d8a86b;
  letter-spacing: 0.04em;
}

.step {
  padding: clamp(40px, 7vh, 64px) 24px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d8a86b;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', 'Segoe UI', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #f7ead9;
  margin-bottom: clamp(28px, 5vh, 48px);
}

/* --- Step 1: showroom selection --- */
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 18px;
}

.showroom-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #0f0806;
  border: 1px solid rgba(216, 168, 107, 0.2);
  border-radius: 14px;
  padding: 22px 18px;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.showroom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 168, 107, 0.55);
  background: #170d08;
}

.showroom-name {
  font-size: 0.95rem;
  color: rgba(244, 227, 211, 0.9);
}

.showroom-phone {
  font-weight: 600;
  color: #d8a86b;
  font-size: 1rem;
}

/* --- Step 2: offers --- */
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  background: none;
  border: 1px solid rgba(216, 168, 107, 0.35);
  color: #d8a86b;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.back-btn:hover {
  border-color: rgba(216, 168, 107, 0.7);
}

.selected-showroom-phone {
  display: inline-block;
  margin-top: -20px;
  margin-bottom: clamp(28px, 5vh, 48px);
  color: rgba(244, 227, 211, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
}

.selected-showroom-phone:hover {
  color: #d8a86b;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  justify-content: center;
  gap: 20px;
}

.offer-card {
  background: #0f0806;
  border: 1px solid rgba(216, 168, 107, 0.18);
  border-radius: 14px;
  padding: 18px 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 168, 107, 0.45);
}

.offer-card-media {
  position: relative;
  margin-bottom: 14px;
}

.offer-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #d8262c;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.offer-card-img,
.offer-card-placeholder {
  width: 100%;
  height: 190px;
  border-radius: 10px;
}

.offer-card-img {
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
}

.offer-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #ffffff;
  border: 1px dashed rgba(216, 168, 107, 0.4);
}

.offer-card-name {
  font-size: 0.85rem;
  min-height: 2.4em;
  color: rgba(244, 227, 211, 0.85);
  margin-bottom: 10px;
}

.offer-card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.offer-card-cutting {
  font-size: 0.85rem;
  color: rgba(244, 227, 211, 0.45);
  text-decoration: line-through;
}

.offer-card-selling {
  font-size: 1.05rem;
  font-weight: 700;
  color: #d8a86b;
}

.offer-card-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.offer-card-buy:hover {
  background: #2fe375;
  transform: translateY(-2px);
}

.offer-card-buy svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.brand-footer {
  background: #000;
  border-top: 1px solid rgba(216, 168, 107, 0.15);
  padding: clamp(20px, 4vh, 32px) 24px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(216, 168, 107, 0.55);
}

@media (max-width: 480px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-card {
    padding: 12px 10px;
  }

  .offer-card-img,
  .offer-card-placeholder {
    height: 130px;
  }

  .offer-card-buy {
    gap: 5px;
    padding: 9px 6px;
    font-size: 0.75rem;
  }

  .offer-card-buy svg {
    width: 15px;
    height: 15px;
  }

  .offer-card-badge {
    font-size: 0.58rem;
    padding: 4px 7px;
  }
}
