/* ========================================================================== */
/* SITE.CSS                                                                   */
/* ========================================================================== */
/* Fichier socle du theme enfant.                                             */
/*                                                                            */
/* Role :                                                                     */
/* - header et navigation custom                                              */
/* - footer global                                                            */
/* - gros blocs home encore geres au niveau theme                             */
/* - socle WooCommerce global et layout premium de la boutique                */
/*                                                                            */
/* Cartographie :                                                             */
/* 01. Shell global Storefront / variables                                    */
/* 02. Header desktop / navigation / icones                                   */
/* 03. Header mobile / burger / menus                                         */
/* 04. Accessibilite / overlays / mouvement reduit                            */
/* 05. Footer global                                                          */
/* 06. Home - section finale / cartes recettes                                */
/* 07. WooCommerce - socle global archive / related                           */
/* 08. WooCommerce - boutique / fiche produit                                 */
/* 09. Page 404                                                               */
/* ========================================================================== */

/* ========================================================================== */
/* 01. SHELL GLOBAL STOREFRONT / VARIABLES                                    */
/* ========================================================================== */

/* Hide native Storefront header/footer because custom versions are rendered by child theme. */
#masthead,
.site-header {
  display: none !important;
}

.site-footer,
#colophon {
  display: none !important;
}

:root {
  --lc-accent: #6b0f3a;
  --lc-ink: #1a1a1a;
  --lc-h: 92px;
  --lc-logo: 76px;
}

/* ========================================================================== */
/* 02. HEADER DESKTOP / NAVIGATION / ICONES                                   */
/* ========================================================================== */

.lc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-bar .lc-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .lc-header {
    top: 46px;
  }
}

.lc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--lc-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 18px;
}

.lc-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lc-logo__img {
  height: var(--lc-logo);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

body {
  padding-top: var(--lc-h) !important;
}

.admin-bar body {
  padding-top: calc(var(--lc-h) + 32px) !important;
}

@media (max-width: 782px) {
  .admin-bar body {
    padding-top: calc(var(--lc-h) + 46px) !important;
  }
}

.lc-nav {
  position: relative;
  z-index: 10000;
}

.lc-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.lc-nav__list a,
.lc-nav__list a:hover,
.lc-nav__list a:focus,
.lc-nav__list a:active,
.lc-nav__list a:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  text-decoration: none !important;
}

.lc-nav__list a {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
  font-weight: 650;
  display: inline-block;
  padding: 10px 6px;
  color: var(--lc-ink);
  position: relative;
  transition: color 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.lc-nav__list a:hover {
  color: var(--lc-accent);
  transform: translateY(-1px);
}

.lc-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: var(--lc-accent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.lc-nav__list > li > a:hover::after {
  opacity: 0.35;
  transform: scaleX(1);
}

.lc-nav__list > li.current-menu-item > a,
.lc-nav__list > li.current_page_item > a,
.lc-nav__list > li.current-menu-ancestor > a {
  color: var(--lc-accent);
}

.lc-nav__list > li.current-menu-item > a::after,
.lc-nav__list > li.current_page_item > a::after,
.lc-nav__list > li.current-menu-ancestor > a::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.lc-nav__list > li.lc-nav__icon > a,
.lc-nav__list > li.lc-nav__icon > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 8px;
  line-height: 1;
  position: relative;
}

.lc-nav__list > li.lc-nav__icon > a::after,
.lc-nav__list > li.lc-nav__icon > button::after {
  display: none !important;
}

.lc-nav__list > li.lc-nav__icon > button {
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--lc-ink);
  cursor: pointer;
  font: inherit;
}

.lc-nav__icon .lc-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.lc-search-toggle:hover,
.lc-search-toggle:focus-visible {
  color: var(--lc-accent);
}

.lc-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  padding: 10px 12px 6px;
  border: 1px solid rgba(107, 15, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(68, 44, 19, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10002;
}

.lc-search-panel[hidden] {
  display: none !important;
}

.lc-header.is-search-open .lc-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lc-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0;
}

.lc-search-form input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(107, 15, 58, 0.12);
  border-radius: 16px;
  background: #fff;
  color: #2e2e30;
  box-shadow: none;
}

.lc-search-form button {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: #6b0f3a;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(88, 10, 46, 0.12);
}

.lc-nav__icon--cart > a {
  position: relative;
}

.lc-cart-badge {
  position: absolute;
  top: 0;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #6b0f3a;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  pointer-events: none;
}

.lc-nav__list .menu-item-has-children > a {
  padding-right: 30px;
}

.lc-nav__list .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-52%);
  opacity: 0.55;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px 14px no-repeat;
  transition: transform 0.18s ease, opacity 0.18s ease;
  pointer-events: none;
}

.lc-nav__list .menu-item-has-children:hover > a::before,
.lc-nav__list .menu-item-has-children:focus-within > a::before,
.lc-nav__list .menu-item-has-children.lc-sub-open > a::before {
  transform: translateY(-52%) rotate(180deg);
  opacity: 1;
}

.lc-nav__list .menu-item-has-children {
  position: relative;
}

.lc-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(107, 15, 58, 0.12);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin-left: 0;
  z-index: 10001;
}

.lc-nav__list .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}

.lc-nav__list .menu-item-has-children:hover > .sub-menu,
.lc-nav__list .menu-item-has-children:focus-within > .sub-menu,
.lc-nav__list .menu-item-has-children.lc-sub-open > .sub-menu {
  display: block;
}

.lc-nav__list .sub-menu a {
  width: 100%;
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 650;
  transform: none !important;
}

.lc-nav__list .sub-menu a::after {
  display: none !important;
}

.lc-nav__list .sub-menu a:hover {
  background: transparent !important;
  border-radius: 0 !important;
  color: var(--lc-accent) !important;
  opacity: 0.95;
}

.lc-nav__list .sub-menu .current-menu-item > a,
.lc-nav__list .sub-menu .current_page_item > a {
  background: transparent !important;
  color: var(--lc-accent) !important;
}

.lc-burger {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  line-height: 0;
}

.lc-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 4px 0;
  border-radius: 2px;
}

/* ========================================================================== */
/* 03. HEADER MOBILE / BURGER / MENUS                                         */
/* ========================================================================== */

@media (max-width: 920px) {
  .lc-burger {
    display: block;
  }

  .lc-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--lc-h) + 12px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    padding: 10px;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100dvh - (var(--lc-h) + 24px));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .admin-bar .lc-nav {
    top: calc(var(--lc-h) + 32px + 12px);
  }

  @media (max-width: 782px) {
    .admin-bar .lc-nav {
      top: calc(var(--lc-h) + 46px + 12px);
    }
  }

  .lc-header.is-open .lc-nav {
    display: block;
  }

  .lc-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 6px;
  }

  .lc-nav__list > li:not(.lc-nav__icon) {
    width: 100%;
  }

  .lc-nav__list a {
    padding: 14px 12px;
    border-radius: 14px;
    transform: none !important;
  }

  .lc-nav__list > li > a::after {
    display: none !important;
  }

  .lc-nav__list .menu-item-has-children > a {
    padding-right: 38px;
  }

  .lc-nav__list .menu-item-has-children > a::before {
    display: block !important;
    right: 12px;
  }

  .lc-nav__list .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 6px 0 0 10px;
    margin-top: 2px;
    border-radius: 0;
    background: transparent;
  }

  .lc-nav__list .menu-item-has-children.lc-sub-open > .sub-menu {
    display: block;
  }

  .lc-nav__list .sub-menu::before {
    display: none;
  }

  .lc-nav__list > li.lc-nav__icon {
    width: auto;
    align-self: auto;
  }

  .lc-nav__list > li.lc-nav__icon > a,
  .lc-nav__list > li.lc-nav__icon > button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 44px;
    height: 44px;
    padding: 0 !important;
  }

  .lc-nav__icon .lc-svg {
    margin: 0 !important;
  }

  .lc-nav__icon--cart .lc-svg--cart {
    transform: translateY(-1px);
  }

  .lc-nav__list > li.lc-nav__icon--cart > a .lc-cart-badge {
    top: 2px;
    right: 2px;
    left: auto;
  }

  .lc-search-panel {
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 8px 8px 4px;
    border-radius: 18px;
    background: #fbf7f1;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .lc-search-form {
    grid-template-columns: 1fr;
  }

  .lc-search-form button {
    width: 100%;
  }
}

/* ========================================================================== */
/* 04. ACCESSIBILITE / OVERLAYS / PREFERENCES UTILISATEUR                     */
/* ========================================================================== */

@media (max-width: 520px) {
  :root {
    --lc-h: 96px;
    --lc-logo: 80px;
  }
}

.lc-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lc-skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  z-index: 100000;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border-radius: 12px;
}

.pswp,
.pswp__bg,
.pswp__scroll-wrap {
  z-index: 99999 !important;
}

@media (prefers-reduced-motion: reduce) {
  .lc-nav__list a,
  .lc-nav__list > li > a::after,
  .lc-nav__list .menu-item-has-children > a::before {
    transition: none !important;
  }
}

/* ========================================================================== */
/* 05. FOOTER GLOBAL                                                          */
/* ========================================================================== */

.lc-footer {
  position: relative;
  margin-top: 56px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.lc-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  opacity: 0.08;
  background: linear-gradient(90deg, transparent, rgba(107, 15, 58, 0.9), transparent);
  pointer-events: none;
}

.lc-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -260px;
  width: 1200px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(107, 15, 58, 0.1), transparent 72%);
  opacity: 0.25;
  pointer-events: none;
}

.lc-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 16px 22px;
}

.lc-footer__top {
  display: grid;
  grid-template-columns: repeat(var(--lc-cols, 3), minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .lc-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.lc-ft__col {
  min-width: 0;
}

.lc-ft__title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.82);
}

.lc-footer .widget {
  margin: 0 0 14px;
}

.lc-footer .widget:last-child {
  margin-bottom: 0;
}

.lc-footer p {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.65;
}

.lc-footer a {
  color: rgba(0, 0, 0, 0.82);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.lc-footer a:hover {
  color: #6b0f3a;
  text-decoration: none;
}

.lc-footer .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-footer .widget ul li {
  margin: 0 0 9px;
  color: rgba(0, 0, 0, 0.7);
}

.lc-footer .widget img {
  max-width: 100%;
  height: auto;
}

.lc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
}

.lc-footer__copy {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
}

.lc-ft__menu {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.lc-ft__menu a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.64);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.lc-ft__menu a:hover {
  color: rgba(0, 0, 0, 0.82);
  border-bottom-color: rgba(107, 15, 58, 0.35);
}

.lc-footer__extra {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 520px) {
  .lc-footer__inner {
    padding: 38px 14px 18px;
  }

  .lc-footer__bottom {
    gap: 10px;
  }

  .lc-ft__menu {
    gap: 10px 14px;
  }
}

.lc-footer .widget_pages li::before,
.lc-footer .widget_nav_menu li::before,
.lc-footer .widget_categories li::before,
.lc-footer .widget_archive li::before,
.lc-footer .widget_recent_entries li::before,
.lc-footer .widget_meta li::before,
.lc-footer .widget_pages a::before,
.lc-footer .widget_nav_menu a::before,
.lc-footer .widget_categories a::before,
.lc-footer .widget_archive a::before,
.lc-footer .widget_recent_entries a::before,
.lc-footer .widget_meta a::before {
  content: none !important;
  display: none !important;
}

.lc-footer .widget_pages li,
.lc-footer .widget_nav_menu li,
.lc-footer .widget_categories li,
.lc-footer .widget_archive li,
.lc-footer .widget_recent_entries li,
.lc-footer .widget_meta li {
  padding-left: 0 !important;
  background: none !important;
}

/* ========================================================================== */
/* 06. HOME - SECTION FINALE / CARTES RECETTES                                */
/* ========================================================================== */

/* HOME - section finale sac farine */
body.home.page-id-2 section.vc_custom_1772639071575 {
  position: relative;
  overflow: visible;
  padding-top: 52px !important;
  padding-bottom: 56px !important;
  background-position: left center !important;
}

body.home.page-id-2 section.vc_custom_1772639071575::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 244, 238, 0.04) 0%,
      rgba(248, 244, 238, 0.08) 30%,
      rgba(248, 244, 238, 0.52) 48%,
      rgba(248, 244, 238, 0.92) 68%,
      rgba(248, 244, 238, 0.98) 100%
    );
  pointer-events: none;
}

body.home.page-id-2 section.vc_custom_1772639071575 > .vc_row {
  position: relative;
  z-index: 1;
}

body.home.page-id-2 section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
  max-width: 620px;
  margin-left: auto;
  padding: 30px 34px 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.82) 0%, rgba(252, 247, 240, 0.76) 100%);
  border: 1px solid rgba(107, 15, 58, 0.08);
  box-shadow: 0 12px 24px rgba(62, 39, 19, 0.04), 0 30px 58px rgba(62, 39, 19, 0.06);
  backdrop-filter: blur(6px);
  justify-content: flex-start !important;
}

body.home.page-id-2 section.vc_custom_1772639071575::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -34px;
  height: 72px;
  background: radial-gradient(70% 100% at 50% 0%, rgba(62, 39, 19, 0.08) 0%, rgba(62, 39, 19, 0.04) 38%, rgba(62, 39, 19, 0) 74%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

body.home.page-id-2 section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
  margin: 0 0 14px;
  padding-top: 12px !important;
  font-size: clamp(46px, 4.1vw, 54px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  max-width: 9.8ch;
}

body.home.page-id-2 section.vc_custom_1772639071575 .wpb_single_image.vc_custom_1569236286124 {
  margin: 0 0 18px;
}

body.home.page-id-2 section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p {
  color: #4f5962;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

body.home.page-id-2 section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p + p {
  margin-top: 14px;
}

body.home.page-id-2 section.vc_custom_1772639071575 .vc_inner {
  margin-top: 24px;
}

@media (max-width: 991px) {
  body.home.page-id-2 section.vc_custom_1772639071575::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.4) 0%,
        rgba(248, 244, 238, 0.58) 20%,
        rgba(248, 244, 238, 0.72) 52%,
        rgba(248, 244, 238, 0.84) 100%
      );
  }

  body.home.page-id-2 section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
    max-width: none;
    padding: 24px 24px 18px;
    border-radius: 26px;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.88) 0%, rgba(250, 246, 239, 0.82) 100%);
  }

  body.home.page-id-2 section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
    font-size: clamp(42px, 7.2vw, 50px) !important;
    max-width: 10.2ch;
  }
}

@media (max-width: 767px) {
  body.home.page-id-2 section.vc_custom_1772639071575 {
    padding-top: 22px !important;
    padding-bottom: 28px !important;
    background-position: left bottom !important;
  }

  body.home.page-id-2 section.vc_custom_1772639071575::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.78) 0%,
        rgba(248, 244, 238, 0.8) 28%,
        rgba(248, 244, 238, 0.7) 68%,
        rgba(248, 244, 238, 0.74) 100%
      );
  }

  body.home.page-id-2 section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
    padding: 18px 18px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.9) 0%, rgba(250, 246, 239, 0.82) 100%);
  }

  body.home.page-id-2 section.vc_custom_1772639071575::after {
    display: none;
    left: 16px;
    right: 16px;
    bottom: -20px;
    height: 50px;
    filter: blur(14px);
    opacity: 0.62;
  }

  body.home.page-id-2 section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
    margin-bottom: 10px;
    padding-top: 0 !important;
    font-size: clamp(34px, 9.2vw, 44px) !important;
    line-height: 1.04 !important;
    max-width: 8.8ch;
  }

  body.home.page-id-2 section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  body.home.page-id-2 section.vc_custom_1772639071575 .vc_inner {
    margin-top: 18px;
  }
}

/* HOME - adoucir la retombee des cartes recettes */
body.home.page-id-2 .vc_basic_grid[data-vc-post-id="2"].vc_grid {
  padding-bottom: 22px;
  overflow-y: visible;
}

body.home.page-id-2 .vc_basic_grid[data-vc-post-id="2"] .vc_grid-item-mini {
  box-shadow: 0 12px 24px rgba(24, 18, 12, 0.04), 0 26px 46px rgba(24, 18, 12, 0.06);
}

body.home.page-id-2 .vc_basic_grid[data-vc-post-id="2"] .vc_grid-item-mini:hover {
  box-shadow: 0 16px 28px rgba(24, 18, 12, 0.05), 0 30px 54px rgba(24, 18, 12, 0.08);
}

@media (max-width: 767px) {
  body.home.page-id-2 .entry-content .vc_grid.vc_row.vc_grid-gutter-30px {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    padding-bottom: 18px;
  }
}

/* ========================================================================== */
/* 07. WOOCOMMERCE - SOCLE GLOBAL ARCHIVE / RELATED                           */
/* ========================================================================== */

/* WooCommerce - legacy global blocks migrated from customizer */
.woocommerce ul.products,
.woocommerce-page ul.products,
.related ul.products,
.upsells ul.products,
.cross-sells ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.related ul.products::before,
.related ul.products::after,
.upsells ul.products::before,
.upsells ul.products::after,
.cross-sells ul.products::before,
.cross-sells ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce ul.products > li,
.woocommerce-page ul.products > li,
.related ul.products > li,
.upsells ul.products > li,
.cross-sells ul.products > li {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products > li.first,
.woocommerce ul.products > li.last,
.woocommerce-page ul.products > li.first,
.woocommerce-page ul.products > li.last,
.related ul.products > li.first,
.related ul.products > li.last,
.upsells ul.products > li.first,
.upsells ul.products > li.last,
.cross-sells ul.products > li.first,
.cross-sells ul.products > li.last {
  clear: none !important;
}

.woocommerce ul.products > li.clear,
.woocommerce ul.products > li.clearfix,
.woocommerce ul.products > li[class*="clear"],
.woocommerce-page ul.products > li.clear,
.woocommerce-page ul.products > li.clearfix,
.woocommerce-page ul.products > li[class*="clear"],
.related ul.products > li.clear,
.related ul.products > li.clearfix,
.related ul.products > li[class*="clear"],
.upsells ul.products > li.clear,
.upsells ul.products > li.clearfix,
.upsells ul.products > li[class*="clear"],
.cross-sells ul.products > li.clear,
.cross-sells ul.products > li.clearfix,
.cross-sells ul.products > li[class*="clear"] {
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.related ul.products li.product,
.upsells ul.products li.product,
.cross-sells ul.products li.product {
  background: #fff;
  border: none !important;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover,
.related ul.products li.product:hover,
.upsells ul.products li.product:hover,
.cross-sells ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.related ul.products li.product a img,
.upsells ul.products li.product a img,
.cross-sells ul.products li.product a img {
  width: 100% !important;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 14px !important;
}

@supports not (aspect-ratio: 1 / 1) {
  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img,
  .related ul.products li.product a img,
  .upsells ul.products li.product a img,
  .cross-sells ul.products li.product a img {
    height: 260px;
    object-fit: cover;
  }
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.related ul.products li.product .woocommerce-loop-product__title,
.upsells ul.products li.product .woocommerce-loop-product__title,
.cross-sells ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 6px !important;
  color: #222;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.related ul.products li.product .price,
.upsells ul.products li.product .price,
.cross-sells ul.products li.product .price {
  font-size: 15px !important;
  font-weight: 600;
  color: #6B0F3A !important;
  margin: 0 0 12px !important;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.related ul.products li.product .button,
.upsells ul.products li.product .button,
.cross-sells ul.products li.product .button {
  background: #6B0F3A !important;
  border: 2px solid #6B0F3A !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  width: 100%;
  text-align: center;
  font-weight: 600;
  box-shadow: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover,
.related ul.products li.product .button:hover,
.upsells ul.products li.product .button:hover,
.cross-sells ul.products li.product .button:hover {
  background: #fff !important;
  color: #6B0F3A !important;
}

@media (max-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .related ul.products,
  .upsells ul.products,
  .cross-sells ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .related ul.products,
  .upsells ul.products,
  .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .related ul.products,
  .upsells ul.products,
  .cross-sells ul.products {
    grid-template-columns: 1fr !important;
  }
}

.storefront-sorting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 0 18px;
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.storefront-sorting .woocommerce-ordering {
  position: relative;
  order: 1;
  margin: 0 !important;
}

.storefront-sorting .woocommerce-result-count {
  order: 2;
  margin: 0 !important;
  font-size: 14px;
  color: rgba(0, 0, 0, .65);
}

.storefront-sorting select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 14px;
  padding: 12px 44px 12px 14px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 650;
  color: #111;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}

.storefront-sorting select.orderby:focus {
  outline: 0;
  border-color: rgba(107, 15, 58, .45);
  box-shadow: 0 0 0 4px rgba(107, 15, 58, .10), 0 14px 35px rgba(0, 0, 0, .08);
}

.storefront-sorting .woocommerce-ordering:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0, 0, 0, .55);
  border-bottom: 2px solid rgba(0, 0, 0, .55);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.storefront-sorting select.orderby:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, .18);
}

@media (max-width: 600px) {
  .storefront-sorting {
    align-items: stretch;
  }

  .storefront-sorting .woocommerce-ordering,
  .storefront-sorting .woocommerce-result-count {
    width: 100%;
  }

  .storefront-sorting select.orderby {
    width: 100%;
  }
}

/* ========================================================================== */
/* 08. WOOCOMMERCE - BOUTIQUE / FICHE PRODUIT                                 */
/* ========================================================================== */

/* WooCommerce - archive et fiche produit */
body.woocommerce-shop .site-content .col-full {
  max-width: 1340px;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
}

body.woocommerce-shop.right-sidebar .content-area,
body.woocommerce-shop.right-sidebar .widget-area {
  float: none;
  width: auto;
  margin: 0;
}

.site-content .widget-area {
  position: sticky;
  top: 118px;
}

.site-content .widget-area .widget {
  padding: 30px;
  background: linear-gradient(180deg, #fbf7f1 0%, #f3ebdf 100%);
  border: 1px solid rgba(107, 15, 58, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(68, 44, 19, 0.08);
}

/* Sidebar widget headings stay compact to match the reassurance/social widgets. */
.site-content .widget-area .widget h2,
.site-content .widget-area .widget .wp-block-heading {
  margin: 0 0 14px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: #6b0f3a;
}

.site-content .widget-area .widget h2::after,
.site-content .widget-area .widget .wp-block-heading::after {
  content: none;
  display: none;
}

.site-content .widget-area .widget.widget_block .wp-block-heading {
  margin: 0 0 14px !important;
  font-family: Oswald, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: #6b0f3a !important;
}

.site-content .widget-area .widget.widget_block .wp-block-heading::after {
  content: none !important;
  display: none !important;
}

.site-content .widget-area .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.site-content .widget-area .widget li {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(107, 15, 58, 0.08);
}

.site-content .widget-area .widget li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-content .widget-area .widget li::before {
  content: none;
}

.site-content .widget-area .widget a:not(.fdm-social-note__link) {
  color: #2e2e30;
  font-weight: 700;
  text-decoration: none;
}

body.woocommerce-shop .storefront-breadcrumb {
  padding: 10px 0 8px;
  margin: 0 0 8px;
}

body.woocommerce-shop .woocommerce-breadcrumb {
  margin: 0;
  color: #7a746c;
  font-size: 14px;
}

body.woocommerce-shop .woocommerce-products-header {
  padding: 8px 0 18px;
}

body.woocommerce-shop .woocommerce-products-header__title.page-title {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 4.2vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.5px;
  color: #2e2e30;
}

body.woocommerce-shop .woocommerce-products-header__title.page-title::after {
  content: "";
  display: block;
  width: 118px;
  height: 24px;
  margin-top: 16px;
  background: url("https://storefront.seovni.fr/wp-content/uploads/2026/03/couleur-ferme-de-la-manne.webp") left center / contain no-repeat;
}

body.woocommerce-shop .storefront-sorting:first-of-type {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "ordering result pagination";
  align-items: center;
  gap: 18px 24px;
  padding: 16px 22px;
  margin: 0 0 34px;
  background: linear-gradient(180deg, #faf7f2 0%, #f5efe6 100%);
  border: 1px solid rgba(107, 15, 58, 0.12);
  border-radius: 24px;
}

body.woocommerce-shop .woocommerce-ordering,
body.woocommerce-shop .woocommerce-result-count,
body.woocommerce-shop .woocommerce-pagination {
  margin: 0;
}

body.woocommerce-shop .woocommerce-ordering {
  grid-area: ordering;
}

body.woocommerce-shop .woocommerce-result-count {
  grid-area: result;
  justify-self: center;
  color: #6d6f78;
  font-size: 15px;
}

body.woocommerce-shop .woocommerce-pagination {
  grid-area: pagination;
  justify-self: end;
}

body.woocommerce-shop .woocommerce-pagination ul.page-numbers {
  display: flex;
  gap: 10px;
  margin: 0;
  border: 0;
}

body.woocommerce-shop .woocommerce-pagination .page-numbers li {
  border: 0;
}

body.woocommerce-shop .woocommerce-pagination .page-numbers a,
body.woocommerce-shop .woocommerce-pagination .page-numbers span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(107, 15, 58, 0.14);
  background: #fff;
  color: #6b0f3a;
  font-weight: 700;
}

body.woocommerce-shop .woocommerce-pagination .page-numbers .current {
  background: #6b0f3a;
  color: #fff;
}

body.woocommerce-shop .woocommerce-ordering select.orderby {
  min-width: 240px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(107, 15, 58, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

body.woocommerce-shop ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px;
  margin: 0;
}

body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after {
  display: none;
}

body.woocommerce-shop ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 20px 20px 18px;
  background: #fff;
  border: 1px solid rgba(107, 15, 58, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(68, 44, 19, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}

body.woocommerce-shop ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(68, 44, 19, 0.1);
}

body.woocommerce-shop ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
}

body.woocommerce-shop ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  margin: 0 0 18px !important;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8f3eb 0%, #f2ece2 100%);
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.2em;
  margin: 0 0 12px;
  color: #2e2e30;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.3px;
}

body.woocommerce-shop ul.products li.product .price {
  margin: 0 0 18px;
  color: #6b0f3a;
  font-size: 22px;
  font-weight: 700;
}

body.woocommerce-shop ul.products li.product .button,
body.single-product ul.products li.product .button,
body.single-product div.product form.cart .single_add_to_cart_button,
body.single-product .storefront-sticky-add-to-cart__content-button .button,
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  min-height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7d1144 0%, #5a0d32 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 24px rgba(88, 10, 46, 0.18);
}

body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px !important;
  border: 0 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

body.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  color: inherit;
  font-weight: inherit;
  text-decoration: none !important;
}

body.woocommerce-shop ul.products li.product .button {
  width: 100%;
  margin-top: auto;
}

body.single-product div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 18px;
}

body.single-product div.product form.cart .quantity .qty {
  min-height: 52px;
  border: 1px solid rgba(107, 15, 58, 0.12);
  border-radius: 14px;
  background: #fbf7f1;
  box-shadow: none;
}

body.single-product div.product form.cart .single_add_to_cart_button:hover,
body.single-product .storefront-sticky-add-to-cart__content-button .button:hover,
body.single-product ul.products li.product .button:hover,
body.woocommerce-shop ul.products li.product .button:hover,
body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background: linear-gradient(135deg, #89164e 0%, #65103a 100%) !important;
  color: #fff !important;
}

/* WooCommerce - page Mon compte (etat deconnexion / formulaire de connexion) */
body.woocommerce-account .entry-content > .woocommerce:has(form.woocommerce-form-login) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
}

body.woocommerce-account .entry-content > .woocommerce:has(form.woocommerce-form-login) > .woocommerce-notices-wrapper,
body.woocommerce-account .entry-content > .woocommerce:has(form.woocommerce-form-login) > h2,
body.woocommerce-account .entry-content > .woocommerce:has(form.woocommerce-form-login) > form.woocommerce-form-login {
  width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
}

body.woocommerce-account .entry-content > .woocommerce:has(form.woocommerce-form-login) > h2 {
  margin-bottom: 22px;
}

body.woocommerce-account form.woocommerce-form-login .woocommerce-button.button.woocommerce-form-login__submit {
  min-height: 52px;
  padding: 0 24px;
  border: 0 !important;
  border-radius: 16px;
  background: linear-gradient(135deg, #7d1144 0%, #5a0d32 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 24px rgba(88, 10, 46, 0.18);
  text-decoration: none !important;
}

body.woocommerce-account form.woocommerce-form-login .woocommerce-button.button.woocommerce-form-login__submit:hover {
  background: linear-gradient(135deg, #89164e 0%, #65103a 100%) !important;
  color: #fff !important;
}

/* WooCommerce - barre sticky d'ajout au panier sur fiche produit.
   Direction :
   - fond ivoire chaud
   - hiérarchie texte plus premium
   - bouton strictement aligné sur la DA WooCommerce du site
*/
body.single-product .storefront-sticky-add-to-cart {
  background: rgba(251, 247, 241, 0.96);
  border-bottom: 1px solid rgba(107, 15, 58, 0.08);
  box-shadow: 0 10px 24px rgba(68, 44, 19, 0.06);
  backdrop-filter: blur(10px);
}

body.single-product .storefront-sticky-add-to-cart .col-full {
  max-width: 1180px;
  padding: 10px 18px;
}

body.single-product .storefront-sticky-add-to-cart__content {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

body.single-product .storefront-sticky-add-to-cart__content img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 !important;
  box-shadow: none !important;
}

body.single-product .storefront-sticky-add-to-cart__content-product-info {
  min-width: 0;
}

body.single-product .storefront-sticky-add-to-cart__content-title {
  display: block;
  margin: 0;
  color: #7a756f;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.single-product .storefront-sticky-add-to-cart__content-title strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 5px;
  color: #2e2e30;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

body.single-product .storefront-sticky-add-to-cart__content-price {
  display: block;
  margin-top: 6px;
  color: #6b0f3a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

body.single-product .storefront-sticky-add-to-cart__content-button.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0 !important;
  border-radius: 16px;
  background: linear-gradient(135deg, #7d1144 0%, #5a0d32 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 24px rgba(88, 10, 46, 0.18);
  text-decoration: none !important;
  font-weight: 700;
  white-space: nowrap;
}

body.single-product .storefront-sticky-add-to-cart__content-button.button:hover {
  background: linear-gradient(135deg, #89164e 0%, #65103a 100%) !important;
  color: #fff !important;
}

/* WooCommerce - navigation flottante produit precedent / suivant.
   Direction retenue :
   - languette fermee un peu plus visible
   - panneau ouvert plus contenu qu'en natif
   - ajout d'une seule info utile : Produit precedent / Produit suivant
*/
body.single-product .storefront-product-pagination a {
  width: 352px;
  min-height: 88px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(251, 247, 241, 0.97);
  border: 1px solid rgba(107, 15, 58, 0.08);
  box-shadow: 0 10px 22px rgba(68, 44, 19, 0.06);
  font-size: 0;
  overflow: hidden;
}

body.single-product .storefront-product-pagination a[rel="prev"] {
  left: -288px !important;
  border-radius: 0 22px 22px 0;
}

body.single-product .storefront-product-pagination a[rel="next"] {
  right: -288px !important;
  left: auto !important;
  border-radius: 22px 0 0 22px;
}

body.single-product .storefront-product-pagination a[rel="prev"]:hover,
body.single-product .storefront-product-pagination a[rel="prev"]:focus {
  left: 0 !important;
}

body.single-product .storefront-product-pagination a[rel="next"]:hover,
body.single-product .storefront-product-pagination a[rel="next"]:focus {
  right: 0 !important;
}

body.single-product .storefront-product-pagination a img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 !important;
  box-shadow: none !important;
}

body.single-product .storefront-product-pagination a .storefront-product-pagination__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  color: #4f4a45;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.28;
}

body.single-product .storefront-product-pagination a[rel="prev"] .storefront-product-pagination__title::before,
body.single-product .storefront-product-pagination a[rel="next"] .storefront-product-pagination__title::before {
  display: block;
  margin-bottom: 6px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}

body.single-product .storefront-product-pagination a[rel="prev"] .storefront-product-pagination__title::before {
  content: "Produit précédent";
}

body.single-product .storefront-product-pagination a[rel="next"] .storefront-product-pagination__title::before {
  content: "Produit suivant";
}

body.single-product .storefront-product-pagination a::after {
  font-size: 28px;
  line-height: 1;
  color: rgba(46, 46, 48, 0.7);
}

body.single-product .storefront-product-pagination a[rel="prev"]::after {
  content: "‹";
}

body.single-product .storefront-product-pagination a[rel="next"]::after {
  content: "›";
}

@media (max-width: 1260px) {
  body.woocommerce-shop ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1080px) {
  body.woocommerce-shop .site-content .col-full {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-content .widget-area {
    position: static;
  }
}

@media (max-width: 900px) {
  body.woocommerce-shop .site-content .col-full {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.woocommerce-shop .storefront-sorting:first-of-type {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pagination"
      "ordering"
      "result";
  }

  body.woocommerce-shop .woocommerce-pagination,
  body.woocommerce-shop .woocommerce-ordering,
  body.woocommerce-shop .woocommerce-result-count {
    justify-self: start;
  }

  body.woocommerce-shop ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px;
  }

  body.single-product .storefront-sticky-add-to-cart .col-full {
    padding: 8px 14px;
  }

  body.single-product .storefront-sticky-add-to-cart__content {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
  }

  body.single-product .storefront-sticky-add-to-cart__content img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 10px;
  }

  body.single-product .storefront-sticky-add-to-cart__content-title {
    font-size: 11px;
  }

  body.single-product .storefront-sticky-add-to-cart__content-title strong {
    font-size: 16px;
    -webkit-line-clamp: 1;
  }

  body.single-product .storefront-sticky-add-to-cart__content-price {
    margin-top: 4px;
    font-size: 16px;
  }

  body.single-product .storefront-sticky-add-to-cart__content-button.button {
    min-height: 44px;
    padding: 0 18px;
  }

  body.single-product .storefront-product-pagination a {
    width: 328px;
    min-height: 82px;
    grid-template-columns: 56px minmax(0, 1fr) 14px;
    gap: 12px;
    padding: 10px 14px;
  }

  body.single-product .storefront-product-pagination a[rel="prev"] {
    left: -266px !important;
  }

  body.single-product .storefront-product-pagination a[rel="next"] {
    right: -266px !important;
  }

  body.single-product .storefront-product-pagination a img {
    width: 56px !important;
    height: 56px !important;
  }

  body.single-product .storefront-product-pagination a .storefront-product-pagination__title {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  body.woocommerce-shop .woocommerce-products-header__title.page-title {
    font-size: 46px;
  }

  body.woocommerce-shop .woocommerce-products-header__title.page-title::after {
    width: 102px;
    height: 20px;
  }

  body.woocommerce-shop ul.products {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title {
    font-size: 23px;
  }

  body.single-product div.product form.cart {
    gap: 14px;
  }

  body.single-product .storefront-sticky-add-to-cart__content {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
  }

  body.single-product .storefront-sticky-add-to-cart__content img {
    width: 44px !important;
    height: 44px !important;
  }

  body.single-product .storefront-sticky-add-to-cart__content-title {
    font-size: 0;
    letter-spacing: 0;
  }

  body.single-product .storefront-sticky-add-to-cart__content-title strong {
    margin-top: 0;
    font-size: 15px;
  }

  body.single-product .storefront-product-pagination {
    display: none;
  }
}

/* ========================================================================== */
/* 09. PAGE 404                                                               */
/* ========================================================================== */

body.error404 .site-content .col-full {
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
}

body.error404.right-sidebar .content-area,
body.error404.right-sidebar .widget-area {
  float: none;
  width: auto;
  margin: 0;
}

body.error404 .content-area {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

body.error404 .widget-area,
body.error404 .entry-header,
body.error404 .page-header,
body.error404 .entry-title {
  display: none !important;
}

body.error404 .site-main {
  margin: 0;
}

body.error404 .site-footer,
body.error404 .lc-footer {
  display: none;
}

.fdm-404 {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 16px 0 34px;
  text-align: center;
}

.fdm-404__media {
  width: 100%;
  max-width: 360px;
}

.fdm-404__image {
  display: block;
  width: 100%;
  height: auto;
}

.fdm-404__content {
  width: 100%;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.fdm-404__eyebrow {
  margin: 0 0 2px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.fdm-404__content h1 {
  margin: 0;
  color: #2e2e30;
  font-family: Oswald, sans-serif;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.fdm-404__lead {
  max-width: 28ch;
  margin: 0;
  color: #57534e;
  font-size: 17px;
  line-height: 1.5;
}

.fdm-404__actions {
  margin: 10px 0 0;
}

.fdm-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none !important;
}

.fdm-404__btn--solid {
  background: #6b0f3a;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(88, 10, 46, 0.12);
}

@media (max-width: 768px) {
  body.error404 .site-content .col-full {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fdm-404 {
    gap: 14px;
    padding: 8px 0 20px;
  }

  .fdm-404__media {
    max-width: 300px;
  }

  .fdm-404__content h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .fdm-404__lead {
    font-size: 16px;
  }

  .fdm-404__btn {
    width: 100%;
  }
}

/* 10. MODELE DE PAGE REUTILISABLE - DUPLICATION HOME                          */
/* ========================================================================== */

.fdm-home-template-page .storefront-breadcrumb,
.fdm-home-template-page .entry-header,
.fdm-home-template-page .widget-area {
  display: none !important;
}

.fdm-home-template-page .site-content .col-full {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fdm-home-template-page article .entry-content > .wpb-content-wrapper {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.fdm-home-template-page .content-area,
.fdm-home-template-page .site-main,
.fdm-home-template-page #primary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.fdm-home-template-page article.page,
.fdm-home-template-page .hentry {
  margin: 0;
}

.fdm-home-template-page section.vc_custom_1772639071575 {
  position: relative;
  overflow: visible;
  padding-top: 52px !important;
  padding-bottom: 56px !important;
  background-position: left center !important;
}

.fdm-home-template-page section.vc_custom_1772639071575::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 244, 238, 0.04) 0%,
      rgba(248, 244, 238, 0.08) 30%,
      rgba(248, 244, 238, 0.52) 48%,
      rgba(248, 244, 238, 0.92) 68%,
      rgba(248, 244, 238, 0.98) 100%
    );
  pointer-events: none;
}

.fdm-home-template-page section.vc_custom_1772639071575 > .vc_row {
  position: relative;
  z-index: 1;
}

.fdm-home-template-page section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
  max-width: 620px;
  margin-left: auto;
  padding: 30px 34px 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.82) 0%, rgba(252, 247, 240, 0.76) 100%);
  border: 1px solid rgba(107, 15, 58, 0.08);
  box-shadow: 0 12px 24px rgba(62, 39, 19, 0.04), 0 30px 58px rgba(62, 39, 19, 0.06);
  backdrop-filter: blur(6px);
  justify-content: flex-start !important;
}

.fdm-home-template-page section.vc_custom_1772639071575::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -34px;
  height: 72px;
  background: radial-gradient(70% 100% at 50% 0%, rgba(62, 39, 19, 0.08) 0%, rgba(62, 39, 19, 0.04) 38%, rgba(62, 39, 19, 0) 74%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.fdm-home-template-page section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
  margin: 0 0 14px;
  padding-top: 12px !important;
  font-size: clamp(46px, 4.1vw, 54px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  max-width: 9.8ch;
}

.fdm-home-template-page section.vc_custom_1772639071575 .wpb_single_image.vc_custom_1569236286124 {
  margin: 0 0 18px;
}

.fdm-home-template-page section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p {
  color: #4f5962;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.fdm-home-template-page section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p + p {
  margin-top: 14px;
}

.fdm-home-template-page section.vc_custom_1772639071575 .vc_inner {
  margin-top: 24px;
}

.fdm-home-template-page .lc-home-blog-grid-soft.vc_grid {
  padding-bottom: 22px;
  overflow-y: visible;
}

.fdm-home-template-page .lc-home-blog-grid-soft .vc_grid-item-mini {
  box-shadow: 0 12px 24px rgba(24, 18, 12, 0.04), 0 26px 46px rgba(24, 18, 12, 0.06);
}

.fdm-home-template-page .lc-home-blog-grid-soft .vc_grid-item-mini:hover {
  box-shadow: 0 16px 28px rgba(24, 18, 12, 0.05), 0 30px 54px rgba(24, 18, 12, 0.08);
}

@media (max-width: 991px) {
  .fdm-home-template-page section.vc_custom_1772639071575::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.4) 0%,
        rgba(248, 244, 238, 0.58) 20%,
        rgba(248, 244, 238, 0.72) 52%,
        rgba(248, 244, 238, 0.84) 100%
      );
  }

  .fdm-home-template-page section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
    max-width: none;
    padding: 24px 24px 18px;
    border-radius: 26px;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.88) 0%, rgba(250, 246, 239, 0.82) 100%);
  }

  .fdm-home-template-page section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
    font-size: clamp(42px, 7.2vw, 50px) !important;
    max-width: 10.2ch;
  }
}

@media (max-width: 767px) {
  .fdm-home-template-page section.vc_custom_1772639071575 {
    padding-top: 22px !important;
    padding-bottom: 28px !important;
    background-position: left bottom !important;
  }

  .fdm-home-template-page section.vc_custom_1772639071575::before {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.78) 0%,
        rgba(248, 244, 238, 0.8) 28%,
        rgba(248, 244, 238, 0.7) 68%,
        rgba(248, 244, 238, 0.74) 100%
      );
  }

  .fdm-home-template-page section.vc_custom_1772639071575 > .vc_row > .vc_column_container:last-child > .vc_column-inner {
    padding: 18px 18px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.9) 0%, rgba(250, 246, 239, 0.82) 100%);
  }

  .fdm-home-template-page section.vc_custom_1772639071575::after {
    left: 16px;
    right: 16px;
    bottom: -20px;
    height: 50px;
    filter: blur(14px);
    opacity: 0.62;
  }

  .fdm-home-template-page section.vc_custom_1772639071575 .vc_custom_heading.vc_custom_1772638046142 {
    margin-bottom: 10px;
    padding-top: 0 !important;
    font-size: clamp(34px, 9.2vw, 44px) !important;
    line-height: 1.04 !important;
    max-width: 8.8ch;
  }

  .fdm-home-template-page section.vc_custom_1772639071575 .wpb_text_column.vc_custom_1772641307394 p {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .fdm-home-template-page section.vc_custom_1772639071575 .vc_inner {
    margin-top: 18px;
  }

  .fdm-home-template-page .entry-content .vc_grid.vc_row.vc_grid-gutter-30px {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    padding-bottom: 18px;
  }
}


/* ========================================================================== */
/* 11. MODELE SIMPLE REUTILISABLE                                             */
/* ========================================================================== */

/*
 * Deuxieme modele de page, plus simple que le clone de la home.
 *
 * Usage:
 * - dupliquer la page modele
 * - remplacer textes, images et boutons dans WPBakery
 * - conserver la classe repere .fdm-page-template sur la premiere ligne
 *
 * Ce modele ne depend ni du slug ni du titre de page.
 */

.fdm-template-page .storefront-breadcrumb,
.fdm-template-page .entry-header,
.fdm-template-page .widget-area {
  display: none !important;
}

.fdm-template-page .content-area,
.fdm-template-page .site-main,
.fdm-template-page #primary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.fdm-template-page article.page,
.fdm-template-page .hentry {
  margin: 0;
}

.fdm-template-page .site-content .col-full {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fdm-template-page article .entry-content > .wpb-content-wrapper {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.fdm-template-page .fdm-page-template {
  color: #2e2e30;
}

.fdm-template-page .fdm-page-template + .fdm-page-template {
  margin-top: 8px;
}

.fdm-template-page .fdm-page-template > .vc_column_container > .vc_column-inner {
  padding-top: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(20px, 3vw, 34px);
}

.fdm-template-page .fdm-page-kicker {
  margin: 0 0 12px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fdm-template-page .fdm-page-title,
.fdm-template-page .fdm-page-section-title,
.fdm-template-page .fdm-page-card h3 {
  margin: 0;
  color: #2e2e30;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.fdm-template-page .fdm-page-title {
  font-size: clamp(48px, 5vw, 68px);
}

.fdm-template-page .fdm-page-section-title {
  font-size: clamp(34px, 3.8vw, 48px);
}

.fdm-template-page .fdm-page-title::after,
.fdm-template-page .fdm-page-section-title::after {
  content: "";
  display: block;
  width: 118px;
  height: 24px;
  margin-top: 16px;
  background: url("https://storefront.seovni.fr/wp-content/uploads/2026/03/couleur-ferme-de-la-manne.webp") left center / contain no-repeat;
}

.fdm-template-page .fdm-page-lead,
.fdm-template-page .fdm-page-template p,
.fdm-template-page .fdm-page-template li {
  color: #57534e;
  font-family: "Source Sans Pro", HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.fdm-template-page .fdm-page-lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.62;
}

.fdm-template-page .fdm-page-template p,
.fdm-template-page .fdm-page-template li {
  font-size: 18px;
  line-height: 1.7;
}

.fdm-template-page .fdm-page-template .wpb_wrapper > p:last-child,
.fdm-template-page .fdm-page-template ul:last-child {
  margin-bottom: 0;
}

.fdm-template-page .fdm-page-hero {
  align-items: center;
}

.fdm-template-page .fdm-page-preview img,
.fdm-template-page .fdm-page-feature-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(68, 44, 19, 0.08);
}

.fdm-template-page .fdm-page-preview .vc_single_image-wrapper,
.fdm-template-page .fdm-page-feature-image .vc_single_image-wrapper {
  display: block;
  overflow: hidden;
  border-radius: 28px;
}

.fdm-template-page .fdm-page-preview-card,
.fdm-template-page .fdm-page-text-card,
.fdm-template-page .fdm-page-card,
.fdm-template-page .fdm-page-cta-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(107, 15, 58, 0.1);
  background: linear-gradient(180deg, #fbf7f1 0%, #f3ebdf 100%);
  box-shadow: 0 18px 36px rgba(68, 44, 19, 0.08);
}

.fdm-template-page .fdm-page-preview-card {
  display: grid;
  gap: 14px;
}

.fdm-template-page .fdm-page-preview-card p:last-child {
  margin-bottom: 0;
}

.fdm-template-page .fdm-page-card {
  background: #fff;
  box-shadow: 0 14px 28px rgba(68, 44, 19, 0.06);
}

.fdm-template-page .fdm-page-card__index {
  margin: 0 0 12px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fdm-template-page .fdm-page-card h3 {
  font-size: 31px;
}

.fdm-template-page .fdm-page-card p:last-child,
.fdm-template-page .fdm-page-text-card p:last-child,
.fdm-template-page .fdm-page-cta-card p:last-child {
  margin-bottom: 0;
}

.fdm-template-page .fdm-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.fdm-template-page .fdm-page-actions .vc_btn3-container {
  margin: 0;
}

.fdm-template-page .fdm-page-actions .vc_btn3 {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fdm-template-page .fdm-page-actions .vc_btn3:hover {
  transform: translateY(-2px);
}

.fdm-template-page .fdm-page-actions .fdm-page-btn-primary .vc_btn3,
.fdm-template-page .fdm-page-cta-card .fdm-page-btn-primary .vc_btn3 {
  background: linear-gradient(135deg, #7d1144 0%, #5a0d32 100%) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 14px 24px rgba(88, 10, 46, 0.18);
}

.fdm-template-page .fdm-page-actions .fdm-page-btn-primary .vc_btn3:hover,
.fdm-template-page .fdm-page-cta-card .fdm-page-btn-primary .vc_btn3:hover {
  background: linear-gradient(135deg, #89164e 0%, #65103a 100%) !important;
}

.fdm-template-page .fdm-page-actions .fdm-page-btn-secondary .vc_btn3 {
  background: #fff !important;
  color: #6b0f3a !important;
  border: 1px solid rgba(107, 15, 58, 0.14) !important;
}

.fdm-template-page .fdm-page-cta-card {
  text-align: center;
  padding: 34px;
}

/* Bloc final du modele simple : une seule carte, contenu centre, boutons inclus. */
.fdm-template-page .fdm-page-final > .vc_column_container > .vc_column-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 44px 34px;
  border-radius: 32px;
  border: 1px solid rgba(107, 15, 58, 0.1);
  background: linear-gradient(180deg, #fbf7f1 0%, #f3ebdf 100%);
  box-shadow: 0 18px 36px rgba(68, 44, 19, 0.08);
  text-align: center;
}

.fdm-template-page .fdm-page-final .fdm-page-kicker {
  text-align: center;
}

.fdm-template-page .fdm-page-final .fdm-page-section-title {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(42px, 4.6vw, 58px);
}

.fdm-template-page .fdm-page-final .fdm-page-section-title::after {
  margin: 16px auto 0;
  background-position: center;
}

.fdm-template-page .fdm-page-final p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.fdm-template-page .fdm-page-final .fdm-page-actions {
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;
}

.fdm-template-page .fdm-page-final .fdm-page-actions > .vc_column_container {
  width: auto !important;
  max-width: none !important;
  float: none !important;
  flex: 0 0 auto;
}

.fdm-template-page .fdm-page-final .fdm-page-actions > .vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

.fdm-template-page .fdm-page-final .fdm-page-actions .vc_btn3-container {
  width: auto;
}

.fdm-template-page .fdm-page-final .fdm-page-actions .vc_btn3 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 220px;
  min-height: 52px;
  line-height: 1.1 !important;
  text-align: center !important;
}

.fdm-template-page .fdm-page-cta-card .fdm-page-actions {
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .fdm-template-page article .entry-content > .wpb-content-wrapper {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .fdm-template-page .fdm-page-template > .vc_column_container > .vc_column-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .fdm-template-page .fdm-page-title {
    font-size: clamp(40px, 10.6vw, 54px);
  }

  .fdm-template-page .fdm-page-section-title {
    font-size: clamp(32px, 8.2vw, 40px);
  }

  .fdm-template-page .fdm-page-title::after,
  .fdm-template-page .fdm-page-section-title::after {
    width: 102px;
    height: 20px;
    margin-top: 14px;
  }

  .fdm-template-page .fdm-page-lead,
  .fdm-template-page .fdm-page-template p,
  .fdm-template-page .fdm-page-template li {
    font-size: 17px;
  }

  .fdm-template-page .fdm-page-preview-card,
  .fdm-template-page .fdm-page-text-card,
  .fdm-template-page .fdm-page-card,
  .fdm-template-page .fdm-page-cta-card {
    padding: 22px;
    border-radius: 24px;
  }

  .fdm-template-page .fdm-page-actions {
    flex-direction: column;
  }

  .fdm-template-page .fdm-page-final > .vc_column_container > .vc_column-inner {
    padding: 26px 22px 22px;
    border-radius: 24px;
  }

  .fdm-template-page .fdm-page-final .fdm-page-section-title {
    font-size: clamp(32px, 9vw, 40px);
  }

  .fdm-template-page .fdm-page-actions .vc_btn3-container,
  .fdm-template-page .fdm-page-actions .vc_btn3 {
    width: 100%;
  }
}


/* Widget */
.fdm-side-note {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fdm-side-note__kicker {
  margin: 0 0 18px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fdm-side-note__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fdm-side-note__list li {
  margin: 0;
  padding: 16px 0;
  color: #241f1c;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 650;
  border-bottom: 1px solid rgba(107, 15, 58, 0.10);
}

.fdm-side-note__list li:first-child {
  padding-top: 0;
}

.fdm-side-note__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 767px) {
  .fdm-side-note__list li {
    font-size: 17px;
    padding: 14px 0;
  }
}

/* Sidebar social widget: discreet follow links after reassurance/recipes widgets. */
.fdm-social-note {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fdm-social-note__title {
  margin: 0 0 14px;
  color: #6b0f3a;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fdm-social-note__links {
  display: grid;
  gap: 8px;
}

.fdm-social-note__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1d1d1d !important;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  text-decoration: none !important;
}

.fdm-social-note__link:hover {
  color: #6b0f3a !important;
}

.fdm-social-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #6b0f3a;
  flex: none;
}

.fdm-social-note__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .fdm-social-note__link {
    font-size: 14px;
  }
}

/* Sidebar widget typography normalization: keep custom widgets aligned with recipe widget scale. */
.fdm-side-note__list li {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.fdm-social-note__link {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

@media (max-width: 767px) {
  .fdm-side-note__list li {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 650;
  }

  .fdm-social-note__link {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
  }
}

/* Final override: keep social widget links at the same scale as the reassurance widget. */
.fdm-social-note__link {
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 650 !important;
}

@media (max-width: 767px) {
  .fdm-social-note__link {
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
  }
}
