/**
*	ROOT
*	=======================================================================================================
**/

:root {
  --font-display: "Dolce Vita", sans-serif;
  --font-heading: "Kenyan Coffee", sans-serif;
  --font-body: "Caviar Dreams", sans-serif;
  --base-size-font: 16px;
  --color-red: #c1272d;
  --color-dark: #333333;
  --color-black: #000000;
  --color-gray: #cccccc;
  --color-gray-medium: #d8d8d8;

  --color-lilac: #a6b0ff;
  --color-lilac-soft: #c6aeff;
  --color-white: #ffffff;
  --color-paper: #fcfbf8;
  --color-line: rgba(77, 77, 77, 0.16);

  --color-primary: #cdcccc;
  --color-secondary: #baabd4;
  --color-tertiary: #ececec;
  --color-txt: #4e4e4d;
  --color-gold: #e2c793;
  --color-border-primary: #ccd6cd;

  --container-width: 1200px;
  --border-soft: 1px solid rgba(166, 176, 255, 0.35);
  --shadow-soft: 0 22px 70px rgba(77, 77, 77, 0.08);
  --shadow-card: 0 18px 45px rgba(77, 77, 77, 0.09);
  --transition: all 0.35s ease;
}

/**
*	BASE
*	=======================================================================================================
**/

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--base-size-font);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-txt);
}

body.is-panel-open {
  overflow: hidden;
}

img {
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  display: block;
}

p {
  margin: 0 0 15px;
}
section {
  padding: 40px 0;
}

/** TÃTULO BARRA CON DIAGONALES ============== **/
.title-diagonal {
  background: var(--color-gold);
  justify-content: center;
  margin-bottom: 20px;
}
.title-diagonal h2 {
  display: flex;
  padding: 11px 28px 11px 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #000;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  line-height: 1;
  font-weight: 700;
}
.title-diagonal h2::before,
.title-diagonal h2::after {
  content: "";
  position: absolute;
  top: 0;
  background: #fff;
  transform: skewX(40deg);
  z-index: 1;
  bottom: 0;
  width: 2px;
}
.title-diagonal h2::before {
  left: -7px;
}
.title-diagonal h2::after {
  right: -7px;
}
.title-diagonal--secondary {
  background: var(--color-secondary);
  margin-bottom: 20px;
}
.title-diagonal--secondary h2 {
  color: #fff;
}

/**
*	UTILIDADES
*	=======================================================================================================
**/

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

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.d-flex {
  display: flex;
}

/**
*	CONTAINER
*	=======================================================================================================
**/

.container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/**
*	COMÃšN
*	=======================================================================================================
**/

.page-main {
  position: relative;
  overflow: clip;
}
.section-home {
  position: relative;
  z-index: 1;
  padding: 0;
}

/**
*	MOBILE PANEL
*	=======================================================================================================
**/

.mobile-panel {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  justify-content: space-between;
  overflow-y: auto;
}
.mobile-panel.is-open {
  transform: translateX(0);
  box-shadow: 26px 0 50px rgba(77, 77, 77, 0.16);
}
.mobile-panel__header {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
  position: relative;
}
.mobile-panel__close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  z-index: 1;
}
.mobile-panel__close span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 999px;
}
.mobile-panel__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 105px;
  margin: 0;
}
.mobile-panel__list {
  display: grid;
  gap: 40px;
  padding-top: 6px;
}
.mobile-panel__list--inv {
  padding: 40px 0;
}
.mobile-panel__item a {
  display: block;
  padding: 13px 44px 13px 20px;
  background: var(--color-primary);
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  position: relative;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
  color: #000;
}
.mobile-panel__item:not(:nth-child(5)) a {
  background: linear-gradient(to right, #b5b4b4 50%, var(--color-primary) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.8s ease;
}
.mobile-panel__item:not(:nth-child(5)) a:hover {
  background-position: left center;
}

.mobile-panel__item:nth-child(1) a {
  width: 60%;
}
.mobile-panel__item:nth-child(2) a {
  width: 70%;
}
.mobile-panel__item:nth-child(3) a {
  width: 80%;
}
.mobile-panel__item:nth-child(4) a {
  width: 90%;
}
.mobile-panel__item:nth-child(5) a {
  width: 90%;
  background: transparent;
  color: var(--color-secondary);
  -webkit-clip-path: none;
  clip-path: none;
  transition: var(--transition);
}
.mobile-panel__item:nth-child(5) a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  z-index: -1;
}
.mobile-panel__item:nth-child(5) a::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(
    to right,
    var(--color-secondary) 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: right center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 29px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 29px) 100%, 0 100%);
  z-index: -1;
  transition: background-position 0.35s ease;
}
.mobile-panel__item:nth-child(5) a:hover::after {
  background-position: left center;
}
.mobile-panel__item:nth-child(5) a:hover {
  color: #fff;
}
.mobile-panel__footer {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  padding: 35px 35px;
  background-color: var(--color-tertiary);
}
.mobile-panel__footer-group {
  display: grid;
  gap: 6px;
}
.mobile-panel__footer-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.mobile-panel__footer-list {
  display: grid;
  line-height: 1.1;
}
.mobile-panel__footer-list li {
  min-height: 18px;
  display: flex;
  align-items: center;
}
.mobile-panel__footer-list li a {
  font-size: 0.9rem;
  color: #000;
}
.mobile-panel__footer-list li a:hover {
  color: var(--color-dark);
}
.mobile-panel__footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-panel__footer-social-row > a {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.mobile-panel__social {
  display: flex;
  gap: 2px;
}
.mobile-panel__social a {
  width: 25px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: scale(1.8);
}
.mobile-panel-backdrop {
  position: fixed;
  inset: 0;
  background: #3333338a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1000;
}
.mobile-panel-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-panel__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.mp-desktop-only {
  display: grid;
}
.mp-mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .mp-desktop-only {
    display: none;
  }
  .mp-mobile-only {
    display: flex;
  }
}

/* Inverted nav (menu-responsive-2) — espejo vertical: corte en esquina inferior-derecha */
.mobile-panel__list--inv .mobile-panel__item a {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(1) a {
  width: 90%;
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  background: linear-gradient(to right, #fff 0%, var(--color-secondary) 100%);
  border: 1px solid var(--color-secondary);
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(2) a {
  width: 90%;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(3) a {
  width: 75%;
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(4) a {
  width: 60%;
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(5) a {
  width: 45%;
  background: linear-gradient(to right, #b5b4b4 50%, var(--color-primary) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.8s ease;
  color: #000;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(5) a:hover {
  background-position: left center;
  color: #000;
}
.mobile-panel__list--inv .mobile-panel__item:nth-child(5) a::before,
.mobile-panel__list--inv .mobile-panel__item:nth-child(5) a::after {
  display: none;
}
.mobile-panel__list--inv .mobile-panel__item.current-menu-item a,
.mobile-panel__list--inv .mobile-panel__item.current-menu-item a:hover {
  background: var(--color-secondary) !important;
  background-position: initial !important;
  color: #fff;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .mobile-panel__brand {
    position: absolute;
    width: 140px;
    top: 40px;
  }
  .mobile-panel__header {
    padding: 14px 20px 88px;
    border-bottom: none;
  }
  .mobile-panel__list {
    gap: 12px;
  }
}
@media screen and (min-width: 1280px) {
}

/* mp-section blocks */
.mp-section {
  padding: 25px 0;
}
.mp-section__title {
  display: block;
  width: 95%;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(to right, #fff 0, var(--color-primary) 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 100%, 0 100%);
  margin-bottom: 14px;
}
/* Benefits 2x2 grid */
.mp-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0 16px;
}
.mp-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-border-primary);
}
.mp-benefit__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.mp-benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-benefit__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  line-height: 1.2;
  padding: 6px 10px;
}

/* Nous Contacter socials */
.mp-socials {
  display: flex;
  gap: 5px;
  padding: 0 16px;
  flex-wrap: wrap;
}
.mp-social {
  width: 41px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mp-social__letter {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}

/* Espace Personnel icon list */
.mp-icon-list {
  display: grid;
  gap: 10px;
  padding: 0 16px;
}
.mp-icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-icon-list__icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.mp-icon-list li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #000;
}

/* Service Clientèle plain list */
.mp-plain-list {
  display: grid;
  gap: 7px;
  padding: 0 16px;
}
.mp-plain-list li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #000;
}
.mp-plain-list li a:hover {
  color: var(--color-dark);
}
.mp-newsletter {
  display: block;
  text-align: center;
  padding: 16px;
  margin: 24px 16px 0;
  font-size: 1rem;
  color: var(--color-gold);
  border-top: 1px solid var(--color-txt);
  font-weight: 700;
}
.mp-sticky-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .mp-sticky-nav {
    display: block;
    flex-shrink: 0;
    background: var(--color-tertiary);
  }
  .mp-sticky-nav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: #000;
    text-align: left;
    cursor: pointer;
  }
  .mp-sticky-nav__item:last-child {
    border-bottom: none;
  }
  .mp-sticky-nav__icon {
    width: 22px;
    height: 22px;
    border: 1px solid #aaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    color: #888;
    flex-shrink: 0;
  }
}

/* Submenús responsive (Collections, Marque…) */
.mp-collections-panel,
.mp-marque-panel {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-panel.has-collections .mobile-panel__body,
  .mobile-panel.has-marque .mobile-panel__body,
  .mobile-panel.has-collections .mp-sticky-nav,
  .mobile-panel.has-marque .mp-sticky-nav {
    display: none;
  }
  .mobile-panel.has-collections .mp-collections-panel,
  .mobile-panel.has-marque .mp-marque-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 30px;
  }
  .mp-collections-back {
    display: block;
    width: 95%;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    color: #000;
    background: linear-gradient(to right, #fff 0%, var(--color-gold) 100%);
    border: 1px solid var(--color-gold);
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    cursor: pointer;
    margin: 16px 0 24px;
  }
  .mp-col-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 16px;
  }
  .mp-col-list__link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
  }
  .mp-col-list__img-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #c8b8d4;
  }
  .mp-col-list__img-wrap--dark {
    background: #1a1a1a;
  }
  .mp-col-list__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mp-col-list__name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
  }
}

/**
*	HEADER
*	=======================================================================================================
**/
.page-header {
  position: relative;
  z-index: 900;
  background-color: var(--color-primary);
}
.page-header::after {
  content: "";
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  border: 1px solid #baabd4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 9;
  pointer-events: none;
}
.page-header__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 20px;
  margin: 0 1.5rem;
}
.page-header__burger {
  width: 40px;
  height: 50px;
  align-self: start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.page-header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-black);
  border-radius: 999px;
}
.page-header__brand {
  display: grid;
  justify-items: flex-start;
  gap: 4px;
}
.page-header__logo {
  width: 120px;
  transition: var(--transition);
}

.page-header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 20px 0;
}
.page-header__action {
  width: 26px;
  height: 26px;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.single-faq__theme-bar-label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.page-header__action:hover {
  transform: translateY(-2px);
}
.page-header__cart-mobile {
  display: none;
}

@media screen and (min-width: 580px) {
  .page-header__actions {
    gap: 55px;
    min-width: 107px;
  }
  .page-header {
    position: relative;
    padding: 18px 0 14px;
    background-color: #fff;
  }
  .page-header__logo {
    width: 360px;
  }
  .page-header__burger {
    width: 50px;
    height: 50px;
  }
  .page-header__brand {
    justify-items: center;
  }
  .page-header::after {
    display: none;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

@media screen and (max-width: 767px) {
  .page-header__top {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    align-items: center;
    margin-right: 0;
  }
  .page-header__action {
    width: 22px;
    height: 22px;
  }
  .page-header__cart-mobile {
    display: block;
    align-self: stretch;
    width: 95px;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 580px) {
  .column-burger {
    min-width: 107px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HEADER - MINIMAL (sin acciones en móvil) ============== **/
.page-header--minimal {
  background: #fff;
  padding: 10px 0;
}
.page-header--minimal::after {
  display: none;
}
.page-header--minimal .page-header__brand {
  justify-self: center;
  margin-right: 60px;
}
.page-header--minimal .page-header__actions,
.page-header--minimal .page-header__cart-mobile {
  display: none;
}
@media screen and (min-width: 580px) {
  .page-header--minimal .page-header__brand {
    margin-right: 0;
  }
  .page-header--minimal .page-header__actions {
    display: flex;
  }
}

/** HEADER - NAV BOARD ============== **/

.nav-board {
  margin-top: 35px;
  overflow: hidden;
  transition: var(--transition);
  display: none;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .nav-board {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
}

.nav-board__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.nav-board__list::after {
  content: "";
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 1px solid #baabd4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 9;
  pointer-events: none;
}
.nav-board__item {
  position: relative;
  min-height: 140px;
  transition: var(--transition);
}
.nav-board__item:nth-child(-n + 4) {
  flex: 1 1 0;
}
.nav-board__item--cart {
  flex: 0 0 150px;
  transition: var(--transition);
}
#cart-btn {
  position: absolute;
  width: 220px;
  height: 100%;
  right: 0;
  top: 0;
  transition: var(--transition);
}
.nav-board__item:not(:first-child) {
  margin-left: -95px;
}
/* .nav-board__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 98px;
  height: 100%;
  background: var(--color-white);
  -webkit-clip-path: polygon(0 0, 4px 0, 99px 100%, 95px 100%);
  clip-path: polygon(0 0, 4px 0, 99px 100%, 95px 100%);
  pointer-events: none;
  z-index: 9;
  transition: var(--transition);
} */
.nav-board__item:last-child::before {
  display: none;
}
.nav-board__item:nth-child(1) {
  z-index: 1;
}
.nav-board__item:nth-child(2) {
  z-index: 2;
}
.nav-board__item:nth-child(3) {
  z-index: 3;
}
.nav-board__item:nth-child(4) {
  z-index: 4;
}
.nav-board__item:nth-child(5) {
  z-index: 5;
  margin: 7px;
}
.nav-board__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  color: #000;
}
.nav-board__item:nth-child(1) .nav-board__link {
  -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 0 100%);
  transition: var(--transition);
  padding-right: 60px;
}
.nav-board__item:nth-child(2) .nav-board__link,
.nav-board__item:nth-child(3) .nav-board__link,
.nav-board__item:nth-child(4) .nav-board__link {
  -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 100px 100%);
  clip-path: polygon(0 0, calc(100% - 100px) 0, 100% 100%, 100px 100%);
  transition: var(--transition);
}
.nav-board__item:nth-child(1) .nav-board__link,
.nav-board__item:nth-child(2) .nav-board__link,
.nav-board__item:nth-child(3) .nav-board__link,
.nav-board__item:nth-child(4) .nav-board__link {
  background: var(--color-primary);
}
.nav-board__item:nth-child(1):hover .nav-board__link,
.nav-board__item:nth-child(2):hover .nav-board__link,
.nav-board__item:nth-child(3):hover .nav-board__link,
.nav-board__item:nth-child(4):hover .nav-board__link {
  background: #bdbdbd;
}
.nav-board__link--cart {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 65px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 65px 100%);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10px;
  color: var(--color-white);
  background: var(--color-black);
}

@media screen and (max-width: 1199px) {
  .nav-board__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .nav-board__item:nth-child(-n + 4),
  .nav-board__item--cart {
    flex: initial;
  }
  .nav-board__item {
    z-index: auto;
  }
  .nav-board__item:not(:first-child) {
    margin-left: 0;
  }
  .nav-board__item:not(:first-child) .nav-board__link {
    width: 100%;
  }
  .nav-board__item--cart {
    grid-column: span 4;
    min-height: 104px;
  }
}

@media screen and (max-width: 767px) {
  .nav-board {
    margin-top: 20px;
  }
  .nav-board__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-board__item {
    min-height: 96px;
  }
  .nav-board__item--cart {
    grid-column: span 2;
    min-height: 118px;
  }
  .nav-board__item:nth-child(1) .nav-board__link,
  .nav-board__item:nth-child(2) .nav-board__link,
  .nav-board__item:nth-child(3) .nav-board__link,
  .nav-board__item:nth-child(4) .nav-board__link,
  .nav-board__link--cart {
    -webkit-clip-path: none;
    clip-path: none;
  }
  .nav-board__item:nth-child(1) .nav-board__link::after,
  .nav-board__item:nth-child(2) .nav-board__link::after,
  .nav-board__item:nth-child(3) .nav-board__link::after,
  .nav-board__item:nth-child(4) .nav-board__link::after {
    display: none;
  }
}

/**
*	FOOTER
*	=======================================================================================================
**/

.site-footer {
  position: relative;
  background: var(--color-tertiary);
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-top: 60px;
}
.site-footer__main {
  padding: 44px 0 25px;
}
@media screen and (max-width: 767px) {
  .site-footer__main {
    display: none;
  }
}
.site-footer__title {
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.site-footer__column {
  position: relative;
  min-height: 250px;
  text-align: center;
}
.site-footer__column:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 1px;
  height: 155px;
  background: var(--color-gray-medium);
  transform: rotate(20deg) translateY(-50%);
}
.site-footer__heading {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-black);
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-black);
}
.site-footer__links a {
  margin: 5px 0;
  display: block;
}
.site-footer__mail {
  display: block;
  margin-bottom: 15px;
}
.site-footer__mail img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
}
.block-social-footer {
  flex-direction: column;
  gap: 5px;
  margin: 5px 0;
}
.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 16px;
}
.site-footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  transition: var(--transition);
}
.site-footer__socials a:hover {
  transform: translate(0, -5px);
}
.site-footer__newsletter {
  display: grid;
  gap: 12px;
  justify-items: center;
}
.site-footer__apps {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.site-footer__apps a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.site-footer__apps a:hover {
  transform: translate(0, -5px);
}
.site-footer__bottom {
  padding: 18px 0 20px;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom {
    display: none;
  }
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.site-footer__bottom-logo {
  width: 120px;
}

.site-footer__mobile {
  display: none;
}
.site-footer__mobile-col .site-footer__links {
  text-align: right;
  font-size: 0.8rem;
}
.site-footer__mobile-col .site-footer__links a {
  margin: 0;
}
.site-footer__mobile-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .site-footer__mobile {
    display: block;
    padding: 24px 0;
  }
}

/**
*	SWIPER
*	=======================================================================================================
**/

.swiper {
  overflow: hidden;
}
.swiper-slide {
  height: auto;
}

/**
*	HOME
*	=======================================================================================================
**/
.home-page-container {
  flex-direction: column-reverse;
  margin-bottom: -60px;
}

@media screen and (min-width: 580px) {
  .home-page-container {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HOME - RIBBON ============== **/

.section-ribbon {
  position: relative;
  width: 100%;
  background: #706f6f;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--color-border-primary);
  margin-bottom: 30px;
}
.section-ribbon--compact {
  height: 40px;
}
.section-ribbon__text {
  position: relative;
  z-index: 1;
  padding: 0 95px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  display: flex;
  align-items: center;
  line-height: 1;
}
.section-ribbon__text::before,
.section-ribbon__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 3px 0, 39px 100%, 36px 100%);
  clip-path: polygon(0 0, 3px 0, 39px 100%, 36px 100%);
}
.section-ribbon__text::before {
  left: 0;
}
.section-ribbon__text::after {
  right: 0;
}
.section-ribbon__text--gold {
  color: var(--color-gold);
}

/** HOME - BIENVENIDA ============== **/
.welcome {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .welcome__slider--desktop {
    display: none;
  }
}
.welcome__mobile-hero {
  display: none;
}
@media screen and (max-width: 767px) {
  .welcome__mobile-hero {
    display: block;
    margin: 0 -1.5rem;
  }
}
.welcome__pagination {
  position: static;
  margin-top: 14px;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(77, 77, 77, 0.18);
}
.welcome__pagination.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
    position: absolute;
}
.swiper-pagination-bullet-active {
  background: var(--color-white);
}

/** HOME - LOOKBOOKS ============== **/
.lookbooks.section-home {
  display: none;
}
.lookbooks__layout {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.lookbooks__slider-shell {
  position: relative;
  width: 50%;
}
.lookbooks__wrapper {
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.lookbooks__poster {
  position: relative;
  border: 2px solid var(--color-border-primary);
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 50%;
}
.lookbooks__next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 4;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(77, 77, 77, 0.08);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lookbooks__next img {
  width: 12px;
}
.lookbooks__next.swiper-button-disabled {
  opacity: 0.45;
}
.lookbooks__slider .swiper-slide {
  border: 2px solid var(--color-border-primary);
}

@media screen and (max-width: 1199px) {
  .lookbooks__layout {
    grid-template-columns: 1fr;
  }
  .lookbooks__next {
    right: 18px;
  }
}

@media screen and (max-width: 767px) {
  .lookbooks__poster,
  .lookbooks__poster--featured {
    min-height: 540px;
  }
  .lookbooks__meta {
    max-width: 210px;
    padding: 26px 20px 0;
  }
  .lookbooks__next {
    width: 58px;
    height: 58px;
    right: 14px;
  }
}

@media screen and (min-width: 580px) {
  .lookbooks.section-home {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HOME - FIGURAS ============== **/

.fashion-figure {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 250px;
  height: 520px;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .fashion-figure {
    width: 220px;
    height: 470px;
  }
}

/** HOME - VALORES ============== **/
.values {
  padding: 0 0 30px;
}
.values__card {
  display: block;
  width: min(100%, 440px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  overflow: hidden;
}
.values__pagination.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 0px;
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1px solid var(--color-primary);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

@media screen and (min-width: 580px) {
  .values {
    padding: 40px 0;
  }
  .values__pagination.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
  }
}
@media screen and (min-width: 980px) {
  .values {
    padding: 80px 0 40px;
  }
  .values__card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(77, 77, 77, 0.08);
  }
}
@media screen and (min-width: 1280px) {
}

/**
*  POPUP FIDÉLITÉ
*  =======================================================================================================
**/
.priv-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.priv-popup.is-open {
  opacity: 1;
  pointer-events: all;
}
.priv-popup__backdrop {
  position: absolute;
  inset: 0;
  background: #3333338a;
}
.priv-popup__box {
  position: relative;
  width: min(890px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  padding: 48px 52px 44px;
  text-align: center;
}
.priv-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: none;
}
.priv-popup__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #000;
}
.priv-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.priv-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.priv-popup__img {
  width: 250px;
  margin: 40px auto 0;
  border: 1px solid #000;
}
.priv-popup__box h2 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: -2px;
}
.priv-popup__box h3 {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-align: center !important;
  margin-bottom: 25px;
}
.priv-popup__center {
  text-align: center !important;
}
.priv-popup__box p {
  font-size: 0.85rem;
  line-height: 1.1;
  color: #000;
  text-align: left;
}
.priv-popup__box a {
  text-decoration: underline;
  color: #24556d;
}
@media (max-width: 600px) {
  .priv-popup__box {
    padding: 40px 24px 32px;
  }
  .priv-popup__img {
    width: 100%;
    height: 130px;
  }
}

/**
*	INTERNAS
*	=======================================================================================================
**/
/** BANNER - INTERNAS ============== **/
.banner-intern {
  background: var(--color-tertiary);
}
.banner-intern__wrapper {
  text-align: center;
}
.banner-intern__wrapper h1 {
  margin-bottom: 30px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.banner-intern__des p {
  margin: 0;
}

/* Back button: oculto por defecto, visible en móvil para single-faq */
.banner-intern__back {
  display: none;
  text-decoration: none;
}
.banner-intern__back::after {
  position: absolute;
  content: "";
  right: -52px;
  top: 0;
  width: 52px;
  height: 52px;
  background-image: url(../images/triangle-white-top.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 52px auto;
}
@media (max-width: 980px) {
  .banner-intern--faq {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
  .banner-intern__back {
    display: inline-flex;
    align-items: center;
    position: relative;
    background: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-dark);
    width: max-content;
    padding: 15px 0 12px 1.5rem;
    height: 52px;
    color: #000;
    font-weight: 700;
  }
  .banner-intern--faq .banner-intern__des {
    display: none;
  }
  .banner-intern--faq .banner-intern__wrapper {
    padding: 20px 0 0;
  }
  .banner-intern--faq .banner-intern__wrapper h1 {
    margin-bottom: 0;
  }
  .banner-intern__title-desktop {
    display: none;
  }
  .banner-intern__title-mobile {
    display: inline;
  }
}
@media (min-width: 980px) {
  .banner-intern__title-desktop {
    display: inline;
  }
  .banner-intern__title-mobile {
    display: none;
  }
}

/** BANNER INFO (TÍTULO DIAGONAL + TEXTO A LA DERECHA) - INTERNAS ============== **/
#banner-intern-info {
  border-top: 1px solid var(--color-primary);
  padding: 10px 0 15px;
}
.banner-intern-info__wrapper {
  flex-direction: column;
  position: relative;
}
.banner-intern-info__wrapper .column1,
.banner-intern-info__wrapper .column2 {
  position: relative;
}
.banner-intern-info__wrapper .column1 {
  width: 50%;
  min-height: 52px;
}
.banner-intern-info__wrapper .column2 {
  width: 100%;
  min-height: 0;
  margin-top: 20px;
}
.banner-intern-info__wrapper.no-description .column2 {
  /* min-height: 52px; */
  /* display: none; */
}
.banner-intern-info__title {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-transform: uppercase;
  background: linear-gradient(to right, #b5b4b4 50%, var(--color-primary) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 1s ease;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 30px) 100%, 0 100%);
  padding: 15px 40px 12px 20px;
  height: 52px;
  width: max-content;
  left: -1.5rem;
  right: 0;
}

.banner-intern-info__title:hover {
  background-position: left center;
}
.page-actualites .banner-intern-info__title {
    background: linear-gradient(to right, var(--color-secondary) 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right center;
    border: 1px solid var(--color-secondary);
    border-top: 0;
}
.page-actualites .banner-intern-info__title:hover {
  background-position: left center;
}
.banner-intern-info__wrapper .column1::before {
  content: "";
  width: 600px;
  height: 52px;
  background-color: var(--color-primary);
  left: -600px;
  top: 0;
  position: absolute;
}
.banner-intern-info__title h1 {
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (max-width: 579px) {
  .single-product .banner-intern-info__title h1::before,
  .tax-product_cat .banner-intern-info__title h1::before {
    content: "< ";
  }
}
.banner-intern-info__content {
  padding: 15px;
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.4;
  display: block;
  position: relative;
  width: 100%;
  right: 0;
  top: 0;
  letter-spacing: 0;
  color: #000;
}
.column2-content {
  position: relative;
}
.banner-intern-info__wrapper .column2-content::before,
.banner-intern-info__wrapper .column2-content::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
}
.banner-intern-info__wrapper .column2-content::before {
  background-image: url(../images/vineta-sup-iz.svg);
  background-position: top left;
  background-size: contain;
  top: 0;
  left: 0;
}
.banner-intern-info__wrapper .column2-content::after {
  background-image: url(../images/vineta-inf-der.svg);
  background-position: bottom right;
  background-size: contain;
  bottom: 0;
  right: 0;
}
.banner-intern-info__content p {
  margin-bottom: 10px;
  text-align: justify;
}

@media screen and (min-width: 580px) {
  .banner-intern-info__wrapper .column1 {
    width: 40%;
  }
  .banner-intern-info__title {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    padding: 15px 40px 12px;
    width: 1000px;
    left: auto;
    right: 0;
  }
  .banner-intern-info__title h1 {
    font-size: 1.1rem;
  }
  .page-actualites .banner-intern-info__title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-secondary);
    clip-path: polygon(
      calc(100% - 32px) 0,
      calc(100% - 30px) 0,
      100% 100%,
      calc(100% - 2px) 100%
    );
    pointer-events: none;
  }
}
@media screen and (min-width: 980px) {
  .banner-intern-info__content::before {
    content: "";
    float: left;
    width: 185px;
    height: 360px;
    shape-outside: polygon(110% 100%, 0% 0%, 0% 100%);
    pointer-events: none;
  }
  .banner-intern-info__content {
    padding: 15px 0 0 25px;
    position: absolute;
    width: calc(100% + 10px);
    margin-top: 0;
  }
  .banner-intern-info__wrapper .column2-content::before,
  .banner-intern-info__wrapper .column2-content::after {
    display: none;
  }
  #banner-intern-info {
    padding: 0;
  }
  .banner-intern-info__wrapper {
    flex-direction: row;
  }
  .banner-intern-info__wrapper .column2 {
    width: 60%;
    min-height: 160px;
    margin-top: 0;
  }
  .banner-intern-info__wrapper .column1 {
    width: 40%;
  }
}
@media screen and (min-width: 1280px) {
}

/** SECONDBANNER - INTERNAS ============== **/
#secondbanner {
  margin-bottom: 40px;
  /* padding-top: 15px; */
}
#secondbanner .title-diagonal {
  margin-bottom: 0;
}
.secondbanner__top {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-direction: column;
  gap: 30px;
}
.secondbanner__heading {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 5vw, 2rem);
  font-weight: 900;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
  width: 100%;
  text-align: center;
}
.secondbanner__text p {
  font-size: 1rem;
  color: #000;
  margin: 0;
  line-height: 1.3;
}
.secondbanner__top .title {
  background-color: var(--color-gold);
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
  padding: 9px 40px;
  height: 40px;
  justify-content: center;
}
.secondbanner__top .title h2 {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}
#secondbanner h4 {
  font-size: 1.1rem;
  letter-spacing: 0;
  color: #000;
  text-align: center;
  margin: 25px 0 0;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (min-width: 580px) {
  .secondbanner__top {
    flex-direction: row;
    gap: 10px;
  }
  .secondbanner__top .title {
    width: 40%;
  }
  .secondbanner__heading {
    width: 50%;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** TÍTULO PARA 3 TEXTOS CON DIAGONALES ============ **/
.tit-3-diagonal__tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  gap: 20px;
  text-align: center;
  margin: 0 -1.5rem 10px;
}
.tit-3-diagonal__tab {
  flex: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  font-family: var(--font-body);
  color: #000;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  line-height: 1;
  font-weight: 700;
  min-height: 39px;
  padding: 6px 14px;
  font-size: 0.75rem;
}
.tit-3-diagonal__tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7px;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: skewX(40deg);
  z-index: 1;
}
.tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(1),
.tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(3) {
  width: 10%;
}
.tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(2) {
  width: 80%;
  flex: none;
}
@media screen and (min-width: 580px) {
  .tit-3-diagonal__tabs-bar {
    margin: 0 0rem 10px;
  }
  .tit-3-diagonal__tab {
    padding: 11px 28px;
    font-size: 1.1rem;
  }
  .tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(1),
  .tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(3) {
    width: auto;
  }
  .tit-3-diagonal__tabs-bar.-only-one .tit-3-diagonal__tab:nth-child(2) {
    width: auto;
    flex: 1;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	SERVICE CLIENTELE
*	=======================================================================================================
**/
#themes {
  padding: 80px 0 40px;
}
/** SERVICE CLIENTELE - THÃˆMES ============== **/

.themes__wrapper {
  display: grid;
  gap: 40px;
}
.themes__wrapper h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-primary);
}
.themes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.theme-card {
  display: flex;
  flex-direction: column;
}
.theme-card__header {
  position: relative;
  background: var(--color-txt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 80px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.theme-card__body {
  flex: 1;
  display: grid;
}
.theme-card__item {
  font-size: 0.8rem;
  color: var(--color-txt);
  border: 1px solid #cdcbcb;
  padding: 15px 20px;
}
.theme-card__item:nth-child(2) {
  background-color: #cdcbcb;
  color: #fff;
}
.theme-card__item strong {
  color: var(--color-black);
}
.theme-card__item:nth-child(2) strong {
  color: #fff;
}
.theme-card__faq {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #cdcbcb;
  color: #fff;
  border-top: 1px solid #cdcbcb;
  transition: var(--transition);
}
.theme-card__faq:hover {
  background: #b5b4b4;
  border-color: #b5b4b4;
}

@media screen and (max-width: 767px) {
  .themes__grid {
    grid-template-columns: 1fr;
  }
}

/** SERVICE CLIENTELE - SEARCH ============== **/
.single-faq #search-ser-cli{
	display:none;
}
.search-ser-cli__wrapper {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.search-ser-cli__form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 680px;
  border: 1px solid var(--color-black);
}
.search-ser-cli__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-black);
  background: transparent;
  appearance: none;
}
.search-ser-cli__input::placeholder {
  color: #aaa;
}
.search-ser-cli__input::-webkit-search-cancel-button {
  display: none;
}
.search-ser-cli__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-black);
}
.search-ser-cli__btn:hover {
  color: #888;
}

/** SERVICE CLIENTELE - CONTACT ============== **/
.ser-cli-contact__wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ser-cli-contact__wrapper h2 {
  color: var(--color-primary);
}
.ser-cli-contact__btns {
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.ser-cli-contact__btns a {
  display: flex;
  width: 70px;
  height: 70px;
  transition: var(--transition);
}
.ser-cli-contact__btns a:hover {
  transform: translateY(-2px);
}

/**
*	SINGLE FAQ
*	=======================================================================================================
**/
#single-faq {
  padding: 20px 0;
}
#single-faq .container {
  margin: 0 -1.5rem;
  width: auto;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #single-faq .container {
    margin: 0 auto;
    width: 100%;
  }
  #single-faq {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** SINGLE FAQ - TITLE ============== **/
.single-faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.single-faq__title {
  background: var(--color-txt);
  padding: 28px 36px;
  text-align: center;
  display: none;
}
.single-faq__title h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .single-faq__title {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
}

/** SINGLE FAQ - MENU ============== **/
.single-faq__menu {
  background: var(--color-gold);
  margin-bottom: 20px;
}
.single-faq__menu-list {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.single-faq__menu-item {
  position: relative;
  z-index: 0;
  width: 25%;
  text-align: center;
}
.single-faq__menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7px;
  bottom: 0;
  width: 5px;
  background: #fff;
  transform: skewX(40deg);
  z-index: 1;
}
.single-faq__menu-item a {
  display: flex;
  padding: 11px 28px 11px 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  line-height: 1.1;
}
.single-faq__menu-item.is-active a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/** SINGLE FAQ - TABS ============== **/
.single-faq__tabs {
    display: flex;
    min-height: 615px;
}
.single-faq__column1 {
  width: 50%;
  position: relative;
}
.single-faq__questions {
  list-style: none;
  position: absolute;
  width: calc(100% + 80px);
  top: 0;
  left: 0;
}
.single-faq__question {
    padding: 14px 24px 14px 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.5;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    -webkit-clip-path: polygon(
    0 0,
    calc(100% - 1px) 0,
    calc(100% - 25px) 100%,
    0 100%
  );
    clip-path: polygon(0 0, calc(100% - 1px) 0, calc(100% - 25px) 100%, 0 100%);
    border: 1px solid var(--color-border-primary);
    border-top: 0;
    font-weight: 700;
    min-height: 92px;
    display: flex;
    align-items: center;
}
.single-faq__question:nth-child(1) {
  width: calc(100% - 10px);
  border-top: 1px solid var(--color-border-primary);
}
.single-faq__question:nth-child(2) {
  width: calc(100% - 34px);
}
.single-faq__question:nth-child(3) {
  width: calc(100% - 58px);
}
.single-faq__question:nth-child(4) {
  width: calc(100% - 82px);
}
.single-faq__question:nth-child(5) {
  width: calc(100% - 106px);
}
.single-faq__question:nth-child(6) {
  width: calc(100% - 130px);
}
.single-faq__question:nth-child(7) {
  width: calc(100% - 154px);
}
.single-faq__question::after {
    content: "";
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    width: 1px;
    background: var(--color-border-primary);
    transform: skewX(-15deg);
    z-index: 1;
}
.single-faq__question:hover {
  color: var(--color-dark);
}
.single-faq__question.is-active {
  color: var(--color-dark);
}
.single-faq__column2 {
  position: relative;
  width: 50%;
}
.single-faq__answers {
    position: absolute;
    width: calc(100% + 80px);
    top: 0;
    right: 0;
    height: 644px;
    overflow: hidden;
    -webkit-clip-path: polygon(173px 0px, 100% 0px, 100% 100%, 0 calc(100% + 1px));
    clip-path: polygon(173px 0px, 100% 0px, 100% 100%, 0 calc(100% + 1px));
    border: 1px solid var(--color-border-primary);
    /* background: yellow; */
}
.single-faq__answers a{
  color:#24556d;
  text-decoration: underline;
}
.single-faq__answer-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 596px;
  right: 0;
  width: calc(100% + 80px);
  z-index: 2;
}
.single-faq__answer-page > * + * {
  margin-top: 14px;
}
.single-faq__answer-page ol,
.single-faq__answer-page ul,
.single-faq__answer-page li {
  list-style: none;
  padding-left: 0;
}
.single-faq__answer-pagination .single-faq__pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--color-border-primary);
}
.single-faq__answer-pagination .single-faq__pagination-arrow svg {
  width: 9px;
  height: auto;
  display: block;
}
.single-faq__answer-pagination .single-faq__pagination-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.single-faq__answer-pagination .single-faq__pagination-counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-border-primary);
  letter-spacing: 0.05em;
}
.single-faq__answer {
    display: none;
    padding: 22px 28px;
    overflow: hidden;
    font-size: 0.8rem;
    line-height: 1.3;
}
.single-faq__answer::before {
  content: "";
  float: left;
  width: 185px;
  height: 600px;
  shape-outside: polygon(83% 0%, 0% 0%, 0% 100%);
  pointer-events: none;
}
.single-faq__answer.is-active {
  display: block;
  background: linear-gradient(300deg, var(--color-tertiary) 66%, #fff 66%);
}
.single-faq__answer > * + * {
  margin-top: 14px;
}
.single-faq__answer h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  line-height: 1.4;
}
.single-faq__answer ol,
.single-faq__answer ul {
  padding-left: 0;
  list-style: none;
}
.single-faq__answer li {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 12px;
}
.single-faq__answer li:last-child {
  margin-bottom: 0;
}
.single-faq__answer li:last-child p {
  margin-bottom: 0;
}
.single-faq__answer li strong {
  display: block;
  color: var(--color-dark);
}
.single-faq__answer li p {
  text-align: justify;
  font-size: 0.8rem;
}

/* Retours & remboursements : caja de respuestas más baja (552 en vez de 644) */
@media (min-width: 981px) {
  body.faq-retours-remboursements .single-faq__answers {
    height: 552px;
    -webkit-clip-path: polygon(173px 0px, 100% 0px, 100% 100%, 0 calc(100% + 90px));
    clip-path: polygon(173px 0px, 100% 0px, 100% 100%, 0 calc(100% + 90px));
  }
  body.faq-retours-remboursements .single-faq__answers::before { left: 99px; }
  body.faq-retours-remboursements .single-faq__answer-pagination { top: 504px; }
  body.faq-retours-remboursements .single-faq__answer::before {
    height: 508px;
    shape-outside: polygon(83% 0%, 0% 0%, 0% calc(100% + 67px));
  }
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .single-faq__answers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 85px;
    bottom: 0;
    width: 1px;
    background: var(--color-border-primary);
    transform: skewX(-15deg);
    z-index: 1;
}
  .single-faq__answer.is-active {
    background: #fff;
  }
  .single-faq__answer h3 {
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
}

/* Header de respuesta (visible solo en mobile endpoint) */
.single-faq__answer-header {
  display: none;
}
.single-faq__back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}
.single-faq__answer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-txt);
  text-transform: uppercase;
  line-height: 1.3;
}
.single-faq__back svg {
  stroke: var(--color-txt);
}
.single-faq__theme-bar {
  display: none;
}

@media (max-width: 980px) {
  /* Tabs: apila columna1 encima de columna2 */
  .single-faq__tabs {
    flex-direction: column;
    min-height: 0;
  }
  .single-faq__column1 {
    width: 100%;
    position: static;
  }
  .single-faq__column1::before {
    content: "";
    position: absolute;
    left: 176px;
    bottom: 0;
    width: 1px;
    background: var(--color-border-primary);
    transform: skewX(-21deg);
    z-index: 24;
    height: calc(100% - 57px);
  }
  /* Lista de preguntas: igual a profil-page__tabs en home-mobile */
  .single-faq__questions {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    isolation: isolate;
  }
  /* Imagen diagonal en esquina superior izquierda */
.single-faq__questions::after {
    content: "";
    position: absolute;
    width: 242px;
    height: 100%;
    background-color: var(--color-gold);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 calc(100% + 154px), 0 100%);
}
  /* Separador diagonal blanco */
.single-faq__questions::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 141px;
    bottom: 0;
    width: 14px;
    background: #fff;
    transform: skewX(-21deg);
    z-index: 0;
    height: calc(100% + 3px);
}
  /* Cada pregunta: ancho completo, centrada, sin diagonal */
  .single-faq__question {
    width: 100% !important;
    -webkit-clip-path: none;
    clip-path: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 75px;
    color: var(--color-dark);
    border: none;
    line-height: 1.2;
  }
  /* Borde blanco inset (igual a profil-page__tab::before en home-mobile) */
  .single-faq__question::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-border-primary);
    border-top: none;
    z-index: -2;
    pointer-events: none;
  }
  /* Quita el borde diagonal derecho */
  .single-faq__question::after {
    display: none;
  }
  .single-faq__column2 {
    display: none;
  }
  .single-faq__answers {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .single-faq__answer::before {
    display: none;
  }
  .single-faq__answer-pagination {
    display: none;
  }
  .single-faq__menu {
    display: none;
  }
  .single-faq__theme-bar {
    display: block;
    position: relative;
    margin-bottom: 10px;
  }
  .single-faq__theme-bar-inner {
    display: flex;
    align-items: stretch;
    background: var(--color-txt);
  }
  .single-faq__theme-bar-label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    min-height: 42px;
  }
  .single-faq__theme-bar-label::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    transform: skewX(24deg);
    z-index: -1;
  }
  .single-faq__theme-bar-current {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 12px 12px 20px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    justify-content: center;
  }
  .single-faq__theme-bar-toggle {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--color-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
  }
  .single-faq__theme-bar-toggle::before {
    content: "";
    position: absolute;
    background: var(--color-primary);
    width: 26px;
    height: 42px;
    left: -25px;
    top: 0;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 72% 100%);
  }
  .single-faq__theme-bar-toggle svg {
    transition: transform 0.2s;
  }
  .single-faq__theme-bar.is-open .single-faq__theme-bar-toggle svg {
    transform: rotate(90deg);
  }
  .single-faq__theme-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--color-txt);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .single-faq__theme-bar.is-open .single-faq__theme-dropdown {
    display: block;
  }
  .single-faq__theme-dropdown-item a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Modo endpoint: muestra respuesta, oculta lista */
  .single-faq__tabs.is-endpoint .single-faq__column1 {
    display: none;
  }
  .single-faq__tabs.is-endpoint .single-faq__column2 {
    display: block;
    width: 100%;
    position: relative;
  }
  .single-faq__tabs.is-endpoint .single-faq__answer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-gold);
    padding: 18px 20px;
    width: 100%;
  }
}

/**
*  NOUS CONTACTER
*  =======================================================================================================
**/

#nous-contacter {
  padding: 60px 0;
}
.nc-wrapper {
  max-width: 530px;
  margin: 0 auto;
}
.nc-form {
  display: grid;
  gap: 28px;
}

.nc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nc-field__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}

.nc-field__sublabel {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: -4px;
}

/* --- Select fields --- */

.nc-field__select-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-gray);
  height: 52px;
  overflow: hidden;
}

.nc-field__select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 20px;
  background: transparent;
  appearance: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #aaa;
  cursor: pointer;
}

.nc-field__select-btn {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  margin-left: -22px;
  background: var(--color-gold);
  -webkit-clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  font-size: 1.1rem;
  color: var(--color-white);
  pointer-events: none;
  user-select: none;
}

/* --- Text / email / tel inputs --- */

.nc-field__input-wrap {
  display: flex;
  align-items: stretch;
  height: 52px;
  border: 1px solid var(--color-gray);
  overflow: hidden;
}

.nc-field__accent {
  flex-shrink: 0;
  width: 62px;
  background: var(--color-dark);
  -webkit-clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
}

.nc-field__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 16px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
}

/* --- TÃ©lÃ©phone indicator button --- */

.nc-field__indicator-btn {
  flex-shrink: 0;
  width: 62px;
  border: none;
  background: #4e4e4d;
  -webkit-clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
  color: var(--color-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  cursor: pointer;
  transition: var(--transition);
}

/* --- CivilitÃ© --- */

.nc-field__civility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.nc-civility__opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  cursor: pointer;
}
.nc-civility__opt input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  border: 1px solid var(--color-border-primary) !important;
  border-radius: 0 !important;
  background: #fff !important;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.nc-civility__opt input[type="radio"]:checked {
  background-color: var(--color-dark) !important;
}

/* --- Selects con sc-field (nc-select-wrap) --- */

#nous-contacter .nc-select-wrap {
  height: 42px;
  border: none;
  overflow: visible;
}
/* #nous-contacter .nc-select-wrap::after {
  display: none;
} */
#nous-contacter .nc-select-wrap .nc-field__select {
  flex: 1;
  min-width: 0;
  padding-left: 14px;
  height: 42px;
  border: 1px solid var(--color-border-primary);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
  cursor: pointer;
  clip-path: polygon(0% 0%, 94% 0%, 96% 100%, 0% 100%);
  padding: 10px 44px 10px 10px;
}
.sc-field__wrap.nc-select-wrap::after {
  content: "";
  position: absolute;
  right: 51px;
  top: 0;
  width: 34px;
  height: 42px;
  background-image: url(../images/triangle-white-left.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
#nous-contacter .nc-select-wrap .nc-field__select-btn {
  flex-shrink: 0;
  width: 44px;
  height: 42px;
  clip-path: none;
  -webkit-clip-path: none;
  margin-left: 0;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-white);
  padding-right: 0;
}
#nous-contacter .nc-select-wrap .nc-field__select-btn::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-gold-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 9;
}

/* --- Indicateur téléphone --- */

#nous-contacter .nc-field__input-wrap {
  overflow: visible;
  height: 42px;
  border: none;
}
.nc-indicator {
  position: relative;
  flex-shrink: 0;
}
.nc-indicator::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-left-2.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
#nous-contacter .nc-field__indicator-btn {
  width: auto;
  min-width: 62px;
  padding: 0 10px;
  clip-path: none;
  -webkit-clip-path: none;
  gap: 4px;
  font-size: 0.8rem;
  height: 42px;
}
.nc-indicator__val {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nc-indicator__arrow {
  font-size: 1rem;
  line-height: 1;
}
.nc-indicator__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-border-primary);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.nc-indicator.is-open .nc-indicator__dropdown {
  display: block;
}
.nc-indicator__opt {
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--color-border-primary);
}
.nc-indicator__opt:last-child {
  border-bottom: none;
}
.nc-indicator__opt:hover {
  background: var(--color-light, #f5f5f5);
}

.nc-field__input-wrap.-tlf {
  position: relative;
}
.nc-field__input-wrap.-tlf::before {
  content: "";
  position: absolute;
  left: 62px;
  top: 0;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
.inputtlf {
  border: 1px solid var(--color-border-primary);
}

/* --- sc-field SVG triangles para #nous-contacter --- */
#nous-contacter .sc-field__wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}
#nous-contacter .sc-field__deco {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 35px;
  background: #4e4e4d;
  clip-path: none;
  z-index: 2;
}
#nous-contacter .sc-field__deco::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-left-2.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
#nous-contacter .sc-field__wrap:has(.sc-field__deco:not(.-der))::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
#nous-contacter .sc-field__deco.-der {
  left: auto;
  right: 0;
  clip-path: none;
}
#nous-contacter .sc-field__deco.-der::after {
  left: -40px;
  right: auto;
  background-image: url(../images/triangle-gold-right.svg);
}
#nous-contacter .sc-field__deco.-gold {
  background: var(--color-gold);
}
#nous-contacter .sc-field__deco.-gold::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-gold-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
#nous-contacter .sc-field__wrap.-der::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 0;
  width: 34px;
  height: 42px;
  background-image: url(../images/triangle-white-left.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
#nous-contacter .sc-field__input {
  border: 1px solid var(--color-border-primary);
  padding: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  height: 42px;
  box-sizing: border-box;
  width: 100%;
}
#nous-contacter .sc-field__input.-iz {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  padding-left: 44px;
  margin-left: 42px;
  width: calc(100% - 42px);
}
#nous-contacter .sc-field__input.-der {
  clip-path: polygon(0% 0%, 95% 0%, 96% 100%, 0% 100%);
  margin-right: 42px;
  padding: 10px 44px 10px 10px;
  width: calc(100% - 42px);
}

/* --- Textarea --- */
.nc-field__textarea {
  border: 1px solid var(--color-border-primary);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  outline: none;
  resize: vertical;
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
}
.nc-field__textarea::placeholder {
  color: #aaa;
}

/* --- File upload --- */
.nc-field__file-label {
  display: block;
  text-align: center;
  border: 1px solid var(--color-dark);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
}
.nc-field__file-input {
  display: none;
}

/* --- Submit --- */
.nc-submit {
  display: block;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.nc-submit:hover {
  opacity: 0.85;
}

/**
*  NOUS CONTACTER â€" CF7 overrides
*  =======================================================================================================
**/

/* CF7 wraps each field in <span class="wpcf7-form-control-wrap"> â€" make it invisible to flex */
.nc-field__input-wrap .wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
  min-width: 0;
}
.nc-field__select-wrap .wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
  min-width: 0;
}

/* Inputs & selects generated by CF7 inherit our field styles */
.nc-field__input-wrap .wpcf7-form-control-wrap input,
.nc-field__input-wrap .wpcf7-form-control-wrap textarea {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 16px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
}
.nc-field__select-wrap .wpcf7-form-control-wrap select {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 20px;
  background: transparent;
  appearance: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #aaa;
  cursor: pointer;
}

/* Radio buttons CF7 */
.nc-field__civility .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.nc-field__civility .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.nc-field__civility .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-dark);
  cursor: pointer;
}
.nc-field__civility .wpcf7-list-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-dark);
}

/* Remove CF7 default error/success outline */
.wpcf7-form .wpcf7-not-valid {
  outline: 1px solid var(--color-red);
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-red);
  margin-top: 4px;
}

.form-footer {
  margin-top: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-footer a {
  text-decoration: underline;
  color: var(--color-red);
}

/**
*  MARQUEE
*  =======================================================================================================
**/
.aboutus__wrapper .title-diagonal{
	margin-bottom: 10px;
}
.aboutus__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.aboutus__item-grid {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}
.aboutus__item-grid h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}
.aboutus_img img {
  transition: var(--transition);
}
.aboutus_img {
  width: 100%;
  aspect-ratio: 3/5;
  overflow: hidden;
}
.aboutus__item-grid:hover img {
  transform: scale(1.02);
}

@media screen and (min-width: 580px) {
  .aboutus__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 980px) {
  .aboutus__grid {
    gap: 25px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*  MARQUEE > SON CONCEPT
*  =======================================================================================================
**/
.sec-son-concept {
  padding: 0;
}
.sec-son-concept__wrapper {
  flex-direction: column;
  padding: 35px 0;
  gap: 30px;
  position: relative;
  align-items: center;
}
.sec-son-concept:nth-child(even) .sec-son-concept__wrapper {
  flex-direction: column;
}
.sec-son-concept__wrapper::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec-son-concept--last .sec-son-concept__wrapper::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec-son-concept__img {
  width: 100%;
  height: fit-content;
  position: relative;
}
.sec-son-concept__img::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 75%;
  background-color: #000;
  transform: skewX(-17deg) translateY(-50%);
  top: 50%;
  right: 50px;
}

.sec-son-concept:nth-child(even) .sec-son-concept__img::after {
  right: auto;
  left: -15px;
  transform: skewX(-20deg) translateY(-50%);
}
.sec-son-concept__content {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: 0.9rem;
}
.sec-son-concept__content ul {
  margin-top: 15px;
}
.sec-son-concept__content li {
  margin-bottom: 15px;
  position: relative;
  list-style: disc;
  margin-left: 15px;
}
.sec-son-concept:nth-child(odd) .sec-son-concept__content li {
  list-style-position: inside !important;
  margin-left: 0;
}

.sec-son-concept__content p:last-of-type {
  margin-bottom: 0;
}
.sec-son-concept:nth-child(even) .sec-son-concept__content {
  text-align: left;
}
.sec-son-concept__content h2 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  font-size: 2rem;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .sec-son-concept__wrapper {
    flex-direction: row;
  }
  .sec-son-concept__content {
    width: 52%;
    text-align: right;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  .sec-son-concept__img {
    width: 48%;
    padding-right: 40px;
  }
  .sec-son-concept__img::after {
    right: 110px;
  }
  .sec-son-concept:nth-child(even) .sec-son-concept__wrapper {
    flex-direction: row-reverse;
  }
  .sec-son-concept__content h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
}

.sec-redes__wrapper {
  max-width: 800px;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-size: 0.9rem;
}
.sec-redes__wrapper h2 {
  font-family: var(--font-heading);
  margin-bottom: 25px;
  font-size: 2rem;
}
#sec-redes .ser-cli-contact__btns a {
  width: 120px;
  height: 120px;
}
#sec-redes .ser-cli-contact__btns {
  margin-top: 40px;
}

/**
*  MARQUEE > SA CREATRICE
*  =======================================================================================================
**/
.sec-sa_creatrice {
  padding: 0;
}
.sec-sa_creatrice__wrapper {
  flex-direction: column-reverse;
  padding: 35px 0;
  gap: 30px;
  position: relative;
  align-items: center;
}
.sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__wrapper {
  flex-direction: column-reverse;
}
.sec-sa_creatrice__wrapper::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec-sa_creatrice__img {
  width: 100%;
  height: fit-content;
  position: relative;
}
.sec-sa_creatrice__img::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 75%;
  background-color: #000;
  transform: skewX(-20deg) translateY(-50%);
  top: 50%;
  left: -7px;
}
.sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__img::after {
  left: auto;
  right: 60px;
  transform: skewX(-17deg) translateY(-50%);
}
.sec-sa_creatrice__content {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: 0.9rem;
}
.sec-sa_creatrice__content ul {
  margin-top: 15px;
}
.sec-sa_creatrice__content li {
  margin-bottom: 15px;
  position: relative;
  list-style: disc;
  margin-left: 15px;
}
.sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__content li {
  list-style-position: inside !important;
}
.sec-sa_creatrice__content p:last-of-type {
  margin-bottom: 0;
}
.sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__content {
  text-align: right;
}
.sec-sa_creatrice__content h2 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  font-size: 2rem;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .sec-sa_creatrice__content {
    width: 52%;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  .sec-sa_creatrice__content h2 {
    font-size: 1.5rem;
  }
  .sec-sa_creatrice__content li {
    margin-bottom: 10px;
  }
  .sec-sa_creatrice__img {
    width: 48%;
  }
  .sec-sa_creatrice__wrapper {
    flex-direction: row;
  }
  .sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__wrapper {
    flex-direction: row-reverse;
  }
  .sec-sa_creatrice:nth-child(even) .sec-sa_creatrice__img::after {
    right: 80px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*  MARQUEE > SES VALEURS
*  =======================================================================================================
**/
.sec-sesvaleurs:nth-child(odd) .sec-sesvaleurs__content {
  text-align: right;
}
#img-valeurs {
  padding: 0;
  margin: -30px 0 40px;
}
.sec-sesvaleurs__content {
  color: #000;
  margin-bottom: 30px;
}
.sec-sesvaleurs__content h2 {
  font-family: var(--font-heading);
  margin-bottom: 30px;
  font-size: 2rem;
}
.sec-sesvaleurs__content h3 {
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 15px;
  font-size: 1.1rem;
}
#mention-legal .mention-legal__wrapper {
  text-align: center;
  color: #000;
}
#mention-legal .mention-legal__wrapper h2 {
  font-family: var(--font-heading);
  margin-bottom: 30px;
  font-size: 2rem;
}
.sec-redes__wrapper.-valeurs h2 {
  font-family: var(--font-heading);
  margin-bottom: 30px;
  font-size: 2rem;
}

/**
*  Nouveautes
*  =======================================================================================================
**/
/** NOU - COLLECTIONS ============ **/
.nou__image {
  overflow: hidden;
  aspect-ratio: 11/5;
}
.nou-block-txt {
  padding: 20px;
  border: 1px solid var(--color-tertiary);
  margin-top: 20px;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  font-size: 0.8rem;
  color: #000;
}
.nou-block-txt strong {
  color: #24556d;
}

@media screen and (min-width: 580px) {
  .nou-block-txt {
    padding: 20px 40px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*  COLLECTIONS
*  =======================================================================================================
**/
#collection-hero {
  padding: 15px 0;
}
#reductions {
  padding: 15px 0;
}
#collection-lookbooks {
  padding: 15px 0;
}

#reductions .reductions__image {
  overflow: hidden;
  aspect-ratio: 11/5;
}
.lookbook__collections .swiper-slide {
  aspect-ratio: 2 / 1;
}

@media screen and (min-width: 580px) {
  #collection-hero,
  #reductions,
  #collection-lookbooks {
    padding: 40px 0;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*  COLLECTIONS SINGLE
*  =======================================================================================================
**/
.collection-intern__content {
  text-align: justify;
  margin-top: 20px;
}
.video-collection__inner {
  justify-content: center;
  position: relative;
}
.video-collection__wrap {
  max-width: 900px;
  width: 100%;
}
.video-collection__thumb {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-collection__thumb-img {
  display: block;
  width: 100%;
  height: auto;
}
.video-collection__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.video-collection__play:hover {
  transform: translate(-50%, -50%) scale(1.12);
}
.video-collection__play svg {
  width: 100%;
  height: 100%;
}
.video-collection__video {
  display: none;
  width: 100%;
}
.video-collection__wrap.is-playing .video-collection__thumb {
  display: none;
}
.video-collection__wrap.is-playing .video-collection__video {
  display: block;
}
.content2__wrapper {
  text-align: justify;
  position: relative;
  padding: 15px;
}
.content2__wrapper p:last-child {
  margin-bottom: 0;
}
.content2__wrapper::before,
.content2__wrapper::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: var(--marco-color, #cdcccc);
}
.content2__wrapper::before {
  -webkit-mask-image: url(../images/vineta-sup-iz.svg);
  mask-image: url(../images/vineta-sup-iz.svg);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top: 0;
  left: 0;
}
.content2__wrapper::after {
  -webkit-mask-image: url(../images/vineta-inf-der.svg);
  mask-image: url(../images/vineta-inf-der.svg);
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  bottom: 0;
  right: 0;
}
.banner-collection__content {
  position: absolute;
  background-color: #ffffffcf;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;
  padding: 25px 20px;
  width: 68%;
}
.banner-collection__inner {
  aspect-ratio: 3 / 2;
}

@media screen and (min-width: 580px) {
  .banner-collection__inner {
    aspect-ratio: 6 / 2;
  }
  .video-collection__thumb-img {
    width: 630px;
}
}
@media screen and (min-width: 980px) {
  .banner-collection__inner {
    aspect-ratio: initial;
  }
  .banner-collection__content {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*  CONSEILS
*  =======================================================================================================
**/
/** NOU - COLLECTIONS ============ **/
.conseils__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}
.conseils-img__content {
  position: absolute;
  background-color: #ffffffcf;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  padding: 15px 20px;
  width: 80%;
  white-space: nowrap;
}

@media screen and (min-width: 580px) {
  .conseils__image {
    aspect-ratio: 11/5;
  }
  .conseils-img__content {
    font-size: 2rem;
    padding: 25px 20px;
    width: 68%;
    white-space: normal;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*  STYLE CONSEIL — FORMULAIRE MULTI-STEP
*  =======================================================================================================
**/
#style-conseil .tit-3-diagonal__tabs-bar {
  background: transparent;
  gap: 0;
}
#style-conseil .tit-3-diagonal__tab {
  visibility: hidden;
  display: none;
}
#style-conseil .tit-3-diagonal__tab.is-active {
  visibility: visible;
  background: var(--color-gold);
  position: relative;
  display: flex;
}
#style-conseil .tit-3-diagonal__tab.is-active::after,
#style-conseil .tit-3-diagonal__tab.is-active::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background: #fff;
  top: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0px) 100%, 0 100%);
  transform: skewX(40deg);
}
#style-conseil .tit-3-diagonal__tab:nth-child(1).is-active::before {
  display: none;
}
#style-conseil .tit-3-diagonal__tab:nth-child(1).is-active::after {
  right: -83px;
}
#style-conseil .tit-3-diagonal__tab:nth-child(2).is-active::before {
  left: -82px;
}
#style-conseil .tit-3-diagonal__tab:nth-child(2).is-active::after {
  right: -22%;
}
#style-conseil .tit-3-diagonal__tab:nth-child(2).is-active::after {
  right: -80px;
}
#style-conseil .tit-3-diagonal__tab:nth-child(3).is-active::before {
  left: -82px;
}
#style-conseil .tit-3-diagonal__tab:nth-child(3).is-active::after {
  display: none;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #style-conseil .tit-3-diagonal__tab {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

.sc-panel {
  display: none;
  border: 1px solid var(--color-border-primary);
  padding: 40px 25px 30px;
}
.sc-panel.is-active {
  display: block;
}
.sc-block {
  margin-bottom: 48px;
}
.sc-block-content {
  color: #000;
  text-align: center;
  margin: 0 auto 35px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-border-primary);
}
.sc-block-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
.sc-block__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000;
}
.sc-block__title.-center {
  text-align: center;
}

@media screen and (min-width: 580px) {
  .sc-block-content h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 980px) {
  .sc-block-content {
    padding: 0 50px 35px;
  }
}
@media screen and (min-width: 1280px) {
}

.sc-block__optional {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: none;
  opacity: 0.55;
}
.sc-block__error {
  text-align: center;
  color: var(--color-red);
  font-size: 0.85rem;
  min-height: 18px;
  margin-top: 8px;
}

/** BLOQUE DE COLOR ============ **/
.sc-color__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sc-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}
.sc-color {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.15s;
  flex-shrink: 0;
  overflow: hidden;
}
.sc-color__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition:
    filter 0.15s,
    opacity 0.15s;
}
.sc-color.is-selected {
  outline-color: transparent;
}
.sc-color:hover .sc-color__img,
.sc-color.is-selected .sc-color__img {
  filter: grayscale(0.7);
  opacity: 0.55;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .sc-colors {
    justify-content: flex-start;
  }
  .sc-color {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 1280px) {
}

.sc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.sc-option {
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sc-option__box {
  width: 215px;
  height: auto;
  border: 2px solid transparent;
  transition: border-color 0.15s;
  padding: 15px;
}
.sc-option__box2 {
  width: 100px;
  margin: -30px 0 0 58px;
  transition: var(--transition);
}
.sc-option:hover .sc-option__box2 {
  filter: grayscale(0.7);
  opacity: 0.55;
}
.sc-option.is-selected .sc-option__box2 {
  border-color: transparent;
  filter: grayscale(0.7);
  opacity: 0.55;
}
.sc-option__label {
  font-size: 0.8rem;
  margin-top: 8px;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: #000;
}
.sc-morpho {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.sc-morpho-item {
  position: relative;
  flex: none;
  max-width: none;
  min-width: 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-areas: "img info" "img desc";
  gap: 4px 16px;
  align-items: center;
}
.sc-morpho-label {
  display: contents;
  cursor: pointer;
}
.sc-morpho-img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 2 / 6;
  transition: outline 0.15s;
  overflow: hidden;
}
.sc-morpho-label.is-selected .sc-morpho-img,
.sc-morpho-item:hover .sc-morpho-img {
  outline: none;
  filter: grayscale(0.7);
  opacity: 0.55;
}
.sc-morpho-letter {
  grid-area: info;
  display: inline-block;
  align-self: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--color-dark);
  color: #fff;
  letter-spacing: 2px;
  transition:
    background 0.15s,
    color 0.15s;
  clip-path: none;
  position: static;
  width: auto;
  bottom: auto;
  left: auto;
}
.sc-morpho-item:first-child .sc-morpho-letter,
.sc-morpho-item:last-child .sc-morpho-letter {
  clip-path: none;
}
.sc-morpho-label.is-selected .sc-morpho-letter {
  background: #888;
  color: #fff;
}
.sc-morpho-desc {
  grid-area: desc;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  width: auto;
  background: transparent;
  padding: 0 10px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-txt);
  z-index: auto;
  opacity: 1;
  pointer-events: auto;
  transition: none;
}
.sc-morpho-desc::before,
.sc-morpho-desc::after {
  display: none;
  content: "";
}
.sc-morpho-item:hover .sc-morpho-desc {
  opacity: 1;
}
@media screen and (min-width: 980px) {
  .sc-morpho {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-bottom: 235px;
  }
  .sc-morpho-item {
    flex: 1;
    max-width: 165px;
    display: block;
    grid-template-columns: unset;
    grid-template-areas: unset;
  }
  .sc-morpho-label {
    display: block;
    position: relative;
  }
  .sc-morpho-img {
    width: 100%;
  }
  .sc-morpho-letter {
    display: block;
    text-align: center;
    padding: 7px 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    position: absolute;
    width: 183px;
    bottom: -37px;
    left: -4px;
    align-self: auto;
  }
  .sc-morpho-item:first-child .sc-morpho-letter {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0px 100%);
  }
  .sc-morpho-item:last-child .sc-morpho-letter {
    clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 100%, 10px 100%);
  }
  .sc-morpho-desc {
    position: absolute;
    top: calc(100% + 50px);
    right: -7px;
    width: 205px;
    background: #fff;
    padding: 12px 0px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 20;
  }
  .sc-faciale .sc-morpho-desc {
    right: 4px;
  }
  .sc-morpho-desc::before {
    display: block;
    float: right;
    width: 125px;
    height: 160px;
    shape-outside: polygon(100% 0%, 64% 100%, 100% 100%);
    pointer-events: none;
  }
  .sc-morpho-desc::after {
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 1px;
    background: #000;
    transform: skewX(-15deg);
    z-index: 1;
  }
  .sc-morpho-item:hover .sc-morpho-desc {
    opacity: 1;
  }
}
.sc-mesures {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
  align-items: center;
}
.sc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.sc-field__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: #000;
}

/** INPUTS POR DEFECTO ============ **/
.sc-field__input[type="number"]::-webkit-inner-spin-button,
.sc-field__input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sc-field__input[type="number"] {
  -moz-appearance: textfield;
}
.sc-field__wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.sc-field__input,
.sc-field__select {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-border-primary);
  padding: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  height: 42px;
  box-sizing: border-box;
  width: 100%;
}
.sc-field__input.-iz {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  padding-left: 44px;
  margin-left: 42px;
  width: calc(100% - 42px);
}
.sc-field__input.-der,
.sc-field__select.-der {
  clip-path: polygon(0% 0%, 95% 0%, 96% 100%, 0% 100%);
  margin-right: 42px;
  padding: 10px 44px 10px 10px;
  width: calc(100% - 42px);
}
.sc-field__deco {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 35px;
  background: #4e4e4d;
  clip-path: none;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  text-align: right;
  justify-content: center;
}
.sc-field__deco::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-left-2.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.sc-field__wrap:has(.sc-field__deco:not(.-der))::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
.sc-field__wrap.-der::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 0;
  width: 34px;
  height: 42px;
  background-image: url(../images/triangle-white-left.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #fff;
  transform: none;
}
.sc-field__deco.-gold {
  background: var(--color-gold);
}
.sc-field__deco.-der {
  left: auto;
  right: 0;
  clip-path: none;
}
.sc-field__arrow {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.sc-field__deco.-gold::after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0px;
  width: 42px;
  height: 42px;
  background-image: url(../images/triangle-gold-right.svg);
  background-size: auto 42px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.content-2-marque {
  margin: 0 auto 10px;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-2-marque h2 {
  font-weight: 700;
}
.sc-mesures__note {
  font-size: 0.75rem;
  color: var(--color-txt);
  margin-top: 8px;
}
.sc-bra {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.sc-bra__group {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}
.sc-bra__subtitle {
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  text-align: center;
  color: #000;
  background-color: var(--color-dark);
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}
.sc-bra-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--color-gray-medium);
  overflow: hidden;
}
.sc-bra-cell {
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  background: #fff;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  transition:
    background 0.15s,
    color 0.15s;
  margin: 0 -3px;
}
.sc-bra-cell:nth-child(6n + 1) {
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
}
.sc-bra-cell:nth-child(6n) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}
.sc-bra-grid .sc-bra-cell:nth-child(n + 7) {
  background-color: #c1c2bf;
}
.sc-bra-cell:hover:not(.is-selected) {
  background: rgba(128, 128, 128, 0.35);
}
.sc-bra-cell.is-selected {
  background: #888 !important;
  color: #fff;
}
.sc-marque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #c1c2bf;
  overflow: hidden;
  width: 100%;
  max-width: 670px;
  margin: 0 auto 50px;
}
.sc-marque-cell {
  padding: 18px 12px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.sc-marque-grid .sc-marque-cell:nth-child(n + 4):nth-child(-n + 6) {
  background-color: #c1c2bf;
}
.sc-marque-grid .sc-marque-cell:nth-child(5) {
  position: relative;
}
.sc-marque-grid .sc-marque-cell:nth-child(5)::before,
.sc-marque-grid .sc-marque-cell:nth-child(5)::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 2px;
  height: calc(100% + 12px);
  background: #fff;
  z-index: 2;
  transform: rotate(-15deg);
  transform-origin: center top;
}
.sc-marque-grid .sc-marque-cell:nth-child(5)::before {
  left: -12px;
}
.sc-marque-grid .sc-marque-cell:nth-child(5)::after {
  right: 5px;
}
.sc-marque-cell img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}
.sc-marque-cell.is-selected img {
  filter: grayscale(0.7);
  opacity: 0.55;
}
.sc-marque {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
  align-items: center;
}
.sc-ajust {
  width: 100%;
}
.sc-ajust__wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.sc-ajust__rail {
  flex: 1;
  position: relative;
  padding-bottom: 35px;
  padding-top: 20px;
}
.sc-ajust__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 26px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
}
.sc-ajust__range::-webkit-slider-runnable-track {
  height: 2px;
  background: #000;
}
.sc-ajust__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  margin-top: -12px;
}
.sc-ajust__range::-moz-range-track {
  height: 2px;
  background: #000;
  border: none;
}
.sc-ajust__range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-gold);
  border: none;
  cursor: pointer;
}
.sc-ajust__tooltip {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
}
.sc-ajust__tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}
.sc-ajust__tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: #000;
}
.sc-ajust__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}
.sc-panel__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}
.sc-back {
  display: inline-block;
  border: none;
  background: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}
.sc-back:hover {
  color: #000;
}
.sc-next,
.sc-btn-submit {
  display: inline-block;
  border: 2px solid #000;
  background: none;
  padding: 12px 48px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.sc-next:hover,
.sc-btn-submit:hover {
  background: #000;
  color: #fff;
}
.sc-btn-submit:disabled {
  opacity: 0.5;
  cursor: default;
}
.sc-error {
  color: var(--color-red);
  font-size: 0.9rem;
  text-align: center;
  min-height: 20px;
  margin-top: 12px;
}
.sc-expertise {
  display: none;
  text-align: center;
  padding: 80px 20px;
}
.sc-expertise.is-visible {
  display: block;
}
.sc-expertise__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000;
}
.sc-expertise__text {
  font-size: 1rem;
  color: var(--color-txt);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sc-mesures {
    grid-template-columns: 1fr;
  }
  .sc-marque {
    grid-template-columns: 1fr;
  }
  .sc-options {
    gap: 12px;
  }
  .sc-option__box {
    width: 165px;
  }
  .sc-bra {
    flex-direction: column;
    align-items: center;
  }
  .sc-bra__group {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
}

/** BLOQUE FACIALE ============ **/
.sc-faciale .sc-block {
  margin-bottom: 80px;
}
.sc-faciale .sc-morpho-img {
  aspect-ratio: 1/1;
}
.sc-faciale .sc-morpho-desc::before {
  content: "";
  float: right;
  width: 107px;
  height: 240px;
  shape-outside: polygon(100% 0%, 43% 100%, 100% 100%);
  pointer-events: none;
}

/**
*  EXPERTISE
*  =======================================================================================================
**/
.expertise__content {
  border: 1px solid var(--color-border-primary);
  padding: 40px 40px 0;
  text-align: center;
  font-weight: 700;
}

.expertise__content h2 {
  font-weight: 700;
  position: relative;
  margin: 60px 0 40px;
}
.expertise__content h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -75px;
  transform: translateX(-50%);
  width: 45px;
  height: 60px;
  background-image: url(../images/isologo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.expertise__content .ser-cli-contact__wrapper h2 {
  margin-bottom: 0;
  padding-left: 0;
}
.expertise__content .ser-cli-contact__wrapper h2::before {
  display: none;
}

@media screen and (min-width: 580px) {
  .expertise__content h2 {
    margin: 0 0 40px;
    padding-left: 55px;
  }
  .expertise__content h2::before {
    left: 0;
    top: -12px;
    transform: none;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*  SIDECART XOO
*  =======================================================================================================
**/
span.xoo-wsc-pname,
span.xoo-wsc-pname a {
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.8rem !important;
  text-transform: uppercase;
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-container .xoo-wsc-btn {
  background-color: var(--color-dark);
  color: #ffffff;
  border: 1px solid var(--color-dark);
  padding: 10px 20px;
  transition: var(--transition);
  text-decoration: underline;
  font-size: 1rem;
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-container .xoo-wsc-btn:hover {
  background-color: var(--color-dark);
  color: #ffffff;
  border: 1px solid var(--color-dark);
  text-decoration: none;
}
a.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-cart-close.xoo-wsc-ft-btn-continue {
  background-color: #fff;
  color: var(--color-black);
}
a.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-cart-close.xoo-wsc-ft-btn-continue:hover {
  background-color: #fff;
  color: var(--color-black);
  text-decoration: none;
}
.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-product {
  padding: 10px 0;
  margin: 0px 13px;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}
.xoo-wsc-footer {
  background-color: #ececec;
  color: #000000;
  padding: 10px 20px;
  box-shadow: none;
}
.xoo-wsc-sm-right {
  flex: none;
}
.xoo-wsc-product dl.variation dd,
.xoo-wsc-product dl.variation dt {
  font-style: normal;
}
.xoo-wsc-products:not(.xoo-wsc-pattern-card),
.xoo-wsc-products:not(.xoo-wsc-pattern-card) span.amount,
.xoo-wsc-products:not(.xoo-wsc-pattern-card) a {
  font-size: 0.9rem;
}
.xoo-wsc-ft-amt-subtotal {
  display: flex;
  font-size: 1rem;
}
span.xoo-wsc-ft-amt-label {
  padding-right: 5px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.xoo-wsc-products:not(.xoo-wsc-pattern-card),
.xoo-wsc-products:not(.xoo-wsc-pattern-card) span.amount,
.xoo-wsc-products:not(.xoo-wsc-pattern-card) a {
  font-size: 0.9rem;
  /* aspect-ratio: 1/1; */
  overflow: hidden;
}
.xoo-wsc-pattern-card,
.xoo-wsc-img-col img,
.xoo-wsc-img-col,
.xoo-wsc-sm-back-cont {
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.xoo-wsc-header {
  position: relative;
  height: 235px;
  flex: none;
}
.xoo-wsc-header::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background-image: url(../images/logo-panier.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.xoo-wsc-panier-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}
.xoo-wsc-opac {
  background-color: #3333338a;
}

/**
*  PÁGINA ACTUALITES
*  =======================================================================================================
**/
.sec-actualite {
  padding: 15px 0;
}
.actualites-block h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.actualites-block h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.actualites-block h4 strong {
  color: var(--color-gold);
}
.actualites-block .row {
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .actualites-block .row {
    flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
}

/** TIPO SOLO TEXTO ============== **/
.actualites-block.-solotexto {
  padding: 40px;
  border: 2px solid var(--color-border-primary);
}

/** TIPO SOLO IMAGEN ============== **/
.actualites-block.-imagen {
  padding: 0;
  border: none;
}

/** TIPO TEXTO + IMAGEN ============== **/
.actualites-block.-txt-img {
  flex-direction: column;
  gap: 30px;
}
.actualites-block.-txt-img .actualites-block__txt {
  width: 100%;
  position: relative;
  border: 2px solid var(--color-border-primary);
}
.actualites-block.-txt-img .act-block-txt__content {
  position: relative;
  padding: 22px 28px;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}
.actualites-block.-txt-img .actualites-block__img {
  width: 100%;
  position: relative;
}
.actualites-block.-txt-img .actualites-block__img img {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 2px solid var(--color-border-primary);
}
.actualites-block.-txt-img .actualites-block__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -66px;
  bottom: 0;
  width: 2px;
  background: var(--color-border-primary);
  transform: skewX(22deg);
  z-index: 1;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .actualites-block.-txt-img {
    height: 520px;
    flex-direction: row;
    gap: 0;
  }
  .actualites-block.-txt-img .actualites-block__txt {
    width: 75%;
    position: relative;
    border: 2px solid var(--color-border-primary);
    clip-path: polygon(0 0, calc(100% - 210px) 0, 100% 100%, 0 100%);
  }
  .actualites-block.-txt-img .actualites-block__txt::before {
    content: "";
    position: absolute;
    top: 0;
    right: 104px;
    bottom: 0;
    width: 2px;
    background: var(--color-border-primary);
    transform: skewX(22deg);
    z-index: 1;
  }
  .actualites-block.-txt-img .act-block-txt__content::before {
    content: "";
    float: right;
    width: 200px;
    height: 470px;
    shape-outside: polygon(100% 0%, 0% 0%, 95% 100%);
    pointer-events: none;
  }
  .actualites-block.-txt-img .actualites-block__img {
    width: 25%;
    position: relative;
  }
  .actualites-block.-txt-img .actualites-block__img img {
    position: absolute;
    width: calc(100% + 170px);
    height: 520px;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 248px) 100%);
    overflow: hidden;
    border: 2px solid var(--color-border-primary);
  }
}
@media screen and (min-width: 1280px) {
}

/** TIPO IMAGEN + TEXTO ============== **/
.actualites-block.-img-txt {
  flex-direction: column;
  gap: 15px;
}
.actualites-block.-img-txt .actualites-block__img {
  width: 100%;
  position: relative;
  border: 2px solid var(--color-border-primary);
}
.actualites-block.-img-txt .actualites-block__txt {
  width: 100%;
  position: relative;
}
.actualites-block.-img-txt .act-block-txt__content {
  position: relative;
  padding: 22px 28px;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--color-border-primary);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .actualites-block.-img-txt {
    flex-direction: row;
    height: 520px;
    gap: 0;
  }
  .actualites-block.-img-txt .actualites-block__img {
    width: 75%;
    position: relative;
    border: 2px solid var(--color-border-primary);
    clip-path: polygon(0 0, calc(100% - 210px) 0, 100% 100%, 0 100%);
  }
  .actualites-block.-img-txt .actualites-block__img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 103px;
    bottom: 0;
    width: 2px;
    background: var(--color-border-primary);
    transform: skewX(22deg);
    z-index: 1;
  }
  .actualites-block.-img-txt .actualites-block__txt {
    width: 25%;
    position: relative;
  }
  .actualites-block.-img-txt .act-block-txt__content {
    position: absolute;
    padding: 22px 28px;
    width: calc(100% + 170px);
    height: 520px;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 248px) 100%);
    overflow: hidden;
    border: 2px solid var(--color-border-primary);
  }
  .actualites-block.-img-txt .act-block-txt__content::before {
    content: "";
    float: left;
    width: 200px;
    height: 490px;
    shape-outside: polygon(0% 100%, 0% 0%, 100% 100%);
    pointer-events: none;
  }
  .actualites-block.-img-txt .act-block-txt__content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 103px;
    bottom: 0;
    width: 2px;
    background: var(--color-border-primary);
    transform: skewX(22deg);
    z-index: 1;
  }
}
@media screen and (min-width: 1280px) {
}

/** TIPO IMAGEN + VIDEO ============== **/
.actualites-block.-dosfilas .act-row-img {
  width: 100%;
  height: 450px;
}
.actualites-block.-dosfilas .act-row-video {
  width: 100%;
  height: 270px;
}
.actualites-block.-dosfilas .act-row-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .actualites-block.-dosfilas .act-row-video {
    width: 65%;
    height: 450px;
  }
  .actualites-block.-dosfilas .act-row-img {
    width: 35%;
    height: 450px;
  }
}
@media screen and (min-width: 1280px) {
}

/** TIPO TEXTO + TEXTO ============== **/
.actualites-block.-txt_txt .act-row-txt {
  border: 2px solid var(--color-border-primary);
  padding: 22px 28px;
}
.actualites-block.-txt_txt .act-row-txt:first-child {
  width: 100%;
}
.actualites-block.-txt_txt .act-row-txt:last-child {
  width: 100%;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .actualites-block.-txt_txt .act-row-txt:first-child {
    width: 65%;
  }
  .actualites-block.-txt_txt .act-row-txt:last-child {
    width: 35%;
  }
}
@media screen and (min-width: 1280px) {
}
