@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --beige:       #EDE5D8;
  --beige-dark:  #D9CEBD;
  --or:          #C9A84C;
  --or-dark:     #A8892E;
  --texte:       #1A1A1A;
  --blanc:       #ffffff;
  --gris-clair:  #F7F5F1;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-logo {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--texte);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .25s, border-color .25s;
}

.nav-links a:hover {
  color: var(--or);
  border-color: var(--or);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.contact-btn {
  color: var(--texte);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1.5px solid var(--texte);
  padding: 8px 16px;
  border-radius: 3px;
  transition: all .25s;
}

.contact-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: #fff;
}

/* Panier */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--texte);
  cursor: pointer;
  padding: 6px;
  transition: color .2s, transform .2s;
}

.cart-btn:hover {
  color: var(--or);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--or);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--texte);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.mobile-nav {
  display: none;
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: var(--texte);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-bottom: 1px solid var(--beige-dark);
  transition: color .2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--or);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #3A2810;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2E1E0A 0%, #3D2B12 50%, #2A2016 100%);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 3;
}

.slide-text {
  flex: 1;
}

.slide-badge {
  display: inline-block;
  background: var(--or);
  color: #111;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.slide-text h1,
.slide-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}

.slide-text h1 span,
.slide-text h2 span {
  color: var(--or);
}

.slide-text p {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .5px;
  margin-bottom: 30px;
}

.slide-cta {
  display: inline-block;
  background: var(--or);
  color: #111;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 3px;
  transition: all .3s;
}

.slide-cta:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,.35);
}

.slide-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.slide-img img {
  max-width: 88%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 25px 55px rgba(0,0,0,.55));
  transition: transform .1s ease-out;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.slide.active .fade-up:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}

.slide.active .fade-up:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .45s;
}

.slide.active .fade-up:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .65s;
}

.slide.active .fade-up:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .85s;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--or);
  border-color: var(--or);
  color: #111;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all .3s;
}

.dot.active {
  background: var(--or);
  width: 24px;
  border-radius: 8px;
}

/* ============================================================
   PRODUCT SECTIONS
   ============================================================ */
.products-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--texte);
}

.section-title span {
  color: var(--or);
}

.section-sub {
  color: #888;
  font-size: 13px;
}

.page-header {
  text-align: center;
  padding: 60px 0 30px;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.page-header p {
  color: #888;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  border-color: rgba(201,168,76,.28);
}

.product-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-clair);
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: background .2s ease;
}

.product-card:hover .product-img {
  background: #FDF6E8;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .2s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.02);
}

.product-info {
  flex: 1;
  padding-bottom: 12px;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 6px;
}

.product-info .price,
.price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--or);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-voir,
.btn-add-cart {
  flex: 1;
  min-height: 46px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  padding: 0 14px;
}

.btn-voir {
  background: var(--or);
  color: #111;
}

.btn-voir:hover {
  background: var(--or-dark);
  color: #fff;
}

.btn-add-cart {
  background: #111;
  color: #fff;
}

.btn-add-cart:hover {
  background: #333;
}

.btn-add-cart:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.product-card .btn-voir {
  position: relative;
  z-index: 3;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--texte);
}

.product-detail-info .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--or);
}

.product-detail-info p,
.product-detail-info div {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.product-detail-image img {
  background: var(--gris-clair);
  padding: 20px;
  border-radius: 16px;
}

.product-detail .btn-add-cart,
.product-detail .btn-checkout {
  min-height: 50px;
  padding: 0 20px;
}

.product-detail .btn-checkout {
  width: auto;
}

/* ============================================================
   PANIER LATÉRAL
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -105%;
  width: 390px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transition: right .45s cubic-bezier(.77,0,.175,1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-head {
  padding: 20px 24px;
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h3 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
  line-height: 1;
  transition: color .2s, transform .2s;
}

.cart-close:hover {
  color: #d00;
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-info p {
  font-size: 12px;
  font-weight: 800;
  color: var(--or);
}

.cart-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: color .2s;
  flex-shrink: 0;
}

.cart-remove:hover {
  color: #e00;
}

.cart-foot {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-weight: 800;
}

.cart-total-row span:last-child {
  font-size: 16px;
  color: var(--or);
}

.cart-note {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .3s;
}

.btn-checkout:hover {
  background: #1aad54;
  transform: translateY(-2px);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1400;
  display: none;
  backdrop-filter: blur(2px);
}

.cart-overlay.show {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #141414;
  color: #bbb;
  padding: 55px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 35px;
  padding-bottom: 45px;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

.footer h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}

.footer-contact {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.footer-contact i {
  width: 16px;
  color: var(--or);
  margin-right: 6px;
}

.social-row {
  display: flex;
  gap: 16px;
  font-size: 1.3rem;
}

.social-row a {
  color: #666;
  transition: color .3s, transform .3s;
}

.social-row a:hover {
  color: var(--or);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #222;
  font-size: 10px;
  color: #444;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-hero {
  text-align: center;
  padding: 90px 20px 50px;
  background: linear-gradient(to bottom, #1C1C1C, #2A2318 60%, #3D3120);
  color: #fff;
}

.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-hero p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.contact-cards {
  max-width: 660px;
  margin: 50px auto 70px;
}

.social-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px 26px;
  border-radius: 12px;
  border: 1px solid #eee;
  color: #333;
  margin-bottom: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-color: transparent;
}

.social-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 20px;
}

.wa  { background: #e6f9ef; color: #25D366; }
.ig  { background: #fff0f5; color: #e1306c; }
.tt  { background: #f0f0f0; color: #111; }

.social-card-info h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.social-card-info p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 6px;
}

.social-link {
  font-size: 11px;
  font-weight: 700;
}

.wa-col { color: #25D366; }
.ig-col { color: #e1306c; }
.tt-col { color: #333; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 9px; }
  .slide-text h1,
  .slide-text h2 { font-size: 3rem; }
  .hero { height: 560px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .nav-inner {
    padding: 0 16px;
    height: 68px;
  }

  .main-logo { height: 64px; }

  .nav-links,
  .contact-btn {
    display: none;
  }

  .hamburger { display: flex; }

  .hero { height: 480px; }

  .slide-inner {
    flex-direction: column-reverse;
    gap: 10px;
    padding: 16px;
    justify-content: center;
  }

  .slide-text { text-align: center; }

  .slide-text h1,
  .slide-text h2 { font-size: 1.9rem; }

  .slide-text p {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .slide-cta {
    padding: 12px 26px;
    font-size: 9px;
  }

  .slide-badge {
    font-size: 8px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .slide-img img {
    max-width: 50%;
    max-height: 160px;
  }

  .slider-prev {
    left: 8px;
    width: 36px;
    height: 36px;
    font-size: .85rem;
  }

  .slider-next {
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: .85rem;
  }

  .products-section { padding: 48px 0; }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .product-card { padding: 14px; }

  .product-img { height: 160px; }

  .product-info h3 { font-size: .95rem; }
  .product-info .price { font-size: .85rem; }

  .product-actions {
    flex-direction: column;
  }

  .section-title { font-size: 1.8rem; }
  .page-header h1 { font-size: 1.8rem; }

  .product-detail-info h1 {
    font-size: 2rem;
  }

  .cart-sidebar { width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .contact-hero {
    padding: 70px 16px 36px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-cards {
    padding: 0 16px;
  }

  .social-card {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .hero { height: 420px; }

  .slide-text h1,
  .slide-text h2 { font-size: 1.6rem; }

  .slide-img img { max-width: 44%; }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 1.7rem;
  }

  .social-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .social-icon-box {
    margin-right: 0;
    margin-bottom: 14px;
  }
}

/* ============================================================
   FIX CLIC / HOVER SUR CARTES PRODUITS
   ============================================================ */
.product-card,
.btn-voir,
.btn-add-cart,
a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.product-card {
  user-select: none;
}

.product-card:active {
  transform: none !important;
}

.btn-voir:active,
.btn-add-cart:active {
  transform: none !important;
}

@media (hover: none), (pointer: coarse) {
  .product-card,
  .product-card:hover,
  .product-card:active,
  .product-card:focus-within {
    transform: none !important;
    box-shadow: none !important;
    border-color: #ebebeb !important;
  }

  .product-card .product-img,
  .product-card:hover .product-img,
  .product-card:active .product-img {
    background: var(--gris-clair) !important;
  }

  .product-card .product-img img,
  .product-card:hover .product-img img,
  .product-card:active .product-img img {
    transform: none !important;
  }

  .btn-voir,
  .btn-voir:hover,
  .btn-voir:active,
  .btn-voir:focus {
    transform: none !important;
  }
}

/* ============================================================
   MODAL PRODUIT
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.modal-img-col {
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 35px;
  border-radius: 16px 0 0 16px;
}

.modal-img-col img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.15));
}

.modal-body {
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--or);
  margin-bottom: 18px;
}

.modal-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 14px 0;
}

.modal-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 18px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.modal-tag {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  color: #555;
}

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

.btn-panier,
.btn-wa {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .25s ease;
}

.btn-panier {
  background: var(--or);
  color: #111;
}

.btn-panier:hover {
  background: var(--or-dark);
  color: #fff;
}

.btn-wa {
  background: #25D366 !important;
  color: #fff !important;
}

.btn-wa:hover {
  background: #1aad54 !important;
  color: #fff !important;
}

.modal-buttons .btn-wa,
#product-modal .btn-wa,
#m-wa {
  background: #25D366 !important;
  color: #fff !important;
}

.modal-buttons .btn-wa:hover,
#product-modal .btn-wa:hover,
#m-wa:hover {
  background: #1aad54 !important;
  color: #fff !important;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: all .2s;
}

.modal-close-btn:hover {
  background: #fff;
  color: #d00;
}

@media (max-width: 768px) {
  .modal-box {
    grid-template-columns: 1fr;
  }

  .modal-img-col {
    border-radius: 16px 16px 0 0;
    padding: 30px 20px;
  }

  .modal-img-col img {
    max-height: 180px;
  }

  .modal-body {
    padding: 24px 20px 22px;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}