﻿:root {
  --bg: #0d0f16;
  --bg-soft: #151927;
  --text: #f3f5ff;
  --muted: #b7bdd4;
  --accent: #f6a33b;
  --accent-2: #7a8cff;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 40px rgba(3, 5, 13, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #0b0d14 0%, #13182a 55%, #0f1119 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.28;
}

.ambient-a {
  background: #f6a33b;
  left: -8vw;
  top: -8vw;
  animation: floatA 12s ease-in-out infinite;
}

.ambient-b {
  background: #7a8cff;
  right: -10vw;
  bottom: -8vw;
  animation: floatB 15s ease-in-out infinite;
}

@keyframes floatA {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(20px,30px,0); }
}

@keyframes floatB {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-30px,-20px,0); }
}

.container { width: min(1160px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(9, 11, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.cart-dot {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0 0.34rem;
  margin-left: 0.24rem;
  background: var(--accent);
  color: #17110a;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 0.42rem 0.72rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  padding: 5.3rem 0 2.3rem;
}

.hero-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
}

h1, h2, h3 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
  text-wrap: balance;
}

h1, h2 {
  font-family: "Syne", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

p { margin: 0 0 1rem; color: var(--muted); }

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.btn {
  border: none;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.7rem 1.12rem;
  font-weight: 800;
  cursor: pointer;
  color: #1b1307;
  background: linear-gradient(135deg, #ffd08f, var(--accent));
  box-shadow: 0 10px 22px rgba(246, 163, 59, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 1.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  padding: 0.72rem 0;
  animation: scrollTicker 16s linear infinite;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  color: #f7cd8a;
}

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

.section { padding: 1.2rem 0 2.4rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card,
.product-card,
.cart-item,
.cart-summary,
.product-detail {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.product-card {
  padding: 0.85rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 163, 59, 0.4);
}

.product-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.72rem;
}

.product-link { text-decoration: none; color: inherit; }

.product-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.6rem; }

.meta-pill {
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.22rem 0.56rem;
  color: #e8ebfb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.rating-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: #d2d8f0;
  font-size: 0.82rem;
  margin-bottom: 0.52rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.card-actions { display: flex; gap: 0.45rem; }

.price {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.product-detail img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.product-content { display: grid; gap: 0.55rem; }

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.product-highlights div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.58rem;
  background: rgba(255, 255, 255, 0.04);
}

.product-highlights span {
  display: block;
  font-size: 0.76rem;
  color: #bec8e4;
}

.product-highlights strong {
  color: #fff;
  font-size: 0.9rem;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.size-title {
  width: 100%;
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: #d6dcf2;
}

.size-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f3f5ff;
  background: rgba(255, 255, 255, 0.06);
}

.detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.cart-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
}

.remove-btn {
  border: 1px solid rgba(255, 114, 114, 0.5);
  background: rgba(255, 114, 114, 0.12);
  color: #ffb9b9;
  border-radius: 8px;
  padding: 0.3rem 0.56rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  padding: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.about-grid,
.two-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.two-col { grid-template-columns: 1fr 1fr; }

.contact-form { display: grid; gap: 0.75rem; }

label {
  font-weight: 700;
  color: #e6eaf8;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.3rem;
  border-radius: 9px;
  border: 1px solid var(--line);
  padding: 0.62rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.footer-row {
  padding: 1rem 0;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  background: #1e1f2a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 80;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero,
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .two-col,
  .product-highlights { grid-template-columns: 1fr; }

  .nav { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(13, 15, 22, 0.96);
    padding: 0.7rem;
  }

  .nav-links.open { display: flex; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  .hero-actions .btn,
  .detail-actions .btn { width: 100%; }
  .detail-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .toast {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
