/* ===== MAISON GEORGES LARNICOL ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Ten Oldstyle';
  src: url('../fonts/fonnts.com-Ten-Oldstyle-VF-.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Ten Oldstyle';
  src: url('../fonts/fonnts.com-Ten-Oldstyle-.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Ten Oldstyle';
  src: url('../fonts/fonnts.com-Ten-Oldstyle-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Ten Oldstyle';
  src: url('../fonts/fonnts.com-Ten-Oldstyle-Semibold-.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
/* font-family: 'Ten Oldstyle', Georgia, serif; */
* {
  box-sizing: border-box;
}
:root {
  --cream: #F2EBDD;
  --dark: #000;
  --brown: #8b6914;
  --light-gray: #e8e4dc;
  --white: #ffffff;
  --font-serif: 'Ten Oldstyle', Georgia, serif;
  --font-sans: 'Ten Oldstyle', 'Montserrat', sans-serif;
}

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

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.container {
  width: 100% !important;
  max-width: 100% !important;
}
.lcontainer {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}

p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #000;
  line-height: 28px;
  font-weight: 400;
}

.page-content--home {
  gap: 0 !important;
}

/* ===== HEADER ===== */
#header {
  background: #F2EBDD;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}

/* Top nav */
.header-top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 48px;
  border-bottom: 1px solid var(--light-gray);
}

.header-top-nav .nav-links,
.header-top-nav .nav-icons {
  width: 40%;
}
.header-top-nav .header-logo-bar {
  width: 20%;
  display: flex;
  justify-content: center;
}
.header-top-nav .header-logo-bar img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

.header-top-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-nav .nav-links a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.header-top-nav .nav-icons a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-search { position: relative; display: inline-flex; align-items: center; }
.header-search__toggle {
  background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; color: var(--dark);
}
.header-search__toggle img { width: 20px; height: 20px; object-fit: contain; }
.header-search__panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 320px;
  max-width: 80vw;
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
  padding: 6px 8px;
  z-index: 1001;
}
.header-search.is-open .header-search__panel { display: flex; }
.header-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 8px 6px;
  color: var(--dark);
}
.header-search__submit {
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; padding: 6px;
}
.header-search__submit img { width: 18px; height: 18px; object-fit: contain; }

.header-top-nav .nav-icons a.profile .header-profile-photo {
  border-radius: 50%;
  border: 1px solid #000;
}
.header-top-nav .nav-links a:hover { color: var(--brown); }

.header-top-nav .nav-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-top-nav .nav-icons a {
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.header-top-nav .nav-icons .profile {
  position: relative;
}
.header-top-nav .nav-icons .profile > span {
  overflow: hidden;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
}
.header-top-nav .nav-icons .profile.not-loggedin .profile-block  {
  width: 200px;
}
.header-top-nav .nav-icons .not-loggedin > span {
  overflow: visible;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 0;
  cursor: pointer;
  border: none;
}
.header-top-nav .nav-icons .not-loggedin > span img {
  border-radius: 0;
}
.header-top-nav .nav-icons .profile img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
}

.header-top-nav .nav-icons a:hover {
  color: var(--brown);
}

.header-top-nav .nav-icons .profile .profile-block {
  position: absolute;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  right: 0;
  display: none;
}
.header-top-nav .nav-icons .profile .profile-block.is-open {
  display: block; 
}
.header-top-nav .nav-icons .profile .profile-block img {
  width: 60px;
  height: 60px;
}

.not-loggedin .prof-link-list {
 border: none;
}

.prof-link-list {
  padding: 15px 0;
  border-bottom: 1px solid #E2E5E7;
}
.prof-link-list a {
  padding: 10px 0;
  display: flex;
  align-self: center;
  gap: 5px;
}
.prof-link-list a img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  object-fit: contain;
}

/* Logo bar */
.header-logo-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo-bar .logo-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 6px;
}

.header-logo-bar .brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.header-logo-bar .brand-tagline {
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: italic;
  color: #888;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--cream);
  padding: 0;
  border-top: 1px solid var(--light-gray);
}

/* Social row */
.footer-social {
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--light-gray);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  color: var(--dark);
  text-decoration: none;
  margin: 0 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
}

.footer-social a img {
  width: 100%;
}

/* Footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--dark);
}

.sitemap {
  background-color: #FFF;
  padding: 50px 0;
}
.sitemap .lcontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.sitemap .lcontainer .footer-col {
  width: calc(25% - 30px);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, .5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.footer-col ul li a:hover { color: var(--dark); }

/* Footer bottom bar */
.footer-bottom {
  background-color: #FFF;
  padding: 15px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.05em;
}

.footer-bottom .footer-logo-small {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: #aaa;
}

.footer-bottom > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom > span a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  position: relative;
  padding-right: 10px;
  margin-right: 5px;
}

.footer-bottom > span a:not(:last-child):after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #000;
  right: 0;
}

.footer-most-bot {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: var(--cream);
  padding: 10px 5%;
  text-align: center;
}

/* ===== AUTHAGE ===== */
.login-form-cont {
  background-color: var(--cream);
}
.login-form-cont .lcontainer{
  display: flex;
  gap: 60px;
}
.login-form-cont .left-banner {
  width: calc(50% - 30px);
  padding-top: 50px;
}
.login-form-cont .inputs-form {
  max-width: 580px;
  width: calc(50% - 30px);
  background-color: var(--white);
  padding: 30px;
}
.left-banner  .auth-txt {
  margin-bottom: 50px;
}
.inputs-form .auth-txt p {
  text-align: center;
  margin-bottom: 20px;
}
.auth-txt h3 {
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
  color: var(--dark);
  font-family: var(--font-serif);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.auth-txt h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  color: var(--dark);
  font-family: var(--font-serif);
  margin-bottom: 15px;
  text-align: center;
}
.auth-txt p {
  font-family: 22px;
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--font-serif);
  color: var(--dark);
}

.login-form-cont .inputs-form .form-control {
  height: 40px;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  outline: none !important;
  border-radius: 0;
  padding: 0 10px;
}
.login-form-cont .inputs-form .password-field {
  position: relative;
}
.login-form-cont .inputs-form .password-field button {
  background-color: transparent !important;
  border: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
}
.login-form-cont .inputs-form .password-field button i {
  color: #000;
}
.password-field button i {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.password-field button svg {
  display: block;
}
.login-form-cont .inputs-form .form-control:focus {
  box-shadow: none;
}

.login-form-cont .buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  border: none;
  box-shadow: none;
}
.login-form-cont .buttons-wrapper a {
  order: 2;
  width: 100%;
  display: block;
  border: none;
}
.login-form-cont .buttons-wrapper button {
  order: 1;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.login-form-cont hr {
  display: none;
}
.login-form-cont .login__register-prompt,
.login-form-cont .register-form__login-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.login-form-cont .login__register-prompt h2,
.login-form-cont .register-form__login-prompt h2 {
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 400;
}
.login-form-cont .login__register-prompt a,
.login-form-cont .register-form__login-prompt a {
  border: none;
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  text-decoration: underline;
  color: #000;
}
.login-form-cont .login__register-prompt a:hover,
.login-form-cont .login__register-prompt a:active,
.login-form-cont .login__register-prompt a:focus-visible,
.login-form-cont .register-form__login-prompt a:hover,
.login-form-cont .register-form__login-prompt a:active,
.login-form-cont .register-form__login-prompt a:focus-visible {
  background-color: transparent;
  box-shadow: none !important;
}

/* ===== PASSWORD RECOVERY (mot de passe oublié / réinitialisation) =====
   customer/password-email.tpl, password-infos.tpl and password-new.tpl reuse
   the login shell (.login-form-cont), so they inherit its inputs, banner and
   typography. These rules only add what the login page doesn't need: vertical
   breathing room, alert styling, a primary action that can be an <a> as well
   as a <button>, and a mobile stack. */
.login-form-cont.auth-page .lcontainer {
  align-items: flex-start;
  padding: 50px 0 80px;
}
.auth-page .left-banner {
  padding-top: 0;
}
.auth-page .inputs-form .auth-txt h4 {
  margin-bottom: 10px;
}
.auth-page .inputs-form .auth-txt p {
  font-size: 15px;
  line-height: 24px;
}
.auth-page .form-fields .mb-3 {
  margin-bottom: 22px;
}
.auth-page .form-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

/* The dark pill is bound to `button` for the login form; these pages also use
   an <a> as the primary action, so target the class instead. */
.login-form-cont.auth-page .buttons-wrapper .btn-primary {
  order: 1;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  text-decoration: none;
}
.login-form-cont.auth-page .buttons-wrapper .btn-basic {
  order: 2;
  width: 100%;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--dark);
  text-decoration: underline;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.auth-page .alert {
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
}
.auth-page .alert ul {
  margin: 0;
  padding-left: 18px;
}
.auth-page .login__register-prompt {
  margin-top: 26px;
}

@media (max-width: 860px) {
  .login-form-cont.auth-page .lcontainer {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0 50px;
  }
  .auth-page .left-banner,
  .auth-page .inputs-form {
    width: 100%;
    max-width: 100%;
  }
  .auth-page .auth-txt h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

/* ===== HOMEPAGE ===== */
/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-banner .hero-image {
  width: 100%;
  height: 100%;
}

.hero-banner .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.hero-btn:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s;
  background: rgba(255,255,255,0.1);
}

.hero-btn-icon:hover {
  background: var(--white);
  color: var(--dark);
}

.home-hero {
  position: relative;
}

.home-hero .hero-content {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  padding-bottom: 100px;
  padding-left: 200px;
  padding-right: 48px;
  height: fit-content;
}

.home-hero .hero-content * {
  color: #FFF;
}

.hero-img-wrapper {
  width: 100%;
}
.hero-img-wrapper img {
  width: 100%;
}

.hero-btns-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.hero-btns-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 50px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 10px;
}

.hero-btns-wrapper a:first-child {
  background-color: #FFF;
  color: #000;
}
.hero-btns-wrapper a:last-child {
  border: 1px solid #FFF;
  padding: 0;
  width: 60px;
  transition: 0.4s;
}
.hero-btns-wrapper a:last-child:hover {
  background-color: #000;
}

/* ===== CATEGORY BAR ===== */
.category-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 18px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.category-bar a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.category-bar a:hover { color: var(--brown); }

.category-static {
  padding: 70px 0;
  background-color: #FFF;
}

.category-static .lcontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.category-static .lcontainer .stat-item {
  width: calc(33.33% - 10px);
}

.category-static .lcontainer .stat-item img {
  width: 100%;
}

/* ===== HOMEPAGE SECTIONS (Option B) ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

/* 2) Boutique en ligne */
.home-boutique {
  background: var(--white);
  padding: 70px 0;
}
.boutique-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  gap: 15px;
}
.boutique-grid .boutique-item {
  display: block;
  width: calc(33.33% - 10px);
}
.boutique-grid .boutique-item__img {
  display: block;
  width: 100%;
}
.boutique-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
}
.boutique-card__img {
  width: 100%;
  overflow: hidden;
}
.boutique-item__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s;
  aspect-ratio: 461 / 298;
}
.boutique-card:hover .boutique-card__img img { transform: scale(1.05); }
.boutique-item__name {
  font-weight: 400;
  font-size: 32px;
  color: #000;
  text-align: center;
  display: block;
}

/* 3) Informations */
.home-infos {
  gap: 60px;
  align-items: center;
  background: var(--cream);
  width: 100%;
  padding: 100px 0;
}
.home-infos .lcontainer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home-infos h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px !important;
}
.home-infos .infos-text {
  width: 50%;
  padding-right: 100px;
}
.home-infos .infos-img {
  width: 50%;
}
.infos-text ul { list-style: none; }
.infos-text ul li {
  border-bottom: 1px solid var(--light-gray);
  font-size: 24px;
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 15px;
}
.infos-text ul li:before{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  left: 0;
  top: 13px;
}
.infos-text ul li span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.infos-img img { width: 100%; border-radius: 6px; }

/* 4) Stats */
.home-stats {
  text-align: center;
  background: var(--white);
  padding: 100px 0;
}
.home-stats .lcontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.home-stats .lcontainer .stat {
  width: calc(25% - 30px);
}
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 500;
  color: var(--dark);
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}

/* 5) Engagements */
.home-engagements {
  text-align: center;
  background: var(--cream);
  padding: 70px 0;
}

.home-engagements .lcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 30px;
}
.home-engagements .lcontainer .engagement {
  width: calc(33.33% - 20px);
}
.home-engagements img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 10px;
}
.engagement__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 10px;
}
.engagement__text {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
  text-align: center;
}

/* 6) Nos boutiques */
.home-boutiques {
  background: var(--white);
  padding: 100px 0;
}

.home-boutiques p {
  text-align: center;
}

.boutiques-wrapper {
  width: 100%;
  align-items: start;
  display: flex;
  gap: 50px;
  margin-top: 50px;
}
.boutiques-wrapper .lcontainer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.boutiques-list {
  width: 330px;
  background-color: var(--cream);
  padding: 20px 15px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.boutiques-list .head-list {
  display: flex;
  gap: 15px;
  width: 100%;
}
.boutiques-list .head-list > span {
  display: block;
  width: 32px;
}
.boutiques-list .head-list > span img {
  width: 100%;
}
.boutiques-list .head-list h4 {
  color: var(--dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  font-family: var(--font-serif);
}
.boutiques-list ul { list-style: none; }
.boutiques-list ul li {
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.boutiques-map {
  position: relative;
  flex: 1; min-width: 0;
  max-width: 814px;
  line-height: 0;
}
.boutiques-map img {
  width: 100%;
  height: auto;
  display: block;
}
/* Clickable hotspots — positioned in % so they scale with the image */
.boutiques-map__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
  min-width: 16px;
  padding: 0; margin: 0;
  border: none; border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s, box-shadow .15s;
}

/* .boutiques-map__marker:hover,
.boutiques-map__marker:focus-visible {
  background: rgba(139, 105, 20, .25);
  box-shadow: 0 0 0 2px var(--brown);
  outline: none;
} */

@media (max-width: 860px) {
  .boutiques-wrapper { flex-direction: column; gap: 30px; }
  .boutiques-list { width: 100%; margin-top: 0; }
  .boutiques-map { max-width: 100%; }
}

.map-popup {
  position: absolute;
  background: #fff;
  border: 1px solid #e8e4dc;
  padding: 16px 20px;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.map-popup.active {
  opacity: 1;
  pointer-events: all;
}

.map-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: #999;
}

.map-popup h4 {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.map-popup p {
  font-size: 11px;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.5;
}

.search-wrapper {
  width: 100%;
}

.search-bar {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #333;
  letter-spacing: 0.01em;
}

.search-bar input::placeholder {
  color: #999;
}

.search-bar svg {
  color: #333;
  cursor: pointer;
  flex-shrink: 0;
}

.dropdown {
  font-family: Georgia, serif;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-header span {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.dropdown-header svg {
  color: #000000;
  transition: transform 0.2s;
}

.dropdown-header svg.open {
  transform: rotate(180deg);
}

#city-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: none;
}

#city-list.open {
  max-height: 300px;
  overflow-y: auto;
}

#city-list li {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

#city-list li:hover {
  background: #f5f0e8;
}

#chevron {
  transition: transform 0.3s ease;
}

#chevron.open {
  transform: rotate(180deg);
}

/* ===== CATEGORY PAGE ===== */
.breadcrumb__wrapper {
  background-color: transparent !important;
  padding: 20px 0;
}
.breadcrumb__wrapper .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb__wrapper .breadcrumb-item a {
  color: var(--dark);
}
.breadcrumb__wrapper .breadcrumb-item span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: var(--font-serif);
}
/* full width (left sidebar removed in category.tpl) */
.page-category #center-column {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.page-category #wrapper .columns-container { padding: 0; }

/* ---- BLOCK 1: subcategories (white) ---- */
.page-category .category__header {
  background: var(--white);
  padding: 50px 48px 100px;
  text-align: center;
}
.page-category .category__header .page-title,
.page-category .category__header h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.subcategory__list--with-images {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.subcategory__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  border: none;
  width: calc(33.33% - 20px);
}
.subcategory__thumbnail {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}
.subcategory__name {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
}

/* ---- BLOCK 2: products (cream) ---- */
.page-category #products {
  background: var(--cream);
  padding: 100px 48px;
}
.category-products__heading { text-align: center; margin-bottom: 36px; }
.category-products__heading .section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.page-category .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.page-category .product-miniature {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow 0.25s;
}
#js-product-list-top,
.products__pagination {
  display: none;
}
.page-category .product-miniature:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.page-category .product-miniature__image img { max-width: 100%; height: auto; }
.page-category .product-miniature__title a {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
}
.page-category .product-miniature__price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
}


/* ===== SINGLE PRODUCT PAGE ===== */
.product-page__category {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px 0 10px;
}
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 20px 0 60px;
  align-items: start;
}

/* ---- left: vertical image stack ---- */
.product-page__media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-page__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* ---- right: info ---- */
.product-page__info { padding-top: 10px; }
.product-page__name {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.product-page__subtitle {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #555;
  margin-bottom: 22px;
}
.product-page__subtitle p {
  font-size: 22px !important;
}
.product-page__prices { margin-bottom: 4px; }
.product-page__price {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--dark);
}
.product-page__regular-price {
  margin-left: 10px;
  text-decoration: line-through;
  color: #aaa;
  font-size: 18px;
}
.product-page__unit {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #555;
  margin: 8px 0 0;
}
.product-page__unit-price {
  font-family: var(--font-serif);
  font-size: 13px;
  color: #8a8575;
  margin: 2px 0 0;
}
.product-page__actions { margin: 22px 0 30px; }
.product-page__actions .product__actions-qty-add,
.product-page__actions .product-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- info sections (Ingrédients / Valeurs nutritionnelles) ---- */
.product-page__section {
  border-top: 1px solid var(--light-gray);
  padding: 22px 0;
}

.product-page__section h3 {
  font-size: 32px;
}
.product-page__section p {
  font-size: 18px;
}

.product-page__section-body table,
.product-page__section table,
.product-page__section table tbody,
.product-page__section table tbody tr td {
  margin-top: 20px;
  border: none !important;
}
.product-page__section table tbody tr td {
  padding: 15px 0;
  line-height: 1.4;
}
.product-page__section table tbody tr {
  border-bottom: 1px solid #000 !important;
}
.product-page__section table tbody tr {
  font-family: var(--font-serif); 
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
}

.product-page__section table tbody tr:first-child {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0px;
  border-top: none;
}

.product-page__section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.product-page__section-body {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}
.product-page__nutrition { list-style: none; }
.product-page__nutrition li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 13px;
}
.product-page__nutrition .nutrition__name { color: #555; }
.product-page__nutrition .nutrition__value { font-weight: 600; }

/* ---- bottom: extra images (placeholders) ---- */
.product-page__extra-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 70px;
}
.product-page__extra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}


/* ===== CONTACT PAGE ===== */
.page-contact #center-column { flex: 0 0 100%; max-width: 100%; width: 100%; }
.page-contact .page-content--general { background: transparent; }

.contact-page {
  padding: 50px 0 80px;
}

.contact-page .lcontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ---- left: info ---- */
.contact-page__title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.contact-page__intro {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark);
  max-width: 500px;
  margin-bottom: 36px;
}
.contact-page__brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--dark);
}
.contact-page__details { list-style: none; }
.contact-page__details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.6;
}
.contact-page__details a {
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.contact-page__details a:hover { color: var(--brown); }
.contact-page__icon {
  font-size: 15px;
  color: var(--dark);
  width: 20px;
  flex-shrink: 0;
}

/* ---- right: form card ---- */
.contact-page__form {
  background: var(--white);
  padding: 48px 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-page__form .login-form > form > header h1,
.contact-page__form .login-form h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-page__form .login-form > form > header p { display: none; }

.page-contact #wrapper .columns-container,
.page-contact #wrapper .breadcrumb__wrapper {
  background-color: var(--cream) !important;
}

.contact-page__form .form-fields label {
  display: block;
  margin-bottom: 26px;
}
.contact-page__form .form-fields label span {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}
.contact-page__form .form-fields input[type="email"],
.contact-page__form .form-fields input[type="text"],
.contact-page__form .form-fields select,
.contact-page__form .form-fields textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 8px 10px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.contact-page__form .form-fields input::placeholder,
.contact-page__form .form-fields textarea::placeholder {
  color: #b6afa0;
  font-family: var(--font-serif);
}
.contact-page__form .form-fields select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #b6afa0;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.contact-page__form .form-fields input:focus,
.contact-page__form .form-fields select:focus,
.contact-page__form .form-fields textarea:focus {
  border-bottom-color: var(--dark);
}
.contact-page__form .form-fields textarea { resize: vertical; min-height: 80px; }

.contact-page__form .form-footer {
  margin-top: 18px;
  padding-top: 28px;
}
.contact-page__form .form-footer button[type="submit"] {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 48px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-page__form .form-footer button[type="submit"]:hover { opacity: 0.88; }


/* ===== BLOG / LA GAZETTE (CMS category) ===== */
.gcontainer {
  max-width: 952px;
  width: 90%;
  margin: 0 auto;

}
.page-cms #center-column { flex: 0 0 100%; max-width: 100%; width: 100%; }

.gazette { padding: 40px 0 70px; }
.gazette__heading {
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
}
.gazette__heading img {
  width: 100%;
}
.gazette__supertitle {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.gazette__title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
  display: inline-block;
  padding: 10px 40px;
}

/* tabs */
.gazette__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.gazette__tab {
  padding: 9px 22px;
  background: var(--cream);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.gazette__tab:hover { background: var(--light-gray); }

/* article rows */
.gazette__list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.gazette__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.gazette__item-media { display: block; }
.gazette__item-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.gazette__item-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  color: #000;
  margin-bottom: 8px;
}
.gazette__item-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #000;
}
.gazette__item-title a { color: var(--dark); text-decoration: none; }
.gazette__item-title a:hover { color: var(--brown); }
.gazette__item-excerpt {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 18px;
}
.gazette__item-link {
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gazette__item-link:hover { color: var(--brown); }
.gazette__item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
}


/* single blog post */
.blog-post {
  padding: 40px 0 70px;
}
.title-wrap {
  width: 100%;
  background-color: #000;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.title-wrap h1 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #FFF;
}
.title-wrap span {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #FFF;
}
.blog-post__title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 30px;
}
.blog-post__cover { margin-bottom: 34px; }
.blog-post__cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.blog-post__content {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}
.blog-post__content p {
  font-size: 18px;
}
.blog-post__back {
  display: none;
}
.blog-post__content img { max-width: 100%; height: auto; border-radius: 6px; margin: 20px 0; }
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 13px;
  font-style: italic;
  color: var(--dark);
  text-decoration: none;
}
.blog-post__back:hover { color: var(--brown); }

/* ===== 404 / NOT FOUND ===== */
.page-content--not-found.error-404 {
  background: var(--cream);
  padding: 90px 20px 110px;
  text-align: center;
}
.error-404__code {
  display: block;
  font-family: var(--font-sans);
  font-size: 92px;
  font-weight: 600;
  line-height: 1;
  color: var(--dark);
}
.error-404__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 18px 0 18px;
}
.error-404__text {
  max-width: 430px;
  margin: 0 auto 32px;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}
.error-404__btn {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 15px 46px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  border-radius: 10px;
}
.error-404__btn:hover { opacity: 0.85; }

/* ===== SOCIAL LOGIN ===== */
.social-login { margin: 24px 0; }
.social-login__label {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}
.social-login__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-login__btn {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.social-login__btn:hover {
  background: #faf7f1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.social-login__btn svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .social-login__buttons { flex-direction: column; }
}

/* ===== SIGNUP SUCCESS (Merci pour votre inscription) ===== */
.signup-success {
  background: var(--cream);
  text-align: center;
  padding: 60px 20px 90px;
}
.signup-success__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 22px;
}
.signup-success__text {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.signup-success__btn {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 15px 50px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.signup-success__btn:hover { opacity: 0.85; }
.signup-success__image { margin-top: 50px; }
.signup-success__image img { max-width: 420px; width: 100%; height: auto; }

/* ===== TWO-STEP SIGNUP ===== */
.signup-step[hidden] { display: none !important; }

/* step 1 pre-fields */
.signup-pre { margin-bottom: 22px; }
.signup-pre__field { display: block; margin-bottom: 18px; }
.signup-pre__field span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

/* "Créer un compte" primary button (step 1) */
.signup-next-btn {
  display: block;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 15px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
.signup-next-btn:hover { opacity: 0.88; }

/* step 2 — full form, centered (no banner) */
.signup-step--form .lcontainer { justify-content: center; }
.signup-step--form .inputs-form--full {
  width: 100%;
  max-width: 720px;
}
.signup-step--form .auth-txt {
  text-align: center;
  margin-bottom: 30px;
}
.signup-step--form .auth-txt h3 { text-align: center; }

/* ===== MINIMAL HEADER (logo only) — login / register / thanks / 404 ===== */
.page-authentication .header-top-nav .nav-links,
.page-authentication .header-top-nav .nav-icons,
.page-authentication .header-top-nav .header-burger,
.page-registration .header-top-nav .nav-links,
.page-registration .header-top-nav .nav-icons,
.page-registration .header-top-nav .header-burger,
.page-pagenotfound .header-top-nav .nav-links,
.page-pagenotfound .header-top-nav .nav-icons,
.page-pagenotfound .header-top-nav .header-burger {
  display: none;
}
.page-authentication .header-top-nav .header-logo-bar,
.page-registration .header-top-nav .header-logo-bar,
.page-pagenotfound .header-top-nav .header-logo-bar {
  width: 100%;
}

/* ===== STORE POPUP (Nos boutiques) ===== */

.store-popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 1000;
}
.store-popup__overlay.active { opacity: 1; pointer-events: auto; }

.store-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 92%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 1001;
}
.store-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.store-popup__close {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-weight: 700;
}
.store-popup__img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.store-popup__body { padding: 24px 28px 32px; }
.store-popup__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.store-popup__logo { width: 44px; height: 44px; flex-shrink: 0; }
.store-popup__head h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.store-popup__body hr {
  border: none;
  border-top: 1px solid var(--dark);
  margin: 16px 0 20px;
}
.store-popup__row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #333;
  margin-bottom: 14px;
}
.store-popup__hours p {
  text-align: left;
}
.store-popup__row svg { flex-shrink: 0; color: var(--dark); }
.store-popup__row--title { margin-top: 10px; margin-bottom: 14px; font-weight: 500; }
.store-popup__hours { padding-left: 0; margin-top: 20px; }
.store-popup__hours p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #2c2a20;
  margin-bottom: 14px;
  line-height: 1.4;
}
.store-popup__hours p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .store-popup__img img { height: 180px; }
  .store-popup__body { padding: 20px; }
}
/* ===== ALL PRODUCTS — category filter sidebar ===== */
.ap-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
  padding: 30px 0 70px;
}
.ap-filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.ap-filter__heading {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}
.ap-filter__clear { color: #999; display: inline-flex; }
.ap-filter__clear:hover { color: var(--dark); }
.ap-filter__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ap-cat-list, .ap-subcat-list { list-style: none; margin: 0; padding: 0; }
.ap-cat { border-bottom: 1px solid var(--light-gray); }
.ap-cat__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ap-cat__link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #2c2a20;
  text-decoration: none;
  transition: color 0.2s;
}
.ap-cat__link:hover,
.ap-cat__link.is-active { color: var(--brown); }
.ap-cat__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  display: inline-flex;
  padding: 6px;
  transition: transform 0.25s ease;
}
.ap-cat.open .ap-cat__toggle { transform: rotate(180deg); }
.ap-subcat-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.ap-cat.open .ap-subcat-list { max-height: 600px; padding-bottom: 8px; }
.ap-subcat__link {
  padding: 6px 0 6px 16px;
  font-size: 14px;
  color: #8a8575;
}
.ap-empty { padding: 50px 0; color: #777; font-size: 15px; }

@media (max-width: 768px) {
  .ap-wrap { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== PRODUCT CARD (miniature, new design) ===== */
.ap-wrap.lcontainer .ap-filter {
  padding-top: 27px;
}

.all-products__header h1.section-title {
  border-bottom: 1px solid #000;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.products {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); */
  grid-template-columns: repeat(auto-fill, minmax(368px, 1fr));
  gap: 26px;
}
.pm-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 28px 24px 24px;
  text-align: center;
}
.pm-card__title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 18px;
}
.pm-card__title:hover { color: var(--brown); }

.pm-card__summary {
  font-family: 'Ten Oldstyle';
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  margin: 10px 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pm-card__image {
  display: block;
  margin-bottom: 22px;
  position: relative;
}
.pm-card__image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.pm-card__prices { margin-bottom: 22px; }
.pm-card__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}
.pm-card__price-row::before,
.pm-card__price-row::after {
  content: '';
  height: 1px;
  background: #000;
  flex: 1;
  max-width: 150px;
}
.pm-card__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  font-weight: 600;
  color: var(--dark);
}
.pm-card__unit {
  font-family: var(--font-serif);
  font-size: 15px;
  color: #555;
  margin: 0;
}
.pm-card__unit-price {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #8a8575;
  margin: 2px 0 0;
}
.pm-card__regular-price {
  display: inline-block;
  margin-top: 4px;
  text-decoration: line-through;
  color: #aaa;
  font-size: 13px;
}
.pm-card__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.pm-card__discover {
  flex: 1;
  background: var(--cream);
  color: var(--dark);
  padding: 14px 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s;
}
.pm-card__discover:hover { background: #e7dcc6; }
.pm-card__addform { display: flex; }
.pm-card__bag {
  width: 52px;
  background: var(--cream);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pm-card__bag:hover { background: #e7dcc6; }

/* ===== PRODUCT FOOTER BLOCKS (Nos suggestions / Aperçus précédemment) ===== */
.product-suggestions {
  background: var(--cream);
  padding: 100px 0;
  width: 100%;
  position: relative;
}
.product-viewed {
  background: var(--white);
  padding: 55px 0 60px;
}
.product-suggestions__title,
.product-viewed__title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.product-suggestions .products,
.product-viewed .products {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-suggestions .products,
  .product-viewed .products { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CATEGORY QUICK NAV (product & category pages) ===== */
/* ===== KOUIGNETTERIE custom category page (id 12) ===== */
/* Hide the layout's duplicate cat-nav + breadcrumb — we render them inside .kou-header. */
body.category-id-12 #wrapper > .cat-nav,
body.category-id-12 #wrapper > .breadcrumb__wrapper { display: none; }

.kou-header__breadcrumb { margin: 0 0 12px; }
/* .kou-header__breadcrumb .breadcrumb {
  display: flex; justify-content: center; flex-wrap: wrap;
} */

.kou-header {
  margin-bottom: 24px;
  width: 100%;
}
.kou-header__banner {
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
}
.kou-header__banner img { width: 100%; height: auto; display: block; }
.kou-header .cat-nav { margin: 0 auto 18px; }
.kou-header__name {
  text-align: center; font-family: var(--font-serif);
  font-size: 42px; font-weight: 600; margin: 10px 0 0;
  text-transform: uppercase;
}

.cat-nav {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background-color: var(--cream);
  border-top: 1px solid #000;
}
.cat-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
.cat-nav__link {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.cat-nav__link:hover,
.cat-nav__link.is-active { color: var(--brown); }

/* ===== PRODUCT PAGE — quantity stepper + add to cart ===== */
.product-page__actions .product__actions-qty-add {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

#product-comments-list-header,
#empty-product-comment {
  display: none;
}

.alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 10px 15px;
}
.alert button {
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.alert-info  {
  /* background-color: rgba(242, 235, 221, 0.7); */
  border: none;
  display: flex;
}
/* quantity stepper: -  1  + */
.product-page__actions .quantity-button__group {
  display: inline-flex;
  align-items: center;
  /* gap: 8px; */
}
.product-page__actions .quantity-button__group .btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  width: 30px;
  height: 36px;
  min-width: 0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page__actions .quantity-button__group .btn:hover { color: var(--dark); }
.product-page__actions .quantity-button__group .btn .material-icons { font-size: 36px; }
.product-page__actions .quantity-button__group input {
  width: 46px;
  border: none !important;
  background: transparent;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 46px;
  color: var(--dark);
  outline: none;
  box-shadow: none !important;
  padding: 0;
}

/*cart */
.page-cart #wrapper,
.page-order-confirmation #wrapper {
  background-color: var(--cream);
}
.cart-grid__footer {
  display: none;
}
.corder-confirmation-wrapper {
  padding-bottom: 50px;
}
.corder-confirmation-wrapper .alert {
  margin-bottom: 30px;
}
.corder-confirmation-wrapper .card dl {
  max-width: 500px;
  width: 100%;
}
.corder-confirmation-wrapper .order-confirmation__table {
  max-width: 700px;
  width: 100%;
}
.corder-confirmation-wrapper .card,
.corder-confirmation-wrapper .card dl,
.corder-confirmation-wrapper .card .card-footer {
  background-color: var(--cream);
}
.corder-confirmation-wrapper .order-confirmation__details {
  margin-bottom: 0 !important;
}
.product-page__actions .product__add-to-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--dark) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px;
  padding: 16px 32px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s;
  width: fit-content;
  height: 60px;
}
.product-page__actions .product__add-to-cart-button:hover { opacity: 0.9; }
.product-page__actions .product__add-to-cart-button .atc-bag {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  /* force the icon white on the black button regardless of the SVG's own color */
  filter: brightness(0) invert(1);
}

/* ===== CART PAGE (Panier) ===== */
.co-page { padding: 30px 0 70px; }
.co-head { text-align: center; margin-bottom: 22px; }
.co-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; }
.co-subtitle { font-size: 13px; color: #888; margin-top: 6px; }

/* stepper */
.co-steps {
  display: flex; align-items: center; justify-content: center;
  background: #0d0d0d; color: #fff; border-radius: 6px 6px 0 0;
  max-width: 1040px; margin: 0 auto; padding: 13px 34px;
}
.co-steps--checkout { max-width: 1040px; }
.co-step { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #8a8a8a; white-space: nowrap; }
.co-step.is-active { color: #fff; }
.co-step__num {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0;
}
.co-step.is-active .co-step__num { background: #fff; color: #0d0d0d; border-color: #fff; }
.co-step__sep { flex: 1; height: 1px; background: #4a4a4a; margin: 0 14px; max-width: 90px; }

/* cart page: forward steps are clickable links to checkout */
.co-step--next { text-decoration: none; color: inherit; cursor: pointer; transition: color 0.2s; }
.co-step--next:hover { color: #fff; }
.co-step--next:hover .co-step__num { border-color: #fff; }
.co-step.is-disabled { opacity: 0.45; pointer-events: none; }

/* card layout */
.co-card {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
  padding: 20px;
  background-color: #fff;
}
.co-card__main { background: #fff; border-radius: 6px; padding: 24px 28px; box-shadow: 0 8px 34px rgba(0,0,0,.05); }

/* select-all row */
.co-products-top {
  padding-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.co-products-actions { display: inline-flex; align-items: center; gap: 14px; }
.co-products-action {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-serif); font-size: 14px; color: #555; transition: color .15s;
}
.co-products-action:hover { color: var(--dark); }
.co-products-action--danger:hover { color: #b23b3b; }
.co-products-action[disabled] { opacity: .5; cursor: default; }
.co-products-actions__sep { width: 1px; height: 16px; background: #cfcfcf; display: inline-block; }
.js-cart-wishlist { color: #8a8a8a; }
.co-select-all { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: #444; cursor: pointer; }

/* product lines */
.co-card .cart-overview hr { display: none; }
.co-card .product-line {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--light-gray);
}
.co-card .product-line__select { flex-shrink: 0; }
.co-card .product-line__select input,
.co-select-all input { width: 16px; height: 16px; accent-color: #0d0d0d; }
.co-card .product-line__image { width: 60px; flex-shrink: 0; }
.co-card .product-line__image img { width: 100%; height: auto; border-radius: 4px; display: block; }
.co-card .product-line__content {
  flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.co-card .product-line__content-left { flex: 1; }
.co-card .product-line__title {
  font-family: var(--font-serif); font-size: 16px; color: var(--dark);
  text-decoration: none; display: block; margin-bottom: 4px;
}
.co-card .product-line__item--prices { display: flex; align-items: baseline; gap: 8px; }
.co-card .product-line__item-price { font-family: var(--font-serif); font-size: 16px; font-weight: 600; }
.co-card .product-line__item-unit-price { font-size: 12px; color: #999; }
.co-card .product-line__content-right { display: flex; align-items: center; gap: 18px; }
.co-card .product-line__price { font-family: var(--font-serif); font-weight: 600; }

/* qty stepper in cart */
.co-card .quantity-button__group { display: inline-flex; align-items: center; gap: 6px; }
.co-card .quantity-button__group .btn {
  background: none !important; border: none !important; box-shadow: none !important;
  padding: 0; width: 26px; height: 30px; min-width: 0; color: #999;
  display: flex; align-items: center; justify-content: center;
}
.co-card .quantity-button__group .btn:hover { color: var(--dark); }
.co-card .quantity-button__group .btn .material-icons { font-size: 18px; }
.co-card .quantity-button__group input {
  width: 36px; border: none !important; background: transparent; text-align: center;
  font-family: var(--font-serif); font-size: 18px; color: var(--dark); outline: none; box-shadow: none !important; padding: 0;
}
.co-card .product-line__actions { display: none; } /* hide per-line remove for now */

/* ---- Code promo block ---- */
.co-promo {
  background: var(--cream); border-radius: 8px; padding: 22px 24px; margin-bottom: 18px;
}
.co-promo__title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin: 0 0 16px; }
.co-promo__form {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #b9a98a; padding-bottom: 8px;
}
.co-promo__icon { color: #1d1d1d; display: inline-flex; flex-shrink: 0; }
.co-promo__input {
  flex: 1; border: none; background: transparent; outline: none;
  font-size: 14px; color: var(--dark); padding: 2px 0;
}
.co-promo__input::placeholder { color: #9a8e78; }
/* press Enter to apply; keep the submit reachable but visually minimal */
.co-promo__submit {
  width: 0; height: 0; padding: 0; margin: 0; border: 0; background: none; overflow: hidden;
}
/* Hide the native voucher INPUT accordion (our .co-promo replaces it) but keep
   the applied-vouchers list visible in the summary. */
.co-card__aside .cart-voucher__accordion { display: none; }

/* ---- Right summary ---- */
.co-card__aside .cart-summary { display: flex; flex-direction: column; gap: 18px; }
.co-card__aside .cart-summary__totals,
.co-card__aside .cart-voucher {
  border-radius: 6px; padding: 20px 22px;
}
.blockreassurance.blockreassurance--checkout {
  margin-top: 20px;
}
.co-card__aside .cart-summary__totals {
  background-color: #fff;
}
.co-card__aside .cart-summary__line {
  display: flex; justify-content: space-between; font-size: 13px; color: #444; padding: 6px 0;
}
.co-card__aside .cart-summary__line.cart-total,
.co-card__aside .cart-total {
  border-top: 1px solid #cdbfa6; margin-top: 10px; padding-top: 12px; font-weight: 600;
}
.co-card__aside .cart-total .value,
.co-card__aside .cart-total .label { font-family: var(--font-serif); font-size: 16px; }
.co-card__aside .cart-voucher .promo-code-button,
.co-card__aside .cart-voucher h4 { font-family: var(--font-serif); }
.co-card__aside .cart-voucher input[type="text"] {
  width: 100%; border: none; border-bottom: 1px solid #cdbfa6; background: transparent;
  padding: 8px 0; outline: none; font-size: 13px;
}
/* proceed button */
.co-card__aside .checkout a,
.co-card__aside .cart-detailed-actions a,
.co-card__aside .btn-primary {
  display: flex; align-items: center; justify-content: center;
  background: #0d0d0d !important; color: #fff !important; border: none !important;
  border-radius: 8px; padding: 16px; font-family: var(--font-serif); font-size: 15px;
  text-decoration: none; transition: opacity .2s;
}
.co-card__aside .btn-primary:hover { opacity: .9; }

@media (max-width: 860px) {
  .co-card { grid-template-columns: 1fr; }
}

/* ===== ORDER / CHECKOUT PAGE (Adresse + Paiement) ===== */
body.page-order { background: var(--cream); }
body.page-order #wrapper,
body.page-order .wrapper { background: var(--cream); }

/* Hide PrestaShop's native step nav — we render our own black bar.
   We must NOT use display:none: the "Back" buttons navigate by programmatically
   clicking the matching nav button, and a display:none button can't fire Bootstrap's
   tab toggle. So hide it visually while keeping it rendered + interactive. */
.page-order .checkout-steps {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

/* "done" state for the 3-step bar */
.co-step.is-done { color: #fff; }
.co-step.is-done .co-step__num { background: #fff; color: #0d0d0d; border-color: #fff; font-weight: 700; }

/* card: process (left) + order summary (right) */
.co-card--checkout { grid-template-columns: 1fr 340px; }
.co-checkout__main {
  background: #fff; border-radius: 8px; padding: 30px 34px;
  box-shadow: 0 8px 34px rgba(0,0,0,.05);
}

/* step sections — strip native borders/spacing */
.co-checkout__main .step { border: none; padding: 0; margin: 0; }
.co-checkout__main .step + .step { margin-top: 8px; }
.co-checkout__main .step__title { margin-bottom: 18px; }
.co-checkout__main .step__title .page-title-section,
.co-checkout__main .step__title h1,
.co-checkout__main .step__title p {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin: 0; color: var(--dark);
}
.co-checkout__main .step__title hr { display: none; }
.co-checkout__main .step--complete .step__title .page-title-section { color: #9a9a9a; }
.co-checkout__main .step-edit { font-size: 12px; color: var(--brown); text-decoration: none; }

/* address form — underline inputs like the design */
.co-checkout__main .form-fields,
.co-checkout__main .address-item { width: 100%; }
.co-checkout__main .form-group { margin-bottom: 18px; }
.co-checkout__main .form-control-label,
.co-checkout__main .col-form-label,
.co-checkout__main label { font-size: 12px; color: #666; margin-bottom: 4px; display: block; font-weight: 400; }
.co-checkout__main .form-control,
.co-checkout__main input[type="text"],
.co-checkout__main input[type="email"],
.co-checkout__main input[type="tel"],
.co-checkout__main input[type="number"],
.co-checkout__main input[type="password"],
.co-checkout__main select,
.co-checkout__main textarea {
  width: 100%; border: none; border-bottom: 1px solid #d8cdb8; background: transparent;
  padding: 8px 0; font-size: 14px; color: var(--dark); outline: none; border-radius: 0; box-shadow: none;
}
.co-checkout__main .form-control:focus,
.co-checkout__main select:focus,
.co-checkout__main textarea:focus { border-bottom-color: var(--dark); }
.co-checkout__main select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.co-checkout__main .checkbox input,
.co-checkout__main input[type="checkbox"],
.co-checkout__main input[type="radio"] { width: 15px; height: 15px; accent-color: #0d0d0d; }
.co-checkout__main .custom-checkbox span,
.co-checkout__main .checkbox label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }

/* carrier / delivery options as bordered radio cards */
.co-checkout__main .delivery-options,
.co-checkout__main .delivery-options-list { display: flex; flex-direction: column; gap: 12px; }
.co-checkout__main .delivery-option,
.co-checkout__main .delivery-options .row {
  display: flex; align-items: center; gap: 12px; margin: 0;
  border: 1px solid #e2d9c6; border-radius: 8px; padding: 14px 16px; cursor: pointer; width: 100%;
}
.co-checkout__main .delivery-option:hover { border-color: #c9bb9d; }
.co-checkout__main .delivery-option .carrier-name,
.co-checkout__main .delivery-option strong { font-weight: 600; font-size: 14px; }
.co-checkout__main .delivery-option .carrier-price { margin-left: auto; font-family: var(--font-serif); font-weight: 600; }
.co-checkout__main .delivery-option .carrier-delay { font-size: 12px; color: #888; }

/* payment options as bordered cards */
.co-checkout__main .payment-options { display: flex; flex-direction: column; gap: 12px; }
.co-checkout__main .payment-options .payment-option {
  border: 1px solid #e2d9c6; border-radius: 8px; padding: 14px 16px;
}
.co-checkout__main .payment-options label { display: flex; align-items: center; gap: 10px; margin: 0; cursor: pointer; font-size: 14px; }
.co-checkout__main .payment-options label img { margin-left: auto; max-height: 26px; width: auto; }
.co-checkout__main .js-additional-information,
.co-checkout__main .additional-information { padding: 12px 0 0; font-size: 13px; color: #555; }

/* conditions / terms */
.co-checkout__main #conditions-to-approve { margin: 18px 0; }
.co-checkout__main #conditions-to-approve label { font-size: 12px; color: #777; display: flex; gap: 8px; align-items: flex-start; }
.co-checkout__main .text-muted,
.co-checkout__main .cgv-text { font-size: 12px; color: #888; text-align: center; }

/* continue / place-order buttons — full-width black */
.co-checkout__main .continue,
.co-checkout__main button[name^="confirm"],
.co-checkout__main #payment-confirmation button,
.co-checkout__main .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: #0d0d0d !important; color: #fff !important; border: none !important;
  border-radius: 8px; padding: 15px 18px; font-family: var(--font-serif); font-size: 15px;
  cursor: pointer; transition: opacity .2s; margin-top: 6px;
}
.co-checkout__main .continue:hover,
.co-checkout__main button[name^="confirm"]:hover,
.co-checkout__main #payment-confirmation button:hover,
.co-checkout__main .btn-primary:hover { opacity: .9; }

/* button rows (Back / Continue side by side) */
.co-checkout__main .buttons-wrapper {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px;
}
.co-checkout__main .buttons-wrapper--split { justify-content: space-between; }
/* inside a split row, the black button shouldn't stretch full width */
.co-checkout__main .buttons-wrapper .continue,
.co-checkout__main .buttons-wrapper button[name^="confirm"],
.co-checkout__main .buttons-wrapper .btn-primary { width: auto; margin-top: 0; }

/* "Back" + other secondary (outline) buttons */
.co-checkout__main .js-back,
.co-checkout__main .btn-outline-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent !important; color: #0d0d0d !important;
  border: 1px solid #0d0d0d !important; border-radius: 8px;
  padding: 13px 18px; font-family: var(--font-serif); font-size: 14px;
  cursor: pointer; transition: background .2s, color .2s; text-decoration: none; width: auto;
}
.co-checkout__main .js-back:hover,
.co-checkout__main .btn-outline-primary:hover { background: #0d0d0d !important; color: #fff !important; }

/* login / register toggle tabs in the personal-information step */
.co-checkout__main .nav-tabs { border: none; gap: 18px; margin-bottom: 18px; }
.co-checkout__main .nav-tabs .nav-link { border: none; padding: 6px 0; color: #888; font-size: 14px; }
.co-checkout__main .nav-tabs .nav-link.active { color: var(--dark); border-bottom: 2px solid var(--dark); background: transparent; }

/* order summary aside */
.co-checkout__aside { position: sticky; top: 90px; }
.co-checkout__summary { background: #fff; border-radius: 8px; padding: 22px 24px; box-shadow: 0 8px 34px rgba(0,0,0,.05); }
.co-checkout__summary-title { font-family: var(--font-serif); font-size: 17px; margin-bottom: 16px; }
.co-checkout__aside .cart-summary-line,
.co-checkout__aside .cart-summary__line { display: flex; justify-content: space-between; font-size: 13px; color: #444; padding: 6px 0; }
.co-checkout__aside .cart-total,
.co-checkout__aside .cart-summary-line.cart-total { border-top: 1px solid #e2d9c6; margin-top: 8px; padding-top: 12px; font-weight: 600; }
.co-checkout__aside .cart-summary-products img { border-radius: 4px; }

@media (max-width: 860px) {
  .co-card--checkout { grid-template-columns: 1fr; }
  .co-checkout__aside { position: static; }
}

/* ===== ADD-TO-CART CONFIRMATION TOAST ===== */
.lar-cart-toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 2000;
  display: flex; align-items: center; gap: 12px;
  background: #0d0d0d; color: #fff; border-radius: 10px;
  padding: 14px 18px; min-width: 260px; max-width: 360px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  transform: translateY(20px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  font-family: var(--font-sans);
}
.lar-cart-toast.is-visible { transform: translateY(0); opacity: 1; }
.lar-cart-toast__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: #1faa59; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; line-height: 1;
}
.lar-cart-toast--error .lar-cart-toast__icon { background: #c0392b; }
.lar-cart-toast__body { display: flex; flex-direction: column; gap: 2px; }
.lar-cart-toast__msg { font-size: 14px; }
.lar-cart-toast__link {
  font-size: 12px; color: #d9c9a3; text-decoration: underline; width: fit-content;
}
.lar-cart-toast__link:hover { color: #fff; }

@media (max-width: 480px) {
  .lar-cart-toast { left: 16px; right: 16px; bottom: 16px; min-width: 0; max-width: none; }
}


/* my account */
.user-main-inf {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #E2E5E7;
}
.user-main-inf .user-photo {
  width: 60px !important;
  height: 60px !important;
}
.user-main-inf .user-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #000;
}
.user-main-inf .user-main-ne {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.user-main-inf__name {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}
.user-main-inf__email {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}
.account-menu .account-menu__nav .account-menu__link {
  padding: 10px 7px;
  color: rgba(0, 0, 0, .5);
  transition: 0.4s;
}
.account-menu .account-menu__nav .account-menu__link:hover,
.account-menu .account-menu__nav .account-menu__link--active {
  background-color: var(--cream);
  color: #000;
}
.signout-wrapper {
  border-top: 1px solid #E2E5E7;
  padding-top: 15px;
}
.account-menu .account-menu__nav .signout-wrapper .account-menu__link:hover{
  background-color: transparent;
  color: red;
}
.page-my-account #wrapper,
.page-identity #wrapper,
.page-addresses #wrapper,
.page-history #wrapper,
.page-order-slip #wrapper,
#module-ps_emailalerts-account #wrapper,
#module-psgdpr-gdpr #wrapper {
  background-color: var(--cream);
}
.account-menu {
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
}
.account-menu__nav {
  display: flex;
  flex-direction: column;
}
.my-account-contents {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.page-addresses .address-card--add-address {
  color: #000;
}
.page-addresses .address-card--add-address .address-card__add-icon {
  background-color: #000;
  border: 1px solid #000;
}

.my-account-contents .page-title-section {
  margin-bottom: 20px;
  font-family: var(--font-serif); 
  font-size: 24px;
  line-height: 34px;
}

.page-my-account .col-lg-3,
.page-identity .col-lg-3,
.page-addresses .col-lg-3,
.page-history .col-lg-3,
.page-order-slip .col-lg-3,
#module-ps_emailalerts-account .col-lg-3,
#module-psgdpr-gdpr .col-lg-3 {
  padding-right: 20px;
}

.my-account-contents form.js-customer-form .form-control {
  height: 40px;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding: 0 10px;
  outline: none;
}

.my-account-contents form.js-customer-form .form-control:focus {
  box-shadow: none;
}

.my-account-contents form.js-customer-form .form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.my-account-contents form.js-customer-form .form-check input {
  margin-top: 3px;
}
.my-account-contents form.js-customer-form .form-check.form-check-inline {
  display: inline-block;
}

.my-account-contents .form-control-submit {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  background-color: var(--dark);
  color: #fff;
  margin-right: auto;
}

.my-account-contents .password-field {
  position: relative;
}

.my-account-contents .password-field button {
  background-color: transparent !important;
  border: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.my-account-contents .password-field button i {
  color: #000;
}

.address-card {
  padding: 20px;
  border-radius: 10px;
}

.psgdpr-data-buttons {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 40px
}
.psgdpr-data-buttons a {
  height: 50px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  color: var(--dark);
  border: 1px solid #000;
  border-radius: 10px;
}

.page-identity .js-customer-form section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.page-identity .js-customer-form section > div {
  width: calc(50% - 10px);
}
.page-identity .js-customer-form {
  margin-top: 30px;
}
.page-identity .js-customer-form section > div:nth-child(8),
.page-identity .js-customer-form section > div:nth-child(9),
.page-identity .js-customer-form section > div:nth-child(10),
.page-identity .js-customer-form section > div:nth-child(11) {
  width: 100%;
}

.order-history__status {
  padding: 5px 20px;
}

.order-history__cell--actions a {
  height: 30px;
  padding: 0 10px;
}
.order-history__cell--actions a:first-child {
  border: 1px solid #000;
  color: #000;
  background-color: #FFF;
}
.order-history__cell--actions a:last-child {
  border: 1px solid #000;
  color: #FFF;
  background-color: #000;
}

.checkout-personal-information-step .nav-underline {
  margin-bottom: 20px;
}

.my-account-contents .psgdprinfo17 {
  background-color: transparent;
}

.page-content--customer .order-infos,
.page-content--customer .order-status,
.page-content--customer .order-addresses,
.page-content--customer .order-products {
  margin-bottom: 20px;
}

.page-content--customer > hr {
  display: none;
}

.page-content--customer .order-infos a {
  font-family: var(--font-serif); 
  height: 50px;
  padding: 0 20px;
  border: 1px solid #000;
  color: #000;
}
.page-content--customer .order-infos a:hover {
  background-color: #000;
  color: #FFF;
}

.page-content--customer .order-status .order-status__badge {
  padding: 5px 20px;
}
.page-content--customer .order-status .grid-table__row {
  padding: 5px 0;
}

.page-content--customer h3 {
  margin-bottom: 10px;
  width: 100%;
  background-color: #000;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
}
.page-content--customer .order-products a {
  color: #000;
}

.page-content--customer .order-message-form button {
  height: 50px;
  background-color: #000;
  color: #FFF;
  padding: 0 20px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input {
  margin-top: 3px;
}