/** Shopify CDN: Minification failed

Line 243:8 Expected identifier but found whitespace
Line 243:9 Unexpected "40px"

**/
/* ============================================
   LAZONE THEME — Style • Luxe • Été
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #F4D03F;
  --gold-dark: #A07830;
  --cream: #F7F4EE;
  --cream-dark: #EDE8DF;
  --dark: #1A1A1A;
  --dark-mid: #2C2C2C;
  --white: #FFFFFF;
  --text-muted: #7A7060;
  --red: #C0392B;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   HEADER
   ============================================ */
.lz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.lz-header__top {
  background: var(--dark);
  color: var(--gold);
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

.lz-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.lz-ticker__track {
  display: inline-flex;
  gap: 0;
  animation: lz-ticker 28s linear infinite;
  white-space: nowrap;
}

.lz-ticker__track span {
  display: inline-block;
  padding: 0 60px;
}
.lz-ticker__track span::after {
  content: '✦';
  margin-left: 60px;
  opacity: 0.5;
}

@keyframes lz-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lz-ticker:hover .lz-ticker__track { animation-play-state: paused; }

/* Header main */
.lz-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Logo centré */
.lz-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.lz-logo__word {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1;
  color: var(--dark);
}
.lz-logo__word--gold { color: var(--gold); }
.lz-logo__sub {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav desktop */
.lz-nav--desktop {
  display: flex;
  gap: 40px;
  align-items: center;
}
.lz-nav--desktop a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-mid);
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.lz-nav--desktop a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}
.lz-nav--desktop a:hover { color: var(--gold); }
.lz-nav--desktop a:hover::after { right: 0; }

/* Panier */
.lz-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
  transition: color 0.2s;
}
.lz-icon-btn:hover { color: var(--gold); }

.lz-cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Burger mobile */
.lz-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.lz-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Menu mobile */
.lz-nav--mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.lz-nav--mobile.open {
  display: flex;
  max-height: 300px;
  padding: 8px 0;
}
.lz-nav--mobile a {
  display: block;
  padding: 14px 24px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s;
}
.lz-nav--mobile a:last-child { border-bottom: none; }
.lz-nav--mobile a:hover { background: var(--cream); color: var(--gold); }
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
  color: var(--dark);
}
.lz-icon-btn:hover { background: var(--cream); color: var(--gold); }

.lz-cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ============================================
   HERO LOGO
   ============================================ */
.lz-hero__logo {
  width: 100%;
  background: var(--cream);
  padding: 36px 20px 14px;
  display: flex;
  justify-content: center;
}
.lz-hero__logo-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

.lz-logo-banner {
  width: 100%;
  background: var(--cream);
  padding: 36px 20px 14px;
  display: flex;
  justify-content: center;
}
.lz-logo-banner__svg {
  width: 100%;
  max-width: 440px;
  height: auto;
}

/* ============================================
   HERO BANNER — format panoramique
   ============================================ */
.lz-hero {
  width: 100%;
  background: var(--dark);
  position: relative;
  line-height: 0;
}
.lz-hero__banner {
  width: 100%;
  position: relative;
}
.lz-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.lz-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}
.lz-section-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
}
.lz-gold-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.lz-section-header .lz-gold-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* ============================================
   CATEGORIES
   ============================================ */
.lz-categories {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.lz-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lz-categories__grid--single {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin: 0 auto;
}

.lz-cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.lz-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.lz-cat-card__visual {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lz-cat-card__visual svg {
  width: 100%;
  height: 100%;
}

.lz-cat-card__info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lz-cat-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.lz-cat-card__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lz-cat-btn {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.lz-cat-card:hover .lz-cat-btn { color: var(--gold-dark); }

/* ============================================
   TRENDING PRODUCTS
   ============================================ */
.lz-trending {
  padding: 0 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.lz-trending__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lz-product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.lz-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.lz-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.lz-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.lz-product-card:hover .lz-product-card__img-wrap img {
  transform: scale(1.05);
}
.lz-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lz-product-card__placeholder svg { width: 80px; height: 80px; }

.lz-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lz-badge--sale { background: var(--red); color: white; }
.lz-badge--new { background: var(--gold); color: white; top: 12px; left: auto; right: 12px; }

.lz-product-card__info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.lz-product-card__vendor {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.lz-product-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.lz-product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.lz-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.lz-price--sale { color: var(--red); }
.lz-price--compare {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.lz-add-btn {
  margin-top: auto;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
}
.lz-add-btn:hover {
  background: var(--gold);
  color: white;
}

.lz-empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
  font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.lz-faq {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.lz-faq__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lz-faq__item {
  border-bottom: 1px solid var(--cream-dark);
}
.lz-faq__item:last-child { border-bottom: none; }

.lz-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--white);
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
  gap: 16px;
}
.lz-faq__question:hover {
  background: var(--cream);
  color: var(--gold-dark);
}
.lz-faq__item.open .lz-faq__question {
  background: var(--dark);
  color: var(--gold);
}

.lz-faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}
.lz-faq__item.open .lz-faq__arrow {
  transform: rotate(180deg);
}

.lz-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
  background: var(--cream);
}
.lz-faq__item.open .lz-faq__answer {
  max-height: 200px;
  padding: 20px 28px 24px;
}
.lz-faq__answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.lz-faq__answer p strong {
  color: var(--dark);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.lz-newsletter {
  background: var(--cream-dark);
  padding: 80px 40px;
  text-align: center;
}
.lz-newsletter__inner {
  max-width: 500px;
  margin: 0 auto;
}
.lz-newsletter__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
}
.lz-newsletter__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.lz-newsletter__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.lz-newsletter__divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.lz-newsletter__field-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lz-newsletter__label { display: none; }
.lz-newsletter__field {
  display: flex;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lz-newsletter__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 16px 18px;
  color: var(--dark);
}
.lz-newsletter__input:focus { outline: none; }
.lz-newsletter__required { display: none; }
.lz-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark);
  color: white;
  border: none;
  padding: 14px 26px;
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 0.2s;
}
.lz-newsletter__btn:hover { background: var(--gold); }
.lz-newsletter__btn-arrow { transition: transform 0.2s; }
.lz-newsletter__btn:hover .lz-newsletter__btn-arrow { transform: translateX(3px); }
.lz-newsletter__success {
  font-size: 0.9rem;
  color: var(--dark);
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.lz-product-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lz-product-page__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lz-product-page__main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
  width: 100%;
}
.lz-product-page__main-img img { width: 100%; height: 100%; object-fit: cover; }

.lz-product-page__thumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.lz-product-page__thumb {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.lz-product-page__thumb.active { border-color: var(--gold); }
.lz-product-page__thumb img { width: 100%; height: 100%; object-fit: cover; }

.lz-product-page__vendor {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.lz-product-page__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.lz-product-page__price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.lz-product-page__price .lz-price { font-size: 1.6rem; }
.lz-product-page__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.lz-product-page__variants,
.lz-product-page__qty {
  margin-bottom: 20px;
}
.lz-product-page__variants label,
.lz-product-page__qty label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.lz-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.lz-select:focus { outline: none; border-color: var(--gold); }

.lz-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.lz-qty button {
  width: 42px; height: 42px;
  background: var(--cream);
  color: var(--dark);
  font-size: 1.2rem;
  transition: background 0.2s;
}
.lz-qty button:hover { background: var(--gold); color: white; }
.lz-qty input {
  width: 56px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: white;
  height: 42px;
}
.lz-qty input:focus { outline: none; }

.lz-product-page__cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s;
  margin-top: 20px;
  text-align: center;
}
.lz-product-page__cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.lz-product-page__trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.lz-collection {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 40px;
}
.lz-collection__header {
  text-align: center;
  margin-bottom: 60px;
}
.lz-collection__header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.lz-collection__header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   CART
   ============================================ */
.lz-cart {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 40px;
}
.lz-cart h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 40px;
}
.lz-cart__items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.lz-cart__item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lz-cart__item img { border-radius: 8px; width: 100px; height: 100px; object-fit: cover; }
.lz-cart__item h3 { font-family: var(--font-heading); font-size: 1rem; }
.lz-cart__item-price { font-weight: 700; font-size: 1.1rem; }
.lz-cart__remove { color: var(--text-muted); font-size: 1.4rem; line-height: 1; }
.lz-cart__remove:hover { color: var(--red); }
.lz-cart__summary {
  text-align: right;
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lz-cart__total { font-size: 1.2rem; margin-bottom: 20px; }
.lz-cart__empty { text-align: center; padding: 80px 20px; }
.lz-cart__empty p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

/* ============================================
   FOOTER
   ============================================ */
.lz-footer {
  background: var(--dark);
  color: white;
  padding: 60px 40px 0;
}
.lz-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.lz-footer__logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
}
.lz-footer__logo span { color: var(--gold); }
.lz-footer__brand p {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}

.lz-footer__links h4,
.lz-footer__social h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.lz-footer__links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.lz-footer__links a:hover { color: white; }

.lz-social-icons { display: flex; gap: 14px; }
.lz-social-icons a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.lz-social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lz-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ============================================
   PAGE & FORM
   ============================================ */
.lz-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  min-height: 50vh;
}
.lz-page__inner h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.lz-page__content {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-muted);
}
.lz-page__content p { margin-bottom: 20px; }
.lz-page__content strong { color: var(--dark); font-weight: 700; }

.lz-form-group { margin-bottom: 18px; }
.lz-form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.lz-contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 40px 100px;
}
.lz-contact__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.lz-contact__header h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  white-space: nowrap;
}
.lz-contact__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.lz-contact__wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.lz-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lz-textarea { resize: vertical; font-family: var(--font-body); }
.lz-contact__success {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.lz-contact__error {
  background: #FDECEA;
  color: var(--red);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* ============================================
   404
   ============================================ */
.lz-404 {
  text-align: center;
  padding: 120px 20px;
}
.lz-404 h1 { font-family: var(--font-heading); font-size: 8rem; color: var(--gold); line-height: 1; }
.lz-404 p { font-size: 1.1rem; color: var(--text-muted); margin: 20px 0 40px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .lz-trending__grid { grid-template-columns: repeat(3, 1fr); }
  .lz-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lz-header__main { padding: 0 16px; height: 60px; }
  .lz-burger { display: flex; }
  .lz-nav--desktop { display: none; }
  .lz-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .lz-logo__word { font-size: 1.4rem; letter-spacing: 4px; }
  .lz-logo__sub { font-size: 0.5rem; letter-spacing: 2px; }
  .lz-nav--mobile { display: none; }
  .lz-nav--mobile.open { display: flex; }
  .lz-categories { padding: 50px 16px; }
  .lz-categories__grid { grid-template-columns: 1fr; }
  .lz-trending { padding: 0 16px 60px; }
  .lz-trending__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lz-product-page { grid-template-columns: 1fr; padding: 0 16px; gap: 30px; }
  .lz-product-page__thumb { display: block; }
  .lz-footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .lz-footer { padding: 40px 20px 0; }
  .lz-collection { padding: 0 16px; }
  .lz-cart { padding: 0 16px; }
  .lz-cart__item { grid-template-columns: 70px 1fr auto; }
  .lz-cart__item-price { grid-column: 2; }
  .lz-faq { padding: 40px 16px; }
  .lz-newsletter { padding: 50px 20px; }
  .lz-contact { padding: 40px 16px 60px; }
  .lz-contact__wrap { padding: 20px; }
  .lz-contact__row { grid-template-columns: 1fr; }
  .lz-section-header h2 { font-size: 1.5rem; }
  .lz-add-btn { font-size: 0.65rem; padding: 10px 8px; }
}
