/* ── Reset & Variables ──────────────────────────────────────────────────── */
:root {
  --red: #E31B23;
  --red-dark: #c0141c;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #F4F4F4;
  --gray-mid: #999999;
  --green: #25D366;
  --green-dark: #1eb858;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── NAV ────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 #eee;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--red);
  letter-spacing: 3px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

#nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--red) !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: white;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-wa-nav:hover { background: var(--green-dark); }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  padding: 4px;
  transition: color 0.2s;
  line-height: 0;
}

#nav.scrolled .cart-btn { color: var(--black); }
.cart-btn:hover { color: var(--red) !important; }

.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-count.show { display: flex; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 600px;
  background: url('assets/27e54085-365b-458c-843e-f0711f518a4a.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.75;
  font-weight: 500;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 180px);
  line-height: 0.88;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-tagline {
  font-size: clamp(13px, 1.6vw, 16px);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  opacity: 0.85;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 15px 38px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 15px 38px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.7);
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: white;
  color: var(--black);
  border-color: white;
}

/* ── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--red);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: white;
  padding: 0 32px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ──────────────────────────────────────────────────────────────── */
#about {
  padding: 110px 48px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-imgs img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-imgs img:last-child { margin-top: 44px; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

.about-body:last-of-type { margin-bottom: 36px; }

/* ── COLLECTION ─────────────────────────────────────────────────────────── */
#collection {
  padding: 90px 48px;
  background: var(--gray);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ───────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
}

.product-info {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.product-variant {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.selector-group { margin-bottom: 12px; }

.selector-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 7px;
}

.size-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.size-btn {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #ddd;
  background: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  transition: all 0.15s;
  white-space: nowrap;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: white;
}

.add-btn {
  width: 100%;
  background: var(--black);
  color: white;
  border: none;
  padding: 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 16px;
}

.add-btn:hover { background: var(--red); }

.add-btn.added {
  background: var(--red);
  pointer-events: none;
}

/* ── PRODUCT IMAGE GALLERY ──────────────────────────────────────────────── */
.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s;
  z-index: 2;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.product-card:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: rgba(255, 255, 255, 1); }

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

.gallery-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.75); }

/* ── CART DRAWER ────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-head-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--black);
  line-height: 0;
  padding: 4px;
  transition: color 0.2s;
}

.icon-btn:hover { color: var(--red); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

.cart-empty-msg {
  text-align: center;
  padding: 70px 20px 0;
  color: #bbb;
}

.cart-empty-msg p:last-child { font-size: 12px; margin-top: 8px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.cart-item-img {
  width: 76px;
  height: 95px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--gray-mid);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: white;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.qty-btn:hover { border-color: var(--black); background: var(--black); color: white; }

.qty-val {
  font-size: 13px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
  margin-left: auto;
  transition: color 0.2s;
  padding: 0;
}

.remove-btn:hover { color: var(--red); }

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
}

.cart-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.total-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.total-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.checkout-email-btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.checkout-email-btn:hover { background: var(--red-dark); }

.checkout-wa-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 13px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  line-height: 0;
}

.checkout-wa-btn span { line-height: 1; font-size: 10px; }
.checkout-wa-btn:hover { background: var(--green-dark); }

/* ── CHECKOUT MODAL ─────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: white;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-head {
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.modal-head-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1.5px;
}

.modal-body { padding: 28px; }

.order-summary-box {
  background: var(--gray);
  padding: 20px;
  margin-bottom: 26px;
}

.order-sum-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #888;
}

.order-sum-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  margin-bottom: 7px;
  gap: 12px;
}

.order-sum-item span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-sum-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #ddd;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #666;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  color: var(--black);
  background: white;
}

.form-input:focus { border-color: var(--black); }

.form-input::placeholder { color: #bbb; }

.submit-btn {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 8px;
}

.submit-btn:hover:not(:disabled) { background: var(--red-dark); }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; }

/* ── SUCCESS STATE ──────────────────────────────────────────────────────── */
.success-wrap {
  text-align: center;
  padding: 50px 28px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: #e8f9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #27ae60;
}

.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.success-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-close-btn {
  background: var(--black);
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.success-close-btn:hover { background: var(--red); }

/* ── WHATSAPP FAB ───────────────────────────────────────────────────────── */
#wa-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}

#wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

/* ── TOAST ──────────────────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--black);
  color: white;
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 500;
  z-index: 500;
  max-width: 280px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1.4;
}

#toast.show { opacity: 1; transform: translateY(0); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: white;
  padding: 70px 48px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--red);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  max-width: 270px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: #555;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.footer-links a {
  color: #aaa;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy { font-size: 11px; color: #444; letter-spacing: 0.5px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }

  #about { padding: 70px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { order: -1; }

  #collection { padding: 60px 24px; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer { padding: 50px 24px 28px; }

  .cart-drawer { width: 100vw; }
  #wa-fab { bottom: 20px; right: 20px; }
  #toast { right: 16px; bottom: 90px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 220px; text-align: center; }
}
