
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #dff4ff;
  color: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2b2b2b;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 900;
  letter-spacing: 1.5px;
}

.brand span, footer span { color: #d4af37; }

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 700;
}

.hero {
  min-height: 85vh;
  padding: 70px 6%;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
  background: linear-gradient(135deg, #dff4ff, #bfe9ff);
}

.eyebrow {
  color: #d4af37;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 10px 0 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 22px;
}

.hero-text p {
  color: #d7d7d7;
  font-size: 1.08rem;
}

.buttons { margin: 28px 0; }

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  margin-right: 12px;
}

.gold {
  background: #d4af37;
  color: #090909;
}

.dark {
  border: 1px solid #d4af37;
  color: #fff;
}

.note { color: #d4af37 !important; font-weight: 700; }

.hero-image img, .card, .logo-section, form, details {
  border-radius: 24px;
  border: 1px solid #333;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.logo-section {
  margin: 45px 6%;
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: #121212;
}

.logo-section img {
  border-radius: 18px;
}

.section {
  padding: 75px 6%;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #151515;
  overflow: hidden;
  padding-bottom: 20px;
}

.card img, .placeholder {
  height: 280px;
  width: 100%;
  object-fit: cover;
  background: #202020;
}

.placeholder {
  display: grid;
  place-items: center;
  font-size: 5rem;
}

.card h3, .card p, .card strong {
  padding: 0 20px;
}

.card strong { color: #d4af37; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  border-radius: 20px;
  height: 360px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #333;
}

.process {
  background: #111;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps div {
  background: #181818;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #333;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #d4af37;
  color: #090909;
  font-weight: 900;
  border-radius: 50%;
}

.order {
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,.12), transparent 25%),
    #090909;
}

form {
  background: #151515;
  padding: 26px;
  max-width: 650px;
}

input, select, textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
}

button {
  background: #d4af37;
  color: #090909;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  cursor: pointer;
}

small { display: block; margin-top: 12px; color: #aaa; }

details {
  background: #151515;
  padding: 18px 22px;
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

footer {
  text-align: center;
  padding: 55px 6%;
  background: #050505;
  border-top: 1px solid #222;
}

.small { color: #aaa; }

@media (max-width: 850px) {
  .topbar {
    display: block;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 0 7px;
    font-size: .9rem;
  }

  .hero, .logo-section, .cards, .gallery-grid, .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 45px;
  }
}


.cart-btn {
  margin: 14px 20px 0;
  background: #d4af37;
  color: #090909;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
}

#cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  background: #d4af37;
  color: #090909;
  border-radius: 999px;
  font-size: .8rem;
  margin-left: 4px;
}

.cart-box {
  background: #151515;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 24px;
  max-width: 850px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 16px 0;
}

.cart-item span {
  display: block;
  color: #aaa;
}

.qty-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.qty-controls button {
  padding: 8px 12px;
  border-radius: 999px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.3rem;
  color: #d4af37;
}

.cart-note {
  color: #aaa;
  margin-top: 12px;
}

@media (max-width: 650px) {
  .cart-item {
    display: block;
  }

  .qty-controls {
    margin-top: 12px;
  }
}
