/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #E07272;
  --teal:    #3D8B99;
  --yellow:  #F0D94A;
  --olive:   #B8B040;
  --dark:    #1C1C1C;
  --mid:     #4A4A4A;
  --light:   #F7F5F0;
  --white:   #FFFFFF;
  --border:  #E0DDD5;
  --radius:  10px;
  --max-w:   1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-primary  { background: var(--pink);   color: var(--white); }
.btn-outline  { background: transparent;   color: var(--dark);  border: 2px solid var(--dark); }
.btn-nav      { background: var(--yellow); color: var(--dark);  padding: 0.5rem 1.25rem; }
.btn-buy      { background: var(--pink);   color: var(--white); font-size: 1.1rem; padding: 1rem 2.5rem; width: 100%; text-align: center; margin-top: 1.5rem; }

/* ── Section Label ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--yellow); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--dark);
}
.logo-svg { display: block; flex-shrink: 0; }
.logo-text { font-weight: 700; letter-spacing: -0.01em; }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--dark); }

/* ── Hero ── */
.hero {
  background: var(--light);
  padding: 9rem 0 8rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-family: 'Montserrat', sans-serif;
}
.hero h1 {
  font-size: 3.25rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 2.75rem;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { display: flex; justify-content: flex-start; }
.product-render {
  width: 100%;
  max-width: 480px;
}
.product-render img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}


/* ── Product Section ── */
.product {
  padding: 9rem 0;
}
.product h2 {
  font-size: 2.25rem;
  margin-bottom: 4rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
/* ── Product Image (static) ── */
.product-image-wrap {
  width: 100%;
}
.product-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Exploded Parts Section ── */
.exploded {
  padding: 9rem 0;
  background: var(--light);
  color: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.exploded h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.exploded-sub {
  color: var(--mid);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.exploded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Axo image wrapper */
.axo-wrapper {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 1.5rem;
}
.axo-wrapper > img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Hotspots ── */
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotspot::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(224,114,114,0.5);
  flex-shrink: 0;
  transition: transform 0.15s;
  animation: hs-pulse 2.2s ease-in-out infinite;
}
.hotspot:hover::before { transform: scale(1.35); }
@keyframes hs-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(224,114,114,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(224,114,114,0); }
}

/* Label — shared base */
.hotspot::after {
  content: attr(data-label);
  position: absolute;
  background: var(--dark);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  /* default: above */
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
}
.hotspot:hover::after { opacity: 1; }

/* Label direction modifiers */
.hs-above::after { bottom: calc(100% + 6px); top: auto; left: 50%; right: auto; transform: translateX(-50%); }
.hs-below::after { top: calc(100% + 6px); bottom: auto; left: 50%; right: auto; transform: translateX(-50%); }
.hs-right::after { top: 50%; bottom: auto; left: calc(100% + 6px); right: auto; transform: translateY(-50%); }
.hs-left::after  { top: 50%; bottom: auto; left: auto; right: calc(100% + 6px); transform: translateY(-50%); }

/* Prev / Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  color: var(--dark);
}
.slide-btn:hover { background: var(--white); }
.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--pink); }

.product-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.product-desc {
  color: var(--mid);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 2px;
}
.features li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.features li strong { font-size: 0.95rem; }
.features li span   { font-size: 0.9rem; color: var(--mid); }

/* ── Buy Section ── */
.buy {
  background: var(--dark);
  padding: 6rem 0;
}
.buy-inner {
  display: flex;
  justify-content: center;
}
.price-card {
  background: #2A2A2A;
  border: 1px solid #3A3A3A;
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.price-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.currency {
  font-size: 1rem;
  color: #999;
  font-family: 'Montserrat', sans-serif;
}
.amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--yellow);
}
.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #CCC;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.secure-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #777;
  font-family: 'Montserrat', sans-serif;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner { max-width: 680px; }
.about h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.about p   { font-size: 1.05rem; color: var(--mid); line-height: 1.8; }

/* ── Contact ── */
.contact {
  padding: 2rem 0 8rem;
  text-align: center;
}
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact p  { color: var(--mid); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: #777;
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}
.footer-inner .logo-text { color: #AAA; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer-note { color: #555; }
.footer-ig {
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--pink); }

/* ── Parts Legend ── */
.parts-legend h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.legend-note {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.parts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  counter-reset: parts;
}
.parts-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  counter-increment: parts;
}
.part-dot {
  width: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part-dot::after {
  content: counter(parts) ".";
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink);
  font-family: 'Montserrat', sans-serif;
}
.parts-list li strong {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
}
.parts-list li {
  transition: opacity 0.2s;
}
.parts-list li.hs-dimmed {
  opacity: 0.2;
}
.parts-list li.hs-active {
  opacity: 1;
}

/* ── Coming Soon Bar ── */
.coming-soon-bar {
  background: var(--dark);
  color: #CCC;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.cs-link {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}
.cs-link:hover { text-decoration: underline; }

/* ── Badge row ── */
.badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.badge-row .badge { margin-bottom: 0; }
.badge-cs   { background: var(--teal);  color: var(--white); }
.badge-melb { background: var(--olive); color: var(--white); }

/* ── Notify / Waitlist Section ── */
.notify {
  background: var(--white);
  padding: 9rem 0 0;
  border-top: 1px solid var(--border);
}
.notify-inner { display: flex; justify-content: center; }
.notify-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 580px;
  width: 100%;
  color: var(--dark);
}
.notify-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.notify-sub {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.notify-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--mid);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.notify-form {}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-row input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input::placeholder { color: #AAA; }
.form-row input:focus { border-color: var(--pink); }
.form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #555;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner,
  .product-grid,
  .exploded-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 4rem 0 3rem; }
  .hero h1 { font-size: 2.1rem; }
  .nav a:not(.btn-nav) { display: none; }
  .notify-card { padding: 2rem 1.5rem; }
}
