/* ============================================
   MORSAY SHOP — Stylesheet
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray: #888;
  --gray-dark: #2a2a2a;
  --red: #e63946;
  --accent: #d4af37;
  --font-display: 'Helvetica Neue', 'Arial Black', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TICKER (bandeau défilant)
   ============================================ */
.ticker {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 40px;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 99;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gray);
}
/* Footer logo blanc */
.footer .logo img { height: 48px; }
.footer .logo-text { color: rgba(255,255,255,0.6); }

/* Hero logo */
.hero-logo {
  height: 100px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .logo img { height: 30px; }
  .logo-text { font-size: 12px; letter-spacing: 1.5px; }
  .hero-logo { height: 70px; }
}
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--black);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.cart-btn {
  position: relative;
  padding: 8px;
  color: var(--black);
  transition: transform 0.2s;
}
.cart-btn:hover { transform: scale(1.1); }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #eee;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f4f4f4;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    var(--black);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  from { transform: translate(0, 0); }
  to { transform: translate(60px, 60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}
.hero-tag {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.hero-title .line { display: block; }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0.85;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.hero .btn-primary:hover { box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================
   PRODUITS — Grille
   ============================================ */
.products-section {
  padding: 100px 0;
  background: var(--white);
}
.section-head { margin-bottom: 64px; }
.section-tag {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
.product-card {
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover { transform: translateY(-8px); }
.product-img-wrap {
  position: relative;
  background: var(--gray-light);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: 1px;
}
.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-cat {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

/* Placeholder coming soon */
.product-card.coming-soon { cursor: default; }
.product-card.coming-soon:hover { transform: none; }
.product-img-wrap.placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.placeholder-content { text-align: center; padding: 20px; }
.placeholder-img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}
.placeholder-text {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
}

.section-cta { text-align: center; }

/* ============================================
   BAND (texte défilant grand format)
   ============================================ */
.band {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  overflow: hidden;
}
.band-track {
  display: flex;
  white-space: nowrap;
  animation: band 25s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -2px;
}
.band-track span { flex-shrink: 0; padding-right: 40px; }
@keyframes band {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   FEATURES (avantages)
   ============================================ */
.features {
  padding: 80px 0;
  background: var(--gray-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 24px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 20px;
}
.feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   PRODUIT — Page détail
   ============================================ */
.product-page { padding: 60px 0 100px; }
.product-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  background: var(--gray-light);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 16px;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumb {
  background: var(--gray-light);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  border: 2px solid transparent;
}
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--black);
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.product-detail .price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}
.product-detail .description {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}
.option-group { margin-bottom: 24px; }
.option-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  padding: 12px 18px;
  border: 1.5px solid #ddd;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  min-width: 50px;
  transition: all 0.2s;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #ddd;
}
.qty-btn {
  width: 44px; height: 44px;
  font-size: 18px;
  font-weight: 600;
  background: var(--white);
}
.qty-btn:hover { background: var(--gray-light); }
.qty-input {
  width: 50px;
  height: 44px;
  border: none;
  border-left: 1.5px solid #ddd;
  border-right: 1.5px solid #ddd;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
}
.qty-input:focus { outline: none; }

.actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.actions .btn { flex: 1; min-width: 200px; }

.product-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.meta-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  font-size: 14px;
  color: #555;
}
.meta-row svg { flex-shrink: 0; color: var(--black); }

/* Accordion */
.accordion { margin-top: 32px; }
.acc-item { border-bottom: 1px solid #eee; }
.acc-head {
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-head::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
}
.acc-item.open .acc-head::after { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body-inner {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.acc-item.open .acc-body { max-height: 500px; }

/* ============================================
   BOUTIQUE — Page liste
   ============================================ */
.shop-header {
  padding: 80px 0 40px;
  text-align: center;
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 100px);
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 16px;
}
.shop-header p { color: var(--gray); font-size: 16px; }

.shop-grid {
  padding-bottom: 100px;
}

/* ============================================
   PANIER
   ============================================ */
.cart-page { padding: 60px 0 100px; min-height: 60vh; }
.cart-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 40px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.cart-items { border-top: 1px solid #eee; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.cart-item-img {
  width: 100px; height: 120px;
  background: var(--gray-light);
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info .opts { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.cart-item-info .price { font-size: 16px; font-weight: 700; }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.remove-btn {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.remove-btn:hover { color: var(--red); }

.cart-summary {
  background: var(--gray-light);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
}
.summary-row.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--black);
  font-size: 20px;
  font-weight: 800;
}
.cart-summary .btn { margin-top: 24px; }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-page { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 48px;
}
.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 32px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 15px; line-height: 1.7; color: #444; }
.contact-info a { font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #444;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--black);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-success {
  background: #f0f9f0;
  border-left: 3px solid #2ecc71;
  padding: 16px 20px;
  font-size: 14px;
  color: #1f7a3f;
  display: none;
}
.form-success.show { display: block; }

/* ============================================
   PAGES TEXTE (CGV, mentions, livraison)
   ============================================ */
.text-page { padding: 60px 0 100px; max-width: 800px; margin: 0 auto; }
.text-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.text-page .updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
}
.text-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
}
.text-page p, .text-page li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}
.text-page ul { padding-left: 22px; margin-bottom: 16px; }

/* ============================================
   PAGE MERCI
   ============================================ */
.thank-you-page {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thank-you {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.check-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thank-you h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.thank-you .big-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.thank-you p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.7;
}
.thank-you .small {
  font-size: 13px;
  color: var(--gray);
  margin-top: 24px;
}
.thank-you-cta { margin-top: 40px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.7; max-width: 280px; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-badge {
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  letter-spacing: 0.5px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.6;
}

/* ============================================
   ANIMATIONS (fade-up, reveal)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.25s; }
.fade-up.delay-3 { animation-delay: 0.5s; }
.fade-up.delay-4 { animation-delay: 0.7s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   TOAST (notification ajout panier)
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateY(120%);
  transition: transform 0.4s ease;
  z-index: 1000;
  max-width: 320px;
}
.toast.show { transform: translateY(0); }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; gap: 32px; }
  .cart-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav { display: none; }
  .burger { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 16px; }
  .hero-title { letter-spacing: -2px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .products-section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .products-grid { gap: 24px; grid-template-columns: 1fr; }

  .band { padding: 24px 0; }

  .features { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .feature { padding: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .product-page { padding: 32px 0 60px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }

  .cart-page { padding: 32px 0 60px; }
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img info"
      "img actions";
    gap: 14px;
  }
  .cart-item-img { grid-area: img; width: 80px; height: 100px; }
  .cart-item-info { grid-area: info; }
  .cart-item-actions { grid-area: actions; flex-direction: row; justify-content: space-between; align-items: center; }
  .cart-summary { padding: 24px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-page { padding: 40px 0; }

  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

@media (max-width: 380px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
