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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050509;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(5, 5, 12, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: #ffffff;
}

.cart-btn {
  border: 1px solid #ffcc33;
  background: transparent;
  color: #ffcc33;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 5%;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 420px;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #ffcc33;
  color: #050509;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffcc33;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ffcc33;
  cursor: pointer;
  font-size: 0.8rem;
}

/* Sections */
.shop-section,
.checkout-section,
.about-section,
.contact-section {
  padding: 3rem 5%;
}

.shop-section h2,
.checkout-section h2,
.about-section h2,
.contact-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 1.5rem;
}

/* Colours gallery */
.colors-section {
  padding: 2rem 5% 0 5%;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.color-item {
  text-align: center;
}

.color-item img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #ddd;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #0b0b13;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #151520;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  color: #999;
}

.product-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.product-price {
  color: #ffcc33;
  margin-bottom: 0.5rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.product-meta select {
  background: #050509;
  color: #f5f5f5;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
}

/* Cart panel */
.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100vh;
  background: #050509;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-panel.hidden {
  transform: translateX(100%);
}

.cart-panel:not(.hidden) {
  transform: translateX(0);
}

.cart-panel h3 {
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.cart-item span {
  display: block;
}

.cart-summary {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* Checkout form */
.checkout-form {
  max-width: 480px;
  background: #0b0b13;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #050509;
  color: #f5f5f5;
  font-size: 0.9rem;
}

/* Payment options */
.payment-options {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}

.payment-options h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.payment-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.payment-option input[type="radio"] {
  accent-color: #ffcc33;
}

.bank-details {
  margin-top: 0.7rem;
  padding: 0.7rem;
  border-radius: 8px;
  background: #050509;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: #ccc;
}

.bank-details.hidden-bank {
  display: none;
}

.bank-details a {
  color: #ffcc33;
  text-decoration: none;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #aaa;
}

/* About & Contact */
.about-section p {
  max-width: 600px;
  color: #ccc;
}

.contact-section ul {
  list-style: none;
  margin-top: 0.8rem;
}

.contact-section li {
  margin-bottom: 0.4rem;
}

.contact-section a {
  color: #ffcc33;
  text-decoration: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #888;
}

/* Coming Soon overlay */
body.no-scroll {
  overflow: hidden;
}

.coming-soon {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.coming-soon.hidden-coming-soon {
  opacity: 0;
  pointer-events: none;
}

.coming-soon-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
}

.coming-soon-content {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  max-width: 420px;
}

.coming-logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.coming-soon-content p {
  margin-bottom: 0.4rem;
}

.coming-soon-content .coming-date {
  font-size: 0.9rem;
  color: #ffcc33;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.coming-soon-content .btn-primary,
.coming-soon-content .btn-secondary {
  margin: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    gap: 0.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .cart-panel {
    width: 80%;
  }

  .coming-soon-content h1 {
    font-size: 1.3rem;
  }
}
