/* ============================================
   GLOBAL CSS — Matériels BTP
   Charte graphique complète
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Couleurs principales */
  --black: #1F1F1F;
  --gray: #8A9096;
  --white: #F7F7F3;
  --yellow: #F2B705;
  --orange: #B74D2C;

  /* Couleurs secondaires */
  --concrete: #D1D5D8;
  --graphite: #2E2E2E;
  --metal: #6E7378;
  --steel: #A6ACB1;

  /* Couleurs fonctionnelles */
  --btn-bg: #F2B705;
  --btn-hover: #B74D2C;
  --bg: #F7F7F3;
  --text-secondary: #6E7378;

  /* Typographie */
  --font-primary: 'Oswald', sans-serif;
  --font-body: 'HK Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Espacement */
  --nav-height: 80px;
  --section-pad: 100px;
  --container: 1240px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(31,31,31,0.08);
  --shadow-md: 0 8px 32px rgba(31,31,31,0.12);
  --shadow-lg: 0 24px 64px rgba(31,31,31,0.18);
  --shadow-yellow: 0 8px 32px rgba(242,183,5,0.25);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--graphite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-family: var(--font-body); font-weight: 700; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

p { font-size: 1rem; color: var(--metal); line-height: 1.7; }
.mono { font-family: var(--font-mono); font-size: 0.875rem; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section ---- */
.section {
  padding: var(--section-pad) 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--metal);
  max-width: 560px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--graphite);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn svg, .btn i {
  font-size: 1rem;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav.transparent {
  background: transparent;
}

.nav.scrolled,
.nav.solid {
  background: var(--black);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/*
  Logo PNG version principale (orange + noir).
  Sur fond sombre (nav), on applique un filtre CSS pour :
  - Conserver l'icône orange (hue-rotate + sepia)
  - Rendre le texte noir → blanc
  Technique : brightness(0) met tout en noir,
  puis invert(1) met tout en blanc,
  puis on retinte l'icône en orange/jaune avec sepia+saturate+hue-rotate.
  Problème : filtre global = tout pareil.
  Solution la plus propre : 2 images PNG (dark + light) selon le contexte.
*/
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
  /* Couleurs originales du PNG : orange icon + texte noir */
  /* Sur la nav (fond sombre #1F1F1F), on rend le logo lisible en blanc */
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Quand la nav est transparente (hero) : pareil, fond sombre donc blanc */
.nav.transparent .nav__logo img {
  filter: brightness(0) invert(1);
}

/* Logo footer */

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12);
}

.nav__cart-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.nav__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Page Hero (non-home pages) ---- */
.page-hero {
  min-height: 380px;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,31,31,0.95) 0%, rgba(31,31,31,0.4) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 56px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-hero__breadcrumb a { color: var(--steel); }
.page-hero__breadcrumb a:hover { color: var(--yellow); }
.page-hero__breadcrumb span { color: var(--steel); }

.page-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.page-hero__title em {
  font-style: normal;
  color: var(--yellow);
}

.page-hero__desc {
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 560px;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-yellow { background: var(--yellow); color: var(--black); }
.badge-orange { background: var(--orange); color: var(--white); }
.badge-dark { background: var(--graphite); color: var(--white); }
.badge-green { background: #22c55e; color: var(--white); }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

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

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

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

.cart-drawer__header {
  padding: 24px;
  border-bottom: 1px solid var(--concrete);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
}

.cart-drawer__title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.cart-drawer__close:hover {
  background: var(--orange);
}

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

.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--metal);
}

.cart-empty i {
  font-size: 3rem;
  color: var(--concrete);
  margin-bottom: 16px;
  display: block;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--concrete);
  align-items: flex-start;
}

.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--concrete);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info { flex: 1; }

.cart-item__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 4px;
}

.cart-item__variant {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--metal);
  margin-bottom: 8px;
}

.cart-item__price {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--concrete);
  color: var(--black);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item__qty-btn:hover { background: var(--yellow); }

.cart-item__qty {
  font-family: var(--font-primary);
  font-weight: 700;
  width: 32px;
  text-align: center;
  font-size: 1rem;
}

.cart-item__remove {
  color: var(--metal);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
  padding: 4px;
}

.cart-item__remove:hover { color: var(--orange); }

/* ---- Cart Footer / Order Form ---- */
.cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--concrete);
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--concrete);
}

.cart-total__label {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
}

.cart-total__amount {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}

.cart-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-form__label {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.cart-form__input,
.cart-form__select {
  padding: 12px 16px;
  border: 1.5px solid var(--concrete);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--graphite);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.cart-form__input:focus,
.cart-form__select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(242,183,5,0.12);
}

.cart-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cart-form__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.cart-form__checkbox-label {
  font-size: 0.9rem;
  color: var(--graphite);
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Logo footer */
.footer__logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  /* Logo PNG rendu entièrement blanc pour le footer sombre */
  filter: brightness(0) invert(1);
}

.footer__brand-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.footer__brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.875rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer__social:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.footer__col-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--steel);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link::before {
  content: '→';
  color: var(--yellow);
  font-size: 0.75rem;
}

.footer__link:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(242,183,5,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text { font-size: 0.875rem; color: var(--steel); line-height: 1.5; }
.footer__contact-text strong { color: var(--white); font-weight: 600; display: block; }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--metal);
}

.footer__copy a { color: var(--yellow); }

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--metal);
  text-decoration: none;
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--yellow); }

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 20px 0;
}

/* ---- Utility ---- */
.text-yellow { color: var(--yellow); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-metal { color: var(--metal); }
.bg-dark { background: var(--black); }
.bg-graphite { background: var(--graphite); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-fade { animation: fadeIn 0.7s ease forwards; }

/* ---- Toast notification ---- */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--yellow);
  max-width: 300px;
}

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

/* ---- Mobile nav drawer ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 48px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__link {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--yellow);
  padding-left: 8px;
}

.mobile-nav__contact {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav__phone {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
    --section-pad: 64px;
  }

  .nav__links,
  .nav__cta .btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cart-drawer {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}
