/* Shared UI components for Paintium */

body .site-navbar {
  position: relative;
  z-index: 1000;
}

body .brand-pill {
  position: fixed;
  top: 1.2rem;
  left: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.08);
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body .navbar-logo {
  display: block;
  width: 95px;
  height: auto;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  body .navbar-logo {
    width: 75px;
  }
}

body .brand-pill:hover {
  color: #19beff;
  transform: translateY(-1px);
}

body .hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

body .hamburger i {
  pointer-events: none;
}


body .glass-menu {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.6rem 1.2rem 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.08);
}

body .glass-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body .menu-link {
  font-weight: 600;
  letter-spacing: -0.2px;
  font-size: 0.9rem;
  color: #222;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}

body .menu-link.active,
body .menu-link:hover {
  border-bottom-color: #19beff;
  color: #000;
}

body .menu-btn {
  background: #111;
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}

body .menu-btn:hover {
  background: #19beff;
  color: #fff;
}

body .login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

body .login-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

body .login-icon:hover {
  transform: translateY(-1px);
  background: rgba(25, 190, 255, 1);
}

body .logout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

body .logout-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

body .logout-icon:hover {
  transform: translateY(-1px);
  background: rgba(183, 140, 74, 0.14);
}

/* MODAL PANIER */
    /* .cart-modal { position: fixed; top: 0; right: -400px; width: 380px; height: 100%; background: white; box-shadow: -5px 0 30px rgba(0,0,0,0.1); z-index: 200; transition: right 0.3s ease; display: flex; flex-direction: column; }
    .cart-modal.open { right: 0; } */
    .cart-header { padding: 1.5rem; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; }
    .cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
    .cart-item { display: flex; justify-content: space-between; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #f0f0f0; }
    .cart-footer { padding: 1.5rem; border-top: 1px solid #eee; }
    .cart-total { font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
    .btn-checkout { background: #ff1919; color: white; border: none; width: 100%; padding: 0.8rem; border-radius: 40px; font-weight: 600; cursor: pointer; }
    .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 150; display: none; }
    .overlay.show { display: block; }
    .remove-item { background: none; border: none; color: #ff1919; cursor: pointer; font-size: 1.1rem; }




    /* Overlay plus élégant */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 9998;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 95vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
        -10px 0 40px rgba(0,0,0,.12),
        -2px 0 10px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    z-index: 10000;
}

.cart-modal.open {
    right: 0;
}

/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.close-cart {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 1.4rem;
    transition: .25s;
}

.close-cart:hover {
    background: #e8e8e8;
    transform: rotate(90deg);
}

/* Liste */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Item */
.cart-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: .3s;
}

.cart-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

/* Ligne du haut */
.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Image */
.cart-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #eee;
}

/* Contrôles quantité */
.qty-controls {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.qty-controls button {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    transition: .25s;
}

.qty-controls button:hover {
    background: #111;
    color: white;
}

.qty-controls span {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

/* Ligne du bas */
.cart-item-bottom {
    margin-top: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-name {
    font-weight: 600;
    color: #222;
}

.cart-item-price {
    font-weight: 700;
    color: #000;
}

/* Footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}



/* Nouveau bouton */
.btn-checkout {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: white;
    transition: .3s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
}

.btn-checkout:active {
    transform: scale(.98);
}

.glass-menu.hide-for-cart {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: .3s ease;
}

.glass-menu {
    z-index: 1000;
}

.cart-modal {
    z-index: 10000;
}

.overlay {
    z-index: 9998;
}







body .cart-icon {
  position: relative;
  cursor: pointer;
  margin-left: 0.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.12);
}

body .cart-icon .cart {
  font-size: 1.05rem;
  color: #222;
}

body .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #19beff;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}


    /* FOOTER */
    footer {
      background: #f9f9f9;
      border-top: 1px solid #ececec;
      padding: 4rem 2rem 0rem 2rem;
      position: relative;
      margin-top: 0;
      clear: both;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 3rem 6rem;
    }

    .footer-left {
      flex: 2 1 300px;
    }

    .footer-left p {
      color: #444;
      max-width: 400px;
      margin: 1.5rem 0 2rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    .social-links {
      display: flex;
      gap: 1.8rem;
      font-size: 1.8rem;
    }

    .social-links a .fa-instagram {
      color: #d62976;
    }

    .social-links a .fa-tiktok {
      color: #000000;
    }

    .social-links a .fa-facebook-f {
      color: #1877f2;
    }

    .social-links a .fa-x-twitter {
      color: #000000;
    }

    .social-links a:hover {
      opacity: 0.7;
      transform: translateY(-2px);
    }

    .footer-right {
      flex: 3 1 400px;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem 5rem;
    }

    .footer-col h4 {
      font-size: 1rem;
      margin-bottom: 1.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      color: #222;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 0.9rem;
    }

    .footer-col a {
      color: #555;
      font-size: 0.95rem;
      transition: 0.2s;
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
    }

    .footer-col a.active-page {
      border-bottom: 1px solid #b78c4a;
      color: #000;
      font-weight: 600;
    }

    .footer-col a:hover {
      color: #000;
      border-bottom-color: #19beff !important;
    }

    .giant-masthead {
      text-align: center;
      margin: 1rem auto 0;
      line-height: 1.1;
      padding-bottom: 0.2rem;
      width: 100%;
      max-width: 100%;
      overflow: visible;
      transform: none;
    }

    .giant-masthead span {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 900;
      font-size: clamp(3.8rem, 20vw, 17rem);
      text-transform: uppercase;
      background: linear-gradient(145deg, #c5c5c5, #e0e0e0be, #adadadcc, #d0d0d0ea);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
      display: block;
      line-height: 0.8;
    }

    .translate-light {
      display: inline-block;
      background: #fff;
      border-radius: 40px;
      padding: 0.3rem 1rem;
      border: 1px solid #ddd;
      color: #444;
      font-size: 0.8rem;
      margin-top: 1rem;
    }

    .goog-te-gadget-simple {
      background-color: #ffffff !important;
      border: 1px solid #dddddd !important;
    }
/* 
body footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 6rem;
}

body footer .footer-left {
  flex: 2 1 300px;
}

body footer .footer-left p {
  color: #444;
  max-width: 400px;
  margin: 1.5rem 0 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

body .social-links {
  display: flex;
  gap: 1.8rem;
  font-size: 1.8rem;
}

body .social-links a .fa-instagram {
  color: #d62976;
}

body .social-links a .fa-tiktok {
  color: #000;
}

body .social-links a .fa-facebook-f {
  color: #1877f2;
}

body .social-links a .fa-x-twitter {
  color: #000;
}

body .social-links a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

body footer .footer-right {
  flex: 3 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5rem;
}

body footer .footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  text-transform: uppercase;
}

body footer .footer-col ul {
  list-style: none;
}

body footer .footer-col li {
  margin-bottom: 0.9rem;
}

body footer .footer-col a {
  color: #555;
  font-size: 0.95rem;
  transition: 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

body footer .footer-col a.active-page {
  border-bottom: 1px solid #b78c4a;
  color: #000;
  font-weight: 600;
}

body footer .footer-col a:hover {
  color: #000;
  border-bottom-color: #b78c4a;
}

body footer .giant-masthead {
  text-align: center;
  margin: 1rem auto 0;
  line-height: 1.1;
  padding-bottom: 0.2rem;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

body footer .giant-masthead span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(3.8rem, 20vw, 17rem);
  text-transform: uppercase;
  background: linear-gradient(145deg, #c5c5c5, #e0e0e0be, #adadadcc, #d0d0d0ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  display: block;
  line-height: 0.8;
} */

@media (max-width: 992px) {
  body .hamburger {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    z-index: 1001;
  }

  body .glass-menu {
    position: fixed;
    top: 5.5rem;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s ease;
  }

  body .menu-link {
    width: auto;
  }

  body .menu-btn {
    width: fit-content;
    text-align: center;
  }

  body .brand-pill {
    left: 1rem;
    top: 1.5rem;
    padding: 0.2rem 0.7rem;
  }
}

@media (max-width: 768px) {
  body .brand-pill {
    top: 0.8rem;
    left: 1rem;
    padding: 0.15rem 0.6rem;
  }

  body .glass-menu {
    top: 0.8rem;
    padding: 0.9rem;
  }

  body .menu-link {
    font-size: 0.78rem;
  }

  body .menu-btn {
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
  }

  body footer .footer-content {
    gap: 2.5rem;
  }

  body footer .footer-right {
    gap: 2rem 3rem;
  }

  body footer .giant-masthead {
    margin-top: 2rem;
    padding-inline: 1rem;
  }

  body footer .giant-masthead span {
    font-size: clamp(2.2rem, 16vw, 6rem);
    line-height: 0.85;
  }
}

@media (max-width: 480px) {
  body footer .footer-left p {
    max-width: 100%;
  }

  body .social-links {
    gap: 1.2rem;
    font-size: 1.4rem;
  }

  body footer .giant-masthead span {
    font-size: clamp(2rem, 18vw, 4.6rem);
  }
}

/* --- Unified Hero Layout Fixes --- */
.hero-experimental {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 8rem 1.5rem 2rem !important; /* Space for navbar */
  position: relative;
}

.hero-experimental .top-phrase {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  margin-bottom: 3rem !important;
  z-index: 10;
}

.hero-experimental .wrapper {
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-experimental .inner {
  margin: 0 auto;
}

.hero-editions {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding: 7rem 1.5rem 4rem !important;
}

.hero-editions .hero-content {
  margin: auto 0;
  position: relative;
  z-index: 2;
}

/* Consolidating Responsive UI */
@media (max-width: 992px) {
  body .brand-pill {
    left: 1rem;
    top: 1.5rem;
  }
  body .glass-menu {
    top: 5.5rem;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  body .brand-pill {
    top: 0.8rem;
  }
  body .glass-menu {
    top: 0.8rem;
    border-radius: 60px;
    padding: 0.5rem 1rem;
  }
}