/* =========================
   Quantity Selector
   ========================= */
.quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  color: #222;
  margin-bottom: 20px;
}

.quantity-selector label {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.quantity-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: #fafafa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.quantity-input-wrapper:focus-within {
  border-color: #007cff;
  box-shadow: 0 0 4px rgba(0, 124, 255, 0.3);
}

.qty-btn {
  background: #fff;
  color: #333;
  border: none;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #007cff;
  color: #fff;
}

.qty-btn:active {
  transform: scale(0.95);
}

.quantity-selector input[type="number"] {
  width: 60px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  font-weight: 500;
  color: #222;
  pointer-events: none;
}

/* ===========================
   Modal Styles
   =========================== */
.modal {
  display: none; /* caché par défaut */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 400px;
  max-width: 90%;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideIn 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
  transition: color 0.3s ease, transform 0.2s ease;
}
.close-btn:hover {
  color: var(--maroon);
  transform: scale(1.1);
}

.modal-title {
  text-align: right;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 16px;
}

.product-summary {
  display: flex;
  gap: 14px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  align-items: center;
}

.product-img {
  width: 30%;
  height: 30%;
  object-fit: cover;
}

.product-info h4 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.product-info .price {
  font-weight: 500;
  margin: 6px 0;
}
.product-info .style,
.product-info .quantity {
  font-size: 13px;
  color: #555;
  margin: 2px 0;
}

.modal-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn {
  padding: 14px;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease, transform 0.2s ease;
}

.btn.black {
  background: var(--maroon);
  color: #fff;
  border: none;
}
.btn.black:hover {
  background: var(--cherry);
  transform: scale(1.02);
}
.btn.white {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.btn.white:hover {
  background: var(--maroon);
  color: #fff;
  transform: scale(1.02);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive modal actions */
@media (max-width: 640px) {
  .modal-content {
    padding: 20px;
  }
  .modal-actions {
    flex-direction: row;
    gap: 8px;
  }
}

/* =========================
   Variables & Reset
   ========================= */
:root{
  --midnight: #0B1724;   
  --maroon:   #7A0B1A;  
  --cherry:   #B22234;   
  --cream:    #FAF6F0;   
  --white:    #FFFFFF;
  --muted:    #6B7280;
  --radius:   12px;
  --max-width: 100%;
  --container-gap: 24px;
  --shadow: 0 8px 30px rgba(11,23,36,0.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  padding: 0;
  font-family: "Red Hat Display", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 500;
  color:var(--midnight);
  background: var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;border-radius:8px}
button{font-family:inherit}

/* Fix for Card-icon button background */
button.Card-icon {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

button.Card-icon span {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid white;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
}

/* =========================
   Layout
   ========================= */
.wrap{
  max-width:var(--max-width);
  margin:0;
  padding:0;
}

/* Specific spacing for blog page */
body.blog-page .wrap {
  padding-top: 15%;
}

/* Use Playfair Display for the blog page headings and main body text */
body.blog-page {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Keep nav/header using the condensed display font; apply Playfair for blog headings */
body.blog-page .site-header { font-family: 'PT Futura Condensed Book', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
body.blog-page .blog-main h1,
body.blog-page .blog-card h3,
body.blog-page .blog-card-long h3,
body.blog-page .blog-card-small h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Specific spacing for about page */
body.about-page .wrap {
  padding-top: 10%;
}

header.site-header{
  position: fixed;
  /* -webkit-backdrop-filter: blur(6px); */
  /* backdrop-filter: blur(6px); */
  display: flex;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  /* gap: 100px; */
  /* padding:18px var(--container-gap); */
   top: 6%;
  left: 0;
  transform: none; /* 👈 décale de moitié pour être vraiment centré */
  width: 100%;
  height: 100px;
  padding: 0 3rem;
  max-width: var(--max-width);
  /* background: rgba(255,255,255,0.6); */
  border-bottom:1px solid rgba(11,23,36,0.04);
  z-index:3000;
  font-family: 'PT Futura Condensed Book', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.brand {
  display: flex;
  justify-content: center; /* centrer les liens horizontalement */
  align-items: center;
  gap: 30px; /* espacement entre les liens */
}

.brand a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.brand a:hover {
  background-color: var(--cream);
  color: var(--midnight);
}

.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(250,246,240,0.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 120px;
  display: none;
  z-index: 100;
}

.submenu.open {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--midnight);
  text-decoration: none;
}

.submenu a:hover {
  background: rgba(11,23,36,0.05);
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* espace entre le texte et la flèche */
}

/* style de la flèche ▼ */
.dropdown-toggle .arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* 🔄 quand le menu est ouvert, on fait pivoter la flèche vers le haut */
.submenu.open ~ .dropdown-toggle .arrow,
.dropdown.open .arrow {
  transform: rotate(-135deg);
}

/* .logo{
  display: flex;
  align-items:center;
  gap: 100px;
}
.logo-mark{
  width:10%;
  height:10%;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* background: linear-gradient(135deg,var(--maroon),var(--cherry)); */
  /* color:var(--white); */
  /* font-weight:700; */
  /* box-shadow: 0 6px 18px rgba(122,11,26,0.18); */
} */


/*//=========================
   Logo Centered
   ========================= */
.logo {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;
}

.logo-mark {
  width: 50px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.site-header > .logo {
  grid-column: 2; /* force le logo à rester dans la colonne centrale */
}

.brand a{
  margin:0;
  font-size:12px;
  letter-spacing:0.6px;
}

nav.main-nav{
  display:flex;
  gap:18px;
  align-items:center;
}
nav.main-nav a{
  font-size:14px;
  color:white;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav.main-nav a:hover {
  background-color: var(--cream);
  color: var(--midnight);
}
 
.icon-cart span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  border: 2px solid var(--white); 
  border-radius: 50%;             
  background: transparent;        
  color: var(--white);            
  margin-left: 4px;               
}
 


.hero {
  min-height: calc(100vh - var(--topbar-height) - var(--header-height));
  background: url("logo/main.jpg") center center / cover no-repeat;
  width: 100%;             /* ✅ prend toute la largeur du viewport */
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100vh;           /* ✅ pleine hauteur d’écran */
  object-fit: cover;       /* ✅ garde le bon ratio sans déformation */
  display: block;
}


.hero > * {
  position: relative;
  z-index: 1;
}

.hero-text {
  margin-top: 15%;
  margin-left: 5%;
}

.hero-text h1 {
  color: white;
  /* font-weight: bold; */
  margin: 0;
}

.hero-link {
  color: white;
  border-bottom: 0.5px solid white;
  padding-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'PT Futura Condensed Book', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  text-decoration: none;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* assombrit l’image
  z-index: 0;
} */

/* Assure-toi que le contenu est au-dessus du ::before */
.hero .logo-primary {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* =========================
   Shop Section
   ========================= */
.shop-text {
  text-align: center;
  font-size: 10px;
  color: #6b0016;
}

.shop-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

/* .shop-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.shop-buttons button {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  /* background: linear-gradient(90deg, var(--maroon), var(--cherry)); */
  /* color:#6b0016;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.shop-buttons button:hover {
  background: linear-gradient(90deg, var(--cherry), var(--maroon));
}

.shop-buttons button.selected {
  border: 2px solid var(--cherry);
} */ 

.shop-buttons button {
  padding: 10px 20px;
  border-radius: 12px;
  /* couleur de base */
  background: transparent;   /* 👈 fond transparent */
  color: #6b0016;
  font-weight: 600;
  cursor: pointer;
  /* transition: border-color 0.3s ease, color 0.3s ease; */
}
.shop-buttons button:hover {
  border-color: var(--cherry); /* 👈 change seulement la bordure */
  color: var(--cherry);         /* (optionnel) change aussi le texte */
}
.shop-buttons button.selected {
  border-color: var(--maroon); /* 👈 bordure rouge foncé */
  color: var(--maroon);        /* texte assorti */
  background: transparent;     /* 👈 garde bien le fond transparent */
}
/* Conteneur du haut */
.card-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

/* Label texte (haut gauche) */
.card-label {
  background: var(--maroon);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Bouton cœur (haut droite) */
.card-fav {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-fav:hover {
  background: var(--cherry);
  color: white;
  transform: scale(1.1);
}

.grid {
  margin-top: 40px; /* 📏 décale toutes les cartes vers le bas */
}



.cta-row{display:flex;gap:12px;align-items:center}
.btn {
  padding:12px 18px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:600;
}

/* Styles for new about media block */
.about-media{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:28px;
  align-items:center;
}
.about-media-img{
  width:100%;
  max-width:40%;
  border-radius:12px;
  box-shadow: var(--shadow);
  object-fit:cover;
}
.about-media-text{
  max-width:900px;
  color:var(--midnight);
  text-align:center;
  line-height:1.6;
  /* Ensure paragraph is at least 10 lines tall (10 * line-height) */
  display:flex;
  align-items:center; /* vertically center text if shorter than min-height */
  padding: 12px 18px;
}
.btn-primary{
  background:linear-gradient(90deg,var(--maroon),var(--cherry));
  color:var(--white);
  box-shadow:0 10px 30px rgba(178,34,52,0.14);
}
.btn-ghost{
  background:transparent;
  border:1px solid rgba(11,23,36,0.06);
  color:var(--midnight);
}

.hero .media{
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg,#0B1724 0%, rgba(122,11,26,0.04) 100%);
  color:var(--white);
  padding:18px;
}
.media img{border-radius:8px;height:320px;object-fit:cover;width:100%}

/* =========================
   Product grid
   ========================= */
.section-title{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-title h3{margin:0;font-size:20px}
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* .card{
  background:var(--white);
  border-radius:14px;
  padding:14px;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease;
  display:flex;
  flex-direction:column;
  gap:12px;
} */
 .card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover{transform:translateY(-6px);box-shadow:0 18px 48px rgba(11,23,36,0.12)}
.card .meta{display:flex;align-items:center;justify-content:space-between;gap:8px}
.card h4{margin:0;font-size:16px}
.price{font-weight:700;color:var(--midnight)}
.badge{background:var(--maroon);color:var(--white);padding:6px 8px;border-radius:8px;font-size:12px}

.card .actions{display:flex;gap:8px;margin-top:auto}
.btn-small{padding:8px 10px;border-radius:10px;font-weight:600;font-size:14px;border:none;cursor:pointer}
.btn-add{background:linear-gradient(90deg,var(--maroon),var(--cherry));color:#fff}
.btn-view{background:transparent;border:1px solid rgba(11,23,36,0.06);color:var(--midnight)}

/* =========================
   Product detail modal / page
   ========================= */
.product-page{
  display:flex;
  gap:26px;
  margin-top:30px;
  background:linear-gradient(180deg,var(--cream),var(--cream));
  padding:18px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(11,23,36,0.06);
}
.product-media{flex:1;min-width:260px}
.product-info{flex:1.1;display:flex;flex-direction:column;gap:14px}
.product-info h2{margin:0;font-size:28px}
.rating{color:var(--muted);font-size:14px}
.options{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.size{padding:8px 10px;border-radius:10px;border:1px solid rgba(11,23,36,0.06);cursor:pointer}
.color-swatch{width:34px;height:34px;border-radius:8px;border:2px solid #fff;box-shadow:0 6px 18px rgba(11,23,36,0.08)}



/* =========================
   Footer
   ========================= */
/* footer.site-footer{
  margin-top:56px;
  padding:28px var(--container-gap);
  background:linear-gradient(180deg,#fff, #FBFBFB);
  border-top:1px solid rgba(11,23,36,0.04);
}
.footer-grid{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-gap);
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
}
.small{font-size:13px;color:var(--muted)} */

/* =========================
   Footer Pro — Honicove
   ========================= */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(11,23,36,0.06);
  padding: 60px var(--container-gap) 30px;
  color: var(--midnight);
  font-family: "Red Hat Display", sans-serif;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 2;
  min-width: 300px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  color: var(--maroon);
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--midnight);
  margin-bottom: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--maroon);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-socials a {
  font-size: 18px;
  color: var(--midnight);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--maroon);
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(11,23,36,0.08);
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
}


/* =========================
   Responsive
   ========================= */
@media (max-width:1000px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .hero .media img{height:260px}
}
@media (max-width:640px){
  header.site-header{padding:12px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .hero .copy h2{font-size:28px}
  .hero .media img{height:200px}
  .product-page{flex-direction:column}
}

.hero {
  position: relative;
  min-height: 100vh; /* ✅ force la section à prendre tout l'écran */
}

.hero .logo-primary {
  position: absolute;
  top: 87.8% !important; /* ✅ force la position */
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Modal container overlay */
#product-detail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 23, 36, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

/* Show modal */
#product-detail.show {
  display: flex;
  opacity: 1;
}

/* Center the product-page inside modal */
#product-detail .product-page {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(180deg, var(--cream), var(--cream));
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 23, 36, 0.06);
  padding: 18px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
}

/* Responsive modal content */
@media (max-width: 640px) {
  #product-detail .product-page {
    flex-direction: column;
    padding: 12px;
  }
}

/* Le header des pages produit seulement */
body.product-page header.site-header a,
body.product-page header.site-header {
  color: black !important;
  background: white;
  /* top: 5%; */
}

body.product-page header.site-header a.shop-link {
  color: white !important;
  background: transparent !important;
  display: block;
}


body.product-page .dropdown-toggle .arrow {
  border-right: 2px solid black;
  border-bottom: 2px solid black;
}

body.product-page .brand a:hover,
body.product-page nav.main-nav a:hover {
  background-color: #B22234;
  color: var(--white);
}

body.product-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.product-page footer {
  margin-top: auto;
}

/* Blog page header styles */
body.blog-page header.site-header,
body.blog-page header.site-header a {
  color: black;
  background: white;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.blog-page header.site-header a.shop-link {
  color: white !important;
  background: transparent !important;
  display: block;
}

body.blog-page .dropdown-toggle .arrow {
  border-right: 2px solid black;
  border-bottom: 2px solid black;
}

body.blog-page .brand a:hover,
body.blog-page nav.main-nav a:hover {
  background-color: #B22234 !important;
  color: var(--white);
}

/* About page header styles */
body.about-page header.site-header,
body.about-page header.site-header a {
  color: black;
  background: white;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.about-page header.site-header a.shop-link {
  color: white !important;
  background: transparent !important;
  display: block;
}

body.about-page .dropdown-toggle .arrow {
  border-right: 2px solid black;
  border-bottom: 2px solid black;
}

body.about-page .brand a:hover,
body.about-page nav.main-nav a:hover {
  background-color: #B22234 !important;
  color: var(--white);
}

body.product-page button.Card-icon span {
  color: black;
  border-color: black;
}

body.blog-page button.Card-icon span {
  color: black;
  border-color: black;
}

body.about-page button.Card-icon span {
  color: black;
  border-color: black;
}

/* Product page styles */
.product {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'PT Futura Condensed', sans-serif;
}

.product-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .product-info {
    flex-direction: column;
  }

  .product-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }

  .product-details {
    flex: 1;
  }

  .product-details h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
  }

  .product-rating {
    font-size: 1.2rem;
    color: #fbc02d; /* gold color for stars */
    margin-bottom: 1rem;
  }

  .product-options label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }

  .product-options select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  #add-to-cart-btn {
    margin-top: 1.5rem;
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #add-to-cart-btn:hover {
    background-color: #b71c1c;
  }
}

/* =========================
   PRODUCT PAGE (STYLE PDF)
   ========================= */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: 8rem auto;
  padding: 0 2rem;
  align-items: start;
}

.product-gallery {
  display: flex;
  gap: 1.5rem;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thumbnail-list img {
  width: 100px;
  height: 125px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.thumbnail-list img:hover {
  border-color: var(--maroon);
}

.main-image {
  position: relative;
}

.main-image img {
  width: 370px;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-tag {
  background: var(--maroon);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.product-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.product-price {
  font-size: 1.4rem;
  color: var(--maroon);
  font-weight: 600;
}

.stars {
  color: #fbc02d;
  font-size: 1rem;
}

.product-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
}

.option label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.color-swatches {
  display: flex;
  gap: 8px;
}

.color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.color.black { background: black; }
.color.white { background: white; border: 1px solid #ccc; }
.color.red { background: #b22234; }
.color.navy { background: #0b1724; }

.color.active {
  border: 2px solid var(--maroon);
}

.size-options {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.size-options button {
  background: white;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.9rem;
}

.size-options button.active {
  background: var(--maroon);
  color: white;
}

.btn-add-to-cart {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  background: var(--maroon);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-add-to-cart:hover {
  background: var(--cherry);
  transform: translateY(-2px);
}

.shipping-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -4px;
}

/* Accordion Styling */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-header {
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  margin-bottom: 10px;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .thumbnail-list {
    flex-direction: row;
    justify-content: center;
  }

  .thumbnail-list img {
    width: 60px;
    height: 70px;
  }
}
/* === Top Bar === */
.top-bar {
  background-color: #7A0B1A; /* Rouge cerise (cohérent avec ton thème Honicove) */
  color: #fff;
  /* text-align: start; */
  font-family: 'Red Hat Display';
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  height: 30px;
  padding: 18px var(--container-gap);
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  /* max-width: 100%; */
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
}

/* Optionnel : effet subtil quand on scroll */
.top-bar {
  position: fixed;
  top: 0;
  /* left: 50%; */
  transform: translateX(-50%);
  max-width: 100%;
  width: 100%;
  border-radius: 2%;
}
/* .top-bar th{
  background-color: red;
} */


/* =========================
   Welcome Modal Styles
   ========================= */
.modal-overlay-index {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 23, 36, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content-index {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(11, 23, 36, 0.2);
  max-width: 600px;
  width: 90%;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.modal-left-index {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image-index {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal-right-index {
  flex: 1;
  text-align: center;
}

.modal-h-index {
  width: 25%;
  height: auto;
  margin-bottom: 16px;
  margin-left: 100px;
}

.modal-message-index {
  font-size: 18px;
  color: var(--midnight);
  margin-bottom: 24px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  min-height: 24px;
}

.subscribe-form-index {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.email-input-index {
  padding: 12px 16px;
  border: 1px solid rgba(11, 23, 36, 0.2);
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  max-width: 250px;
  font-family: "Red Hat Display", sans-serif;
}

.subscribe-btn-index {
  padding: 12px 24px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Red Hat Display", sans-serif;
}

.subscribe-btn-index:hover {
  background: var(--cherry);
}

.modal-close-index {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-index:hover {
  color: var(--maroon);
}

/* Responsive modal */
@media (max-width: 640px) {
  .modal-content-index {
    flex-direction: column;
    padding: 24px;
  }

  .modal-left-index, .modal-right-index {
    flex: none;
  }

  .modal-image-index {
    max-width: 200px;
  }
}

/* =========================
   GUCCI LOGO TRANSITION EFFECT
   ========================= */

/* Logo Hero (initial, centré et fixe) */
#hero-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 100;
  transition: top 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

#hero-logo img {
  width: 100%;
  height: auto;
  transition: width 0.5s ease;
}

/* Logo Header (invisible au départ) */
#header-logo {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

/* === État : on commence à scroller === */
body.scrolled-start #hero-logo {
  transform: translate(-50%, -60%) scale(0.9);
  opacity: 0.9;
}

/* === État : quand le contenu passe sous le logo === */
body.scrolled-past #hero-logo {
  transform: translate(-50%, -150%) scale(0.5);
  opacity: 0;
}

/* === Le logo du header apparaît en même temps === */
body.scrolled-past #header-logo {
  opacity: 1;
  transform: scale(1);
}

/* Effet visuel du header qui devient plus présent */
header.site-header {
  transition: background 0.6s ease, height 0.6s ease, backdrop-filter 0.6s ease;
}

header.site-header.scrolled {
  background: #7A0B1A;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 70px;
}

/* =========================
   Promo Pop-up Styles
   ========================= */
.promo-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(11, 23, 36, 0.15);
  padding: 16px 20px;
  display: none;
  z-index: 2500;
  max-width: 90%;
  width: auto;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  color: var(--midnight);
  border: 1px solid rgba(11, 23, 36, 0.1);
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-content span {
  font-weight: 500;
}

.promo-content strong {
  color: var(--maroon);
  font-weight: 700;
}

#promo-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

#promo-close:hover {
  background: rgba(11, 23, 36, 0.05);
  color: var(--maroon);
}

/* =========================
   Account Dropdown
   ========================= */
.account-container {
  position: relative;
  display: inline-block;
}

.account-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(11, 23, 36, 0.15);
  padding: 0;
  min-width: 200px;
  display: none;
  z-index: 1200;
  border: 1px solid rgba(11, 23, 36, 0.1);
  text-transform: uppercase;
}

.account-dropdown.show {
  display: block;
}

.account-menu a {
  display: block;
  color: black !important;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 23, 36, 0.1);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details h4 {
  margin: 0;
  font-size: 16px;
  color: var(--midnight);
  font-weight: 600;
}

.user-details p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.purchase-history h5 {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--midnight);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.purchase-history ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purchase-history li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 23, 36, 0.05);
}

.purchase-history li:last-child {
  border-bottom: none;
}

.purchase-history span:first-child {
  font-size: 14px;
  color: var(--midnight);
  font-weight: 500;
}

.purchase-history span:last-child {
  font-size: 14px;
  color: var(--maroon);
  font-weight: 600;
}

/* =========================
   Side Menu Overlay
   ========================= */
.side-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1100;
  transition: opacity 0.3s ease;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -300px; /* Hidden off-screen initially */
  width: 300px;
  height: 100vh;
  background: var(--maroon);
  color: var(--white);
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transition: left 0.3s ease;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-menu.open {
  left: 0;
}

.side-menu .close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
}

.side-menu h3 {
  text-decoration: double;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  font-family: 'PT Futura Condensed', sans-serif;
}

.side-menu * a {
  color: var(--white) !important;
  text-decoration: none;
  font-size: 14px;
  background: transparent !important;
  /* text-transform: uppercase; */
  letter-spacing: 0.6px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.side-menu a:hover {
  text-decoration: underline;
  color: var(--white);
  border-radius: 8px;
}

/* =========================
   Blog Styles
   ========================= */
.blog-header {
  text-align: center;
  padding: 60px 0;
  background: var(--cream);
}

.blog-header h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: var(--maroon);
  margin: 0;
}

.blog-main {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.blog-list {
  flex: 1;
}

.blog-pagination {
  flex: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  /* border-radius: 14px; */
  /* padding: 20px; */
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(11, 23, 36, 0.12);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.blog-lister {
  display: block;
  width: 100%;
  margin-top: 0;
}

/* Smaller cards specifically for the "blog-lister" section */
.blog-lister .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 0;
  justify-content: center;
}

.blog-lister .blog-card {
  /* padding: 12px; */
  border-radius: 10px;
  max-width: 90%;
  margin: 0 auto;
}

.blog-lister .blog-card img {
  width: 1000px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.blog-lister .blog-card h3 { font-size: 16px; }
.blog-lister .blog-card p  { font-size: 14px; color: var(--muted); }

@media (max-width: 900px) {
  .blog-lister .blog-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
}
@media (max-width: 520px) {
  .blog-lister .blog-grid { grid-template-columns: 1fr; }
}

.blog-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--midnight);
}

.blog-card p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.read-more {
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more:hover {
  text-decoration: underline;
}

/* =========================
   Blog Detail Styles
   ========================= */
.blog-detail {
  padding: 40px 0;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.blog-article h1 {
  font-size: 36px;
  margin: 0 0 16px;
  color: var(--midnight);
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}

.blog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.blog-content {
  line-height: 1.6;
  color: var(--midnight);
}

.blog-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--midnight);
}

.blog-content p {
  margin: 0 0 16px;
}

.back-to-blog {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  background: var(--maroon);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.back-to-blog:hover {
  background: var(--cherry);
}

.related-posts {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 23, 36, 0.1);
}

.related-posts h3 {
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--midnight);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.related-card h4 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--midnight);
}

.related-card a {
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-card a:hover {
  text-decoration: underline;
}

/* =========================
   Responsive Blog
   ========================= */
@media (max-width: 640px) {
  .blog-header h1 {
    font-size: 36px;
  }

  .blog-main {
    flex-direction: column;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article {
    padding: 20px;
  }

  .blog-article h1 {
    font-size: 28px;
  }

  .blog-image {
    height: 250px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
  
  
body {
  background: none !important;
}
/* .sidebar *, .side-menu * {
  background: transparent !important;
} */

