/* 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: 0.8rem 5%;
  background: rgba(5, 5, 12, 0.75); /* slightly transparent at top */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  transition: background 0.18s ease, box-shadow 0.18s ease, border-bottom-color 0.18s ease;
}

/* Header when scrolled */
.header.scrolled {
  background: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

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

.brand-name {
  font-size: 0.95rem;
  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.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2.5rem 5% 2.5rem 5%;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.4rem;
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #999;
}

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

.hero-photo {
  width: min(280px, 90%);
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* 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;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 204, 51, 0.35);
  background: #ffd84d;
}

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

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f5f5f5;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-size: 0.85rem;
}

/* Hero size guide button tweak */
#hero-size-guide {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
}

.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,
.order-confirmation {
  padding: 2.5rem 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;
}

/* Stronger separation before checkout */
.checkout-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.5rem;
  padding-top: 2.2rem;
}

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

.colors-section h2 {
  font-size: 1.2rem;
}

.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%;
  border-radius: 12px;
  background: #151520;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

/* Make the bag image responsive and non-gigantic */
.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.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;
  gap: 0.5rem;
}

.product-meta span {
  font-size: 0.8rem;
  color: #aaa;
}

.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-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.cart-close {
  background: transparent;
  border: none;
  color: #f5f5f5;
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

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

.cart-item span {
  display: block;
}

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

.cart-total-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cart-checkout-btn {
  width: 100%;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
}

.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;
}

.pay-now-btn {
  margin-top: 1rem;
  width: 100%;
}

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

/* Size guide inline */
.size-guide-inline {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.link-button {
  background: none;
  border: none;
  color: #ffcc33;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

/* Order confirmation */
.order-confirmation {
  padding-top: 0;
}

.hidden-confirmation {
  display: none;
}

.order-card {
  max-width: 520px;
  margin: 0 auto;
  background: #0b0b13;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
}

.order-card h2 {
  margin-bottom: 0.5rem;
}

.order-thankyou {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.order-summary-line {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

.order-items {
  margin: 1rem 0;
}

.order-items h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.order-items ul {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.order-note {
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 0.8rem;
}

/* Size guide modal */
.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.hidden-size-guide {
  display: none;
}

.size-guide-modal {
  background: #050509;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 1.2rem;
  max-width: 420px;
  width: 90%;
  font-size: 0.85rem;
}

.size-guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.size-guide-close {
  background: transparent;
  border: none;
  color: #f5f5f5;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.4rem;
}

.size-guide-table th,
.size-guide-table td {
  padding: 0.3rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.size-guide-table th {
  font-weight: 600;
}

.size-guide-footer {
  margin-top: 0.6rem;
  color: #ccc;
}

/* 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;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 1.8rem;
  }

  .hero-image {
    order: -1;
    margin-bottom: 1rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .cart-panel {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .header {
    padding-inline: 4%;
  }

  .hero {
    padding-inline: 4%;
  }

  .shop-section,
  .checkout-section,
  .about-section,
  .contact-section,
  .order-confirmation {
    padding-inline: 4%;
  }
}



 