:root {
  --accent: #e67e22;
  --bg-white: #f5f5f7;
  --text-dark: #1d1d1f;
  --border-light: #d2d2d7;
}

.product-page {
  background: var(--bg-white);
  color: var(--text-dark);
}

/* LAYOUT */
.product-container {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* HERO */
.product-hero {
  border-bottom: 1px solid var(--border);
}

.badge {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--accent);
  background: rgba(230, 126, 34, 0.12);

  padding: 0.75rem 1.4rem;
  border-radius: 999px;

  margin-bottom: 1.75rem;
}

.launch-note {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #6e6e73;
}

.product-info h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.subtitle {
  color: #515154;
}

.highlights {
  list-style: none;
  padding: 0;
}

.highlights li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.6rem;
}

.highlights li::before {
  content: "›";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* SLIDER */
/* SLIDER CONTAINER */
.slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  width: 100%;
  max-width: 520px;   /* controls overall size */
  height: 360px;      /* controls visible height */
  background: white;
}

/* SLIDE STRIP */
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

/* INDIVIDUAL SLIDES */
.slides img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;     
  object-fit: contain;
  background: rgba(255, 255, 255, 0);
}

@media (max-width: 768px) {
  .slider {
    height: 260px;
  }
}
/* INTEREST */
.interest {
  background: white;
  border-top: 1px solid var(--border-light);
}

.interest h2 {
  color: var(--accent);
}

.interest-form {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.interest-form input {
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.interest-form button {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: none;
  color: black;
  font-weight: 600;
  cursor: pointer;
}

.note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.75rem;
}

/* FOOTER */
.product-footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }
}