:root {
  --dyb-v2-bg: #f8f4ef;
  --dyb-v2-bg-soft: #efe8df;
  --dyb-v2-text: #2c2824;
  --dyb-v2-muted: #7c7268;
  --dyb-v2-line: rgba(44, 40, 36, 0.1);
  --dyb-v2-dark: #2c2824;
  --dyb-v2-accent: #b08b61;
}

body.dyb-v2-body {
  background: var(--dyb-v2-bg);
}

.dyb-v2-header,
.dyb-v2-footer,
.dyb-v2-page {
  font-family: Inter, Arial, sans-serif;
  color: var(--dyb-v2-text);
}

.dyb-v2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.dyb-v2-announcement {
  background: #2c2824;
  color: #fdfbf8;
}

.dyb-v2-announcement p {
  margin: 0;
  padding: 9px 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.dyb-v2-navwrap {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fdfbf8;
  border-bottom: 1px solid var(--dyb-v2-line);
}

.dyb-v2-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.dyb-v2-brand {
  display: flex;
  align-items: center;
  min-width: 240px;
}

.dyb-v2-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.dyb-v2-logo-wrap .custom-logo {
  max-height: 46px;
  width: auto;
}

.dyb-v2-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.dyb-v2-brand-copy strong {
  font-size: 20px;
  font-weight: 600;
}

.dyb-v2-brand-copy small {
  font-size: 13px;
  color: var(--dyb-v2-muted);
}

.dyb-v2-mobile-toggle {
  display: none;
  margin-right: 10px;
  border: 0;
  background: none;
  font-size: 24px;
}

.dyb-v2-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.dyb-v2-menu-item {
  position: relative;
}

.dyb-v2-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 26px 0;
  color: var(--dyb-v2-text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dyb-v2-menu-link:hover {
  color: #6f5b48;
}

.dyb-v2-menu-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.dyb-v2-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(1220px, calc(100vw - 48px));
  transform: translate(-50%, 8px);
  background: #fdfbf8;
  border: 1px solid var(--dyb-v2-line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.dyb-v2-menu-item.is-open > .dyb-v2-mega-panel,
.dyb-v2-menu-item:hover > .dyb-v2-mega-panel,
.dyb-v2-menu-item:focus-within > .dyb-v2-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dyb-v2-mega-grid {
  display: grid;
  gap: 26px;
}

.dyb-v2-mega-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.dyb-v2-mega-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.dyb-v2-mega-heading {
  display: block;
  margin-bottom: 14px;
  color: var(--dyb-v2-muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dyb-v2-mega-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dyb-v2-mega-col li {
  margin-bottom: 8px;
}

.dyb-v2-mega-col li a {
  color: var(--dyb-v2-text);
  text-decoration: none;
  font-size: 14px;
}

.dyb-v2-mega-col li a:hover {
  color: #6f5b48;
}

.dyb-v2-actions-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.dyb-v2-iconbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(44, 40, 36, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--dyb-v2-text);
  text-decoration: none;
}

.dyb-v2-iconbtn em {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #2c2824;
  color: #fff;
  font-style: normal;
  font-size: 10px;
}

.dyb-v2-lang {
  margin-right: 6px;
  color: var(--dyb-v2-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dyb-v2-search-panel {
  background: #fff;
  border-bottom: 1px solid var(--dyb-v2-line);
}

.dyb-v2-search-form {
  display: flex;
  gap: 12px;
  padding: 18px 0;
}

.dyb-v2-search-form input {
  flex: 1;
  border: 1px solid var(--dyb-v2-line);
  padding: 12px 14px;
}

.dyb-v2-search-form button {
  border: 0;
  background: #2c2824;
  color: #fff;
  padding: 12px 18px;
}

.dyb-v2-mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid var(--dyb-v2-line);
}

.dyb-v2-mobile-inner {
  padding: 16px 28px 22px;
}

.dyb-v2-mobile-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--dyb-v2-line);
}

.dyb-v2-mobile-top a,
.dyb-v2-mobile-subitem a {
  color: var(--dyb-v2-text);
  text-decoration: none;
}

.dyb-v2-mobile-subitem {
  padding: 10px 0 10px 12px;
}

.dyb-v2-mobile-subitem ul {
  padding: 8px 0 0 12px;
}

.dyb-v2-page {
  background: var(--dyb-v2-bg);
  padding-bottom: 70px;
}

.dyb-v2-hero,
.dyb-v2-boutique-hero {
  padding: 64px 0 34px;
}

.dyb-v2-hero-grid,
.dyb-v2-boutique-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.dyb-v2-hero-copy h1,
.dyb-v2-boutique-copy h1 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  line-height: 0.95;
  font-weight: 500;
}

.dyb-v2-hero-copy h1 em,
.dyb-v2-boutique-copy h1 em {
  font-style: italic;
  font-weight: 400;
}

.dyb-v2-eyebrow,
.dyb-v2-kicker {
  display: block;
  margin-bottom: 14px;
  color: #9b9188;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dyb-v2-hero-copy p,
.dyb-v2-boutique-copy p {
  max-width: 620px;
  color: #5f554c;
  font-size: 18px;
  line-height: 1.7;
}

.dyb-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.dyb-v2-btn {
  text-decoration: none;
}

.dyb-v2-btn-primary {
  background: #2c2824;
  color: #fff;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dyb-v2-btn-link {
  color: #7c7268;
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dyb-v2-hero-media img,
.dyb-v2-boutique-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ddd;
}

.dyb-v2-section {
  padding: 34px 0;
}

.dyb-v2-section-head {
  margin-bottom: 26px;
}

.dyb-v2-section-head h2 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
}

.dyb-v2-section-head-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.dyb-v2-inline-link {
  color: #7c7268;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dyb-v2-cards-3,
.dyb-v2-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dyb-v2-card {
  background: #fff;
  border: 1px solid var(--dyb-v2-line);
  padding: 26px;
}

.dyb-v2-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.dyb-v2-card p {
  margin: 0 0 12px;
  color: #665d55;
  line-height: 1.7;
}

.dyb-v2-card-soft {
  background: #fdfbf8;
}

.dyb-v2-product-card {
  display: flex;
  flex-direction: column;
}

.dyb-v2-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #efe8df;
  aspect-ratio: 3 / 4;
}

.dyb-v2-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dyb-v2-product-card:hover .dyb-v2-product-image img {
  transform: scale(1.03);
}

.dyb-v2-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2c2824;
  color: #fff;
  padding: 6px 9px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dyb-v2-product-meta {
  padding-top: 14px;
}

.dyb-v2-product-cat {
  display: block;
  margin-bottom: 6px;
  color: #9b9188;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dyb-v2-product-meta h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.1;
}

.dyb-v2-product-meta h3 a {
  color: var(--dyb-v2-text);
  text-decoration: none;
}

.dyb-v2-price {
  color: #4f4841;
  font-size: 15px;
}

.dyb-v2-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
  gap: 28px;
}

.dyb-v2-story-note {
  padding-top: 38px;
}

.dyb-v2-breadcrumb {
  margin-bottom: 14px;
  color: #9b9188;
  font-size: 12px;
}

.dyb-v2-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.dyb-v2-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  color: #6f655d;
  font-size: 14px;
}

.dyb-v2-boutique-toolbar {
  padding: 12px 0 0;
}

.dyb-v2-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.dyb-v2-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dyb-v2-filter {
  border: 1px solid var(--dyb-v2-line);
  color: var(--dyb-v2-text);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dyb-v2-filter.is-active {
  background: #2c2824;
  color: #fff;
}

.dyb-v2-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dyb-v2-sort label {
  color: #7c7268;
  font-size: 12px;
}

.dyb-v2-sort select {
  border: 1px solid var(--dyb-v2-line);
  background: #fff;
  padding: 10px 12px;
}

.dyb-v2-pagination ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 26px 0 0;
  list-style: none;
}

.dyb-v2-pagination a,
.dyb-v2-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--dyb-v2-line);
  color: var(--dyb-v2-text);
  text-decoration: none;
}

.dyb-v2-pagination .current {
  background: #2c2824;
  color: #fff;
}

.dyb-v2-footer {
  background: #221e1b;
  color: #fdfbf8;
  padding: 55px 0 26px;
}

.dyb-v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 26px;
}

.dyb-v2-footer h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.dyb-v2-footer p {
  color: rgba(253, 251, 248, 0.62);
  line-height: 1.7;
}

.dyb-v2-footer-col h4 {
  margin: 0 0 14px;
  color: rgba(253, 251, 248, 0.45);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dyb-v2-footer-menu,
.dyb-v2-footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dyb-v2-footer-menu li {
  margin-bottom: 10px;
}

.dyb-v2-footer-menu a,
.dyb-v2-footer-bottom a {
  color: rgba(253, 251, 248, 0.72);
  text-decoration: none;
}

.dyb-v2-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 251, 248, 0.08);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .dyb-v2-nav {
    display: none;
  }

  .dyb-v2-mobile-toggle {
    display: inline-block;
  }

  .dyb-v2-mobile-panel.is-open,
  .dyb-v2-mobile-panel[style*="display: block"] {
    display: block;
  }

  .dyb-v2-hero-grid,
  .dyb-v2-boutique-hero-grid,
  .dyb-v2-story-grid,
  .dyb-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .dyb-v2-cards-3,
  .dyb-v2-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dyb-v2-actions-icons {
    margin-left: auto;
  }

  .dyb-v2-navbar {
    height: 68px;
  }

  .dyb-v2-brand-copy strong {
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .dyb-v2-container {
    padding: 0 18px;
  }

  .dyb-v2-cards-3,
  .dyb-v2-product-grid {
    grid-template-columns: 1fr;
  }

  .dyb-v2-hero-copy h1,
  .dyb-v2-boutique-copy h1 {
    font-size: 48px;
  }

  .dyb-v2-section-head-inline,
  .dyb-v2-toolbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .dyb-v2-actions-icons {
    gap: 8px;
  }

  .dyb-v2-iconbtn {
    width: 34px;
    height: 34px;
  }

  .dyb-v2-brand-copy small {
    display: none;
  }
}

/* =========================
   V2 HEADER DESKTOP STRONG FIX
   ========================= */

@media (min-width: 1200px) {
  .dyb-v2-header .header-inner {
    display: grid;
    grid-template-columns: 220px 1fr 170px;
    align-items: center;
    column-gap: 18px;
  }

  .dyb-v2-header .site-branding {
    min-width: 0;
  }

  .dyb-v2-header .main-nav {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .dyb-v2-header .main-nav > ul,
  .dyb-v2-header .main-nav .menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .dyb-v2-header .main-nav li {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .dyb-v2-header .main-nav a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .dyb-v2-header .header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .dyb-v2-header .header-tools a,
  .dyb-v2-header .header-tools button {
    flex: 0 0 auto;
  }
}
/* ===== March 2026 boutique/home refinement ===== */
.dyb-v2-header,.dyb-v2-footer,.dyb-v2-page{font-family:Inter,Arial,sans-serif}
.dyb-v2-page h1,.dyb-v2-page h2,.dyb-v2-page h3,.dyb-v2-page .dyb-v2-product-meta h3 a,.dyb-v2-page .dyb-v2-home-newsletter-copy h2,.dyb-v2-page .dyb-v2-boutique-copy h1{font-family:"Cormorant Garamond",Georgia,serif}
.dyb-v2-header .custom-logo{max-height:34px!important;width:auto}
.dyb-v2-logo-wrap{gap:0}.dyb-v2-brand-copy{display:none}
.dyb-v2-navbar{height:56px}.dyb-v2-nav{gap:20px}.dyb-v2-menu-link{padding:18px 0;font-size:11px;letter-spacing:.14em}
.dyb-v2-actions-icons{gap:10px}.dyb-v2-lang{font-size:11px;letter-spacing:.12em;color:#8d8378}
.dyb-v2-iconbtn{width:28px;height:28px;border:none;background:transparent;color:#b8ada1;padding:0}.dyb-v2-iconbtn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.dyb-v2-iconbtn:hover{color:#2c2824;background:transparent}.dyb-v2-cartbtn em{top:-6px;right:-4px;background:#2c2824;color:#fff;font-size:10px;min-width:16px;height:16px;display:flex;align-items:center;justify-content:center;border-radius:999px}
.dyb-v2-boutique-hero--compact{padding:26px 0 18px}.dyb-v2-boutique-hero-grid{grid-template-columns:minmax(0,1fr) 460px;gap:48px;align-items:end}.dyb-v2-boutique-copy h1{font-size:68px;line-height:.95;margin:0 0 12px}.dyb-v2-boutique-copy p{max-width:540px}.dyb-v2-boutique-media img{display:block;width:100%;aspect-ratio:5/6;object-fit:cover;background:#ddd}
.dyb-v2-toolbar-row--shop{gap:24px;align-items:center;justify-content:space-between}.dyb-v2-toolbar-left,.dyb-v2-toolbar-right{display:flex;align-items:center;gap:18px}.dyb-v2-filter-toggle{border:1px solid var(--dyb-v2-line);background:#fff;color:var(--dyb-v2-text);padding:11px 18px;font-size:12px;letter-spacing:.12em;text-transform:uppercase}.dyb-v2-filters--top{display:flex;gap:28px;flex-wrap:wrap}.dyb-v2-filter{font-size:12px;letter-spacing:.11em;text-transform:uppercase;color:#8a8075;padding:0 0 14px;border-bottom:1px solid transparent;text-decoration:none}.dyb-v2-filter.is-active,.dyb-v2-filter:hover{color:#2c2824;border-bottom-color:#2c2824}.dyb-v2-results-count{font-size:12px;color:#8d8378}.dyb-v2-view-switch{display:flex;gap:10px}.dyb-v2-view-btn{text-decoration:none;color:#b6ab9f;font-size:16px}.dyb-v2-view-btn.is-active,.dyb-v2-view-btn:hover{color:#2c2824}.dyb-v2-sort{display:flex;align-items:center;gap:8px}.dyb-v2-sort label{font-size:12px;color:#8d8378}.dyb-v2-sort select{border:none;background:transparent;color:#6e655d;font-size:13px;padding:6px 18px 6px 6px}
.dyb-v2-filter-drawer[hidden]{display:none}.dyb-v2-filter-drawer{position:fixed;inset:0;z-index:9998}.dyb-v2-filter-overlay{position:absolute;inset:0;background:rgba(17,14,12,.4)}.dyb-v2-filter-panel{position:absolute;top:0;left:0;width:min(420px,92vw);height:100%;overflow:auto;background:#fcfaf7;padding:28px 24px;box-shadow:18px 0 45px rgba(0,0,0,.14)}.dyb-v2-filter-panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}.dyb-v2-filter-panel-head h2{margin:0;font-size:34px}.dyb-v2-filter-close{border:none;background:none;font-size:34px;line-height:1;color:#7f756a}.dyb-v2-filter-group{padding:16px 0;border-top:1px solid var(--dyb-v2-line)}.dyb-v2-filter-group h3{margin:0 0 14px;font-size:14px;letter-spacing:.08em;text-transform:uppercase;font-family:Inter,Arial,sans-serif}.dyb-v2-check{display:grid;grid-template-columns:18px 1fr auto;gap:10px;align-items:center;padding:6px 0;font-size:14px;color:#4b443d}.dyb-v2-check em{font-style:normal;color:#8d8378;font-size:12px}.dyb-v2-filter-actions{display:flex;align-items:center;gap:14px;padding-top:18px}.dyb-v2-filter-open{overflow:hidden}
.dyb-v2-product-grid-boutique{grid-template-columns:repeat(3,minmax(0,1fr));gap:42px 30px}.dyb-v2-product-grid-compact{grid-template-columns:repeat(4,minmax(0,1fr));gap:34px 24px}.dyb-v2-product-card-shop .dyb-v2-product-image{background:#f0ebe4;display:block}.dyb-v2-product-card-shop .dyb-v2-product-image img{display:block;width:100%;aspect-ratio:0.78;object-fit:cover}.dyb-v2-product-card-shop .dyb-v2-product-meta{padding-top:14px}.dyb-v2-product-meta h3{margin:4px 0 6px;font-size:31px;line-height:.96;font-weight:400}.dyb-v2-product-meta h3 a{text-decoration:none;color:#2c2824}.dyb-v2-product-cat{font-size:11px;letter-spacing:.11em;text-transform:uppercase;color:#a19588}.dyb-v2-price{font-size:13px;color:#655d56}
.dyb-v2-home .dyb-v2-home-hero-copy-panel{background:#f7f2ec}.dyb-v2-home-hero-copy-inner{max-width:470px}.dyb-v2-home .dyb-v2-home-hero-v3{padding-bottom:34px}.dyb-v2-home .dyb-v2-home-hero-v3 h1{font-size:78px;line-height:.9;font-weight:400}.dyb-v2-home .dyb-v2-home-hero-v3 p{max-width:420px}.dyb-v2-home .dyb-v2-btn-primary{background:#2c2824;color:#fff;border-color:#2c2824}.dyb-v2-home .dyb-v2-btn-link{color:#9f9386;text-transform:uppercase;font-size:12px;letter-spacing:.14em}
.dyb-v2-editorial-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:20px;align-items:stretch}.dyb-v2-editorial-card{position:relative;display:block;overflow:hidden;min-height:340px;color:#fff;text-decoration:none;background:#ddd}.dyb-v2-editorial-card-large{grid-row:1/span 2;min-height:700px}.dyb-v2-editorial-card img{width:100%;height:100%;display:block;object-fit:cover}.dyb-v2-editorial-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.1) 0%,rgba(0,0,0,.55) 100%)}.dyb-v2-editorial-content{position:absolute;left:24px;right:24px;bottom:24px;display:flex;flex-direction:column;gap:6px}.dyb-v2-editorial-content small,.dyb-v2-editorial-content em{font-style:normal;font-size:12px;letter-spacing:.12em;text-transform:uppercase;opacity:.9}.dyb-v2-editorial-content strong{font-size:46px;line-height:.92;font-weight:400;font-family:"Cormorant Garamond",Georgia,serif}
.dyb-v2-product-grid-4{grid-template-columns:repeat(4,minmax(0,1fr));gap:34px 22px}.dyb-v2-product-grid-3{grid-template-columns:repeat(3,minmax(0,1fr));gap:28px 22px}.dyb-v2-home .dyb-v2-product-card .dyb-v2-product-image img{aspect-ratio:.78;object-fit:cover}.dyb-v2-home .dyb-v2-product-card .dyb-v2-product-meta h3{font-size:26px}
.dyb-v2-home-newsletter-v2{background:#241f1a;margin-top:0;padding:0}.dyb-v2-home-newsletter-wrap{display:grid;grid-template-columns:1.1fr .9fr;align-items:stretch}.dyb-v2-home-newsletter-copy{padding:68px 64px;color:#f7f2ec;background:#241f1a}.dyb-v2-home-newsletter-copy h2{font-size:60px;line-height:.95;margin:12px 0 16px;color:#f7f2ec}.dyb-v2-home-newsletter-copy p{max-width:520px;color:#c5b9aa}.dyb-v2-home-newsletter-form{margin-top:24px}.dyb-v2-home-newsletter-form small{display:block;margin-top:12px;color:#8d8378}.dyb-v2-home-newsletter-image img{display:block;width:100%;height:100%;object-fit:cover;filter:grayscale(1)}.dyb-v2-newsletter-fallback{display:flex;gap:10px;max-width:520px}.dyb-v2-newsletter-fallback input{flex:1;border:1px solid rgba(255,255,255,.12);background:transparent;color:#f8f4ef;padding:16px 18px}.dyb-v2-newsletter-fallback button{border:none;background:#f5efe8;color:#241f1a;padding:16px 24px;text-transform:uppercase;letter-spacing:.12em;font-size:12px}
.dyb-v2-footer{margin-top:0;padding:42px 0 28px;background:#241f1a;color:#f7f2ec}.dyb-v2-footer-grid{grid-template-columns:1.5fr repeat(4,1fr);gap:40px}.dyb-v2-footer-brand h3{font-size:26px;font-family:"Cormorant Garamond",Georgia,serif;font-weight:400;margin:0 0 18px}.dyb-v2-footer-brand p{max-width:330px;color:#b8ada1;font-family:"Cormorant Garamond",Georgia,serif;font-size:19px;line-height:1.45}.dyb-v2-footer-contact{display:flex;flex-direction:column;gap:10px;margin-top:24px}.dyb-v2-footer-contact a,.dyb-v2-footer-contact span,.dyb-v2-footer a{color:#c7b9aa;text-decoration:none}.dyb-v2-footer-col h4{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#8d8378;margin-bottom:16px}.dyb-v2-footer-menu{list-style:none;margin:0;padding:0}.dyb-v2-footer-menu li{margin:0 0 12px}.dyb-v2-footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:34px;padding-top:16px;color:#8d8378}
@media (max-width: 1100px){.dyb-v2-boutique-hero-grid,.dyb-v2-home-newsletter-wrap,.dyb-v2-editorial-grid,.dyb-v2-footer-grid{grid-template-columns:1fr}.dyb-v2-editorial-card-large{min-height:420px;grid-row:auto}.dyb-v2-home .dyb-v2-home-hero-v3 h1,.dyb-v2-boutique-copy h1,.dyb-v2-home-newsletter-copy h2{font-size:52px}.dyb-v2-product-grid-boutique,.dyb-v2-product-grid-compact,.dyb-v2-product-grid-4,.dyb-v2-product-grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}.dyb-v2-toolbar-row--shop{align-items:flex-start}.dyb-v2-toolbar-left,.dyb-v2-toolbar-right{flex-wrap:wrap}}
@media (max-width: 680px){.dyb-v2-product-grid-boutique,.dyb-v2-product-grid-compact,.dyb-v2-product-grid-4,.dyb-v2-product-grid-3{grid-template-columns:1fr}.dyb-v2-home-newsletter-copy{padding:42px 22px}.dyb-v2-filter-panel{width:100vw;padding:22px 18px}.dyb-v2-navbar{height:52px}.dyb-v2-navwrap{position:relative}}






/* ===== FINAL HOME V2 RESTORE / PDF-ALIGNED REFINEMENT ===== */
body.page-template-template-home-v2 .dyb-v2-home,
body.page-template-template-home-v2 .dyb-v2-home * { box-sizing: border-box; }
body.page-template-template-home-v2 .dyb-v2-home { background: #f8f4ef; padding-bottom: 0; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 { padding: 46px 0 34px; }
body.page-template-template-home-v2 .dyb-v2-home-hero-split { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,620px); gap: 48px; align-items: center; }
body.page-template-template-home-v2 .dyb-v2-home-hero-copy-panel { background: transparent; min-width: 0; }
body.page-template-template-home-v2 .dyb-v2-home-hero-copy-inner { max-width: 520px; padding: 0; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 .dyb-v2-eyebrow { margin-bottom: 16px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #9b9188; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 h1 { margin: 0 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(58px,5.7vw,86px); line-height: .9; font-weight: 400; color: #2c2824; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 h1 em { font-style: italic; font-weight: 400; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 p { max-width: 420px; margin: 0; font-size: 18px; line-height: 1.7; color: #5f554c; }
body.page-template-template-home-v2 .dyb-v2-home-hero-v3 .dyb-v2-actions { margin-top: 26px; gap: 16px; }
body.page-template-template-home-v2 .dyb-v2-home-hero-image-wrap { display: block; width: 100%; }
body.page-template-template-home-v2 .dyb-v2-home-hero-image-wrap img { display: block; width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover; background: #e7dfd5; }
body.page-template-template-home-v2 .dyb-v2-home-collections-v2 { display: none !important; }

body.page-template-template-home-v2 .dyb-v2-home .dyb-v2-section { padding: 34px 0; }
body.page-template-template-home-v2 .dyb-v2-home .dyb-v2-section-head { margin-bottom: 22px; }
body.page-template-template-home-v2 .dyb-v2-home .dyb-v2-section-head h2 { margin: 8px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px,3.6vw,52px); line-height: 1; font-weight: 400; }
body.page-template-template-home-v2 .dyb-v2-home .dyb-v2-inline-link { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #9b9188; }

body.page-template-template-home-v2 .dyb-v2-product-grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 30px 22px; }
body.page-template-template-home-v2 .dyb-v2-product-grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px 22px; }
body.page-template-template-home-v2 .dyb-v2-product-card { display: flex; flex-direction: column; }
body.page-template-template-home-v2 .dyb-v2-product-image { position: relative; display: block; overflow: hidden; background: #efe8df; aspect-ratio: 3 / 4; }
body.page-template-template-home-v2 .dyb-v2-product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
body.page-template-template-home-v2 .dyb-v2-product-meta { padding-top: 12px; }
body.page-template-template-home-v2 .dyb-v2-product-cat { display: block; margin-bottom: 6px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #a19588; }
body.page-template-template-home-v2 .dyb-v2-product-meta h3 { margin: 0 0 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; line-height: 1.05; font-weight: 400; }
body.page-template-template-home-v2 .dyb-v2-product-meta h3 a { text-decoration: none; color: #2c2824; }
body.page-template-template-home-v2 .dyb-v2-price { font-size: 14px; color: #4f4841; }

body.page-template-template-home-v2 .dyb-v2-home-story-v2 { padding-top: 42px; }
body.page-template-template-home-v2 .dyb-v2-story-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,420px); gap: 34px; align-items: center; }
body.page-template-template-home-v2 .dyb-v2-story-media-v2 img { display: block; width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; }
body.page-template-template-home-v2 .dyb-v2-story-copy-v2 { max-width: 420px; }
body.page-template-template-home-v2 .dyb-v2-story-rule { width: 44px; height: 1px; background: rgba(44,40,36,.28); margin-bottom: 18px; }
body.page-template-template-home-v2 .dyb-v2-story-copy-v2 h2 { margin: 8px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px,3.6vw,52px); line-height: .98; font-weight: 400; color: #2c2824; }
body.page-template-template-home-v2 .dyb-v2-story-copy-v2 p { margin: 0 0 14px; font-size: 16px; line-height: 1.75; color: #61584f; }
body.page-template-template-home-v2 .dyb-v2-story-copy-v2 blockquote { margin: 18px 0; padding: 0; border: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; line-height: 1.15; color: #2c2824; }

body.page-template-template-home-v2 .dyb-v2-favorites-grid { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 28px; align-items: start; }
body.page-template-template-home-v2 .dyb-v2-favorites-intro { max-width: 260px; }
body.page-template-template-home-v2 .dyb-v2-favorites-intro h2 { margin: 8px 0 12px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px,3.4vw,48px); line-height: 1; font-weight: 400; }
body.page-template-template-home-v2 .dyb-v2-favorites-intro p { margin: 0 0 18px; font-size: 16px; line-height: 1.75; color: #61584f; }

body.page-template-template-home-v2 .dyb-v2-section-head-center { text-align: center; }
body.page-template-template-home-v2 .dyb-v2-testimonials-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
body.page-template-template-home-v2 .dyb-v2-testimonial-card { background: #fcfaf7; border: 1px solid rgba(44,40,36,.08); padding: 28px 26px; min-height: 100%; }
body.page-template-template-home-v2 .dyb-v2-stars { margin-bottom: 10px; color: #b08b61; letter-spacing: .12em; }
body.page-template-template-home-v2 .dyb-v2-testimonial-card p { margin: 0 0 18px; font-size: 16px; line-height: 1.75; color: #554d45; }
body.page-template-template-home-v2 .dyb-v2-testimonial-card footer { display: flex; flex-direction: column; gap: 4px; }
body.page-template-template-home-v2 .dyb-v2-testimonial-card footer strong { font-size: 14px; color: #2c2824; }
body.page-template-template-home-v2 .dyb-v2-testimonial-card footer span { font-size: 12px; color: #9b9188; text-transform: uppercase; letter-spacing: .12em; }

body.page-template-template-home-v2 .dyb-v2-inspirations-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-auto-rows: 230px; gap: 18px; }
body.page-template-template-home-v2 .dyb-v2-inspo-item { display: block; overflow: hidden; background: #efe8df; }
body.page-template-template-home-v2 .dyb-v2-inspo-item.is-tall { grid-row: span 2; }
body.page-template-template-home-v2 .dyb-v2-inspo-item.is-wide { grid-column: span 1; }
body.page-template-template-home-v2 .dyb-v2-inspo-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

body.page-template-template-home-v2 .dyb-v2-home-newsletter-v2 { background: #241f1a; margin-top: 34px; padding: 0; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,520px); align-items: stretch; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy { padding: 56px 48px; background: #241f1a; color: #f7f2ec; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy .dyb-v2-kicker { color: #8d8378; margin-bottom: 14px; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy h2 { margin: 0 0 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(42px,4vw,58px); line-height: .98; font-weight: 400; color: #f7f2ec; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy p { margin: 0; max-width: 470px; font-size: 16px; line-height: 1.75; color: #c5b9aa; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-form { margin-top: 22px; }
body.page-template-template-home-v2 .dyb-v2-newsletter-fallback { display: flex; gap: 10px; max-width: 430px; }
body.page-template-template-home-v2 .dyb-v2-newsletter-fallback input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.14); background: transparent; color: #f8f4ef; padding: 15px 16px; }
body.page-template-template-home-v2 .dyb-v2-newsletter-fallback button { border: none; background: #f5efe8; color: #241f1a; padding: 15px 22px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-form small { display: block; margin-top: 12px; color: #8d8378; }
body.page-template-template-home-v2 .dyb-v2-home-newsletter-image img { display: block; width: 100%; height: 100%; min-height: 100%; object-fit: cover; filter: grayscale(1); }

body.page-template-template-home-v2 .dyb-v2-footer { margin-top: 0; padding-top: 38px; background: #241f1a; }

@media (max-width: 1100px) {
  body.page-template-template-home-v2 .dyb-v2-home-hero-split,
  body.page-template-template-home-v2 .dyb-v2-story-shell,
  body.page-template-template-home-v2 .dyb-v2-favorites-grid,
  body.page-template-template-home-v2 .dyb-v2-home-newsletter-wrap { grid-template-columns: 1fr; }
  body.page-template-template-home-v2 .dyb-v2-product-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.page-template-template-home-v2 .dyb-v2-product-grid-3,
  body.page-template-template-home-v2 .dyb-v2-testimonials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.page-template-template-home-v2 .dyb-v2-inspirations-grid { grid-template-columns: 1fr 1fr; }
  body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy { padding: 42px 32px; }
}

@media (max-width: 680px) {
  body.page-template-template-home-v2 .dyb-v2-home-hero-split { padding: 0 18px; gap: 28px; }
  body.page-template-template-home-v2 .dyb-v2-home-hero-v3 h1 { font-size: 52px; }
  body.page-template-template-home-v2 .dyb-v2-product-grid-4,
  body.page-template-template-home-v2 .dyb-v2-product-grid-3,
  body.page-template-template-home-v2 .dyb-v2-testimonials-grid,
  body.page-template-template-home-v2 .dyb-v2-inspirations-grid { grid-template-columns: 1fr; }
  body.page-template-template-home-v2 .dyb-v2-home-newsletter-wrap { padding: 0 18px; }
  body.page-template-template-home-v2 .dyb-v2-home-newsletter-copy { padding: 34px 22px; }
  body.page-template-template-home-v2 .dyb-v2-newsletter-fallback { flex-direction: column; }
}

/* ===== FINAL V2 HEADER / FOOTER REFINEMENT — FIGMA MAKE ALIGNMENT ===== */
.dyb-v2-header-refined,

@media (max-width: 1380px) {
  .dyb-v2-header-refined .dyb-v2-navbar-refined {
    grid-template-columns: minmax(220px,.78fr) auto minmax(460px,1.22fr);
    gap: 20px;
  }

  .dyb-v2-header-refined .dyb-v2-nav {
    gap: 22px;
  }

  .dyb-v2-header-refined .dyb-v2-actions-icons-refined {
    gap: 10px;
    margin-left: 10px;
  }
}

.dyb-v2-footer-refined {
  font-family: Inter, Arial, sans-serif;
}

.dyb-v2-header-refined .dyb-v2-navwrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fcfaf7;
  border-bottom: 1px solid rgba(44, 40, 36, .08);
}

.dyb-v2-header-refined .dyb-v2-navbar-refined {
  display: grid;
  grid-template-columns: minmax(260px,.82fr) auto minmax(520px,1.18fr);
  align-items: center;
  gap: clamp(22px, 2vw, 38px);
  min-height: 68px;
}

.dyb-v2-header-refined .dyb-v2-navbar-left,
.dyb-v2-header-refined .dyb-v2-navbar-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.dyb-v2-header-refined .dyb-v2-navbar-left {
  justify-content: flex-start;
}

.dyb-v2-header-refined .dyb-v2-navbar-right {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  justify-content: end;
  column-gap: clamp(18px, 1.5vw, 28px);
}

.dyb-v2-header-refined .dyb-v2-brand {
  min-width: 0;
  justify-content: center;
  padding-inline: 18px;
}

.dyb-v2-header-refined .dyb-v2-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dyb-v2-header-refined .custom-logo {
  max-height: 38px !important;
  width: auto;
}

.dyb-v2-header-refined .dyb-v2-logo-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1;
  color: #2c2824;
}

.dyb-v2-header-refined .dyb-v2-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.7vw, 34px);
  flex: 0 1 auto;
}

.dyb-v2-header-refined .dyb-v2-nav-left {
  justify-content: flex-start;
}

.dyb-v2-header-refined .dyb-v2-nav-right {
  justify-content: flex-end;
  width: 100%;
}

.dyb-v2-header-refined .dyb-v2-menu-link {
  padding: 24px 0;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8f8478;
  line-height: 1.15;
  white-space: nowrap;
}

.dyb-v2-header-refined .dyb-v2-menu-link:hover,
.dyb-v2-header-refined .dyb-v2-menu-item.is-open > .dyb-v2-menu-link,
.dyb-v2-header-refined .dyb-v2-menu-item:focus-within > .dyb-v2-menu-link {
  color: #2c2824;
}

.dyb-v2-header-refined .dyb-v2-menu-link .chev {
  font-size: 9px;
  transform: translateY(-1px);
}

.dyb-v2-header-refined .dyb-v2-menu-item::before {
  height: 10px;
}

.dyb-v2-header-refined .dyb-v2-mega-panel {
  background: #fcfaf7;
  border: 1px solid rgba(44,40,36,.08);
  box-shadow: 0 18px 40px rgba(39,31,24,.08);
  padding: 28px;
}

.dyb-v2-header-refined .dyb-v2-mega-heading {
  color: #8f8478;
}

.dyb-v2-header-refined .dyb-v2-mega-col li a {
  color: #4f4841;
}

.dyb-v2-header-refined .dyb-v2-actions-icons-refined {
  min-width: auto;
  gap: 12px;
  margin-left: clamp(8px, 1vw, 18px);
  justify-content: flex-end;
}

.dyb-v2-header-refined .dyb-v2-iconbtn {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aea296;
  box-shadow: none;
}

.dyb-v2-header-refined .dyb-v2-iconbtn:hover,
.dyb-v2-header-refined .dyb-v2-iconbtn:focus-visible {
  color: #2c2824;
}

.dyb-v2-header-refined .dyb-v2-iconbtn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dyb-v2-header-refined .dyb-v2-wishlistbtn svg path {
  fill: none;
}

.dyb-v2-header-refined .dyb-v2-cartbtn em {
  top: -8px;
  right: -8px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  font-size: 9px;
  background: #2c2824;
  color: #fff;
}

.dyb-v2-header-refined .dyb-v2-search-panel {
  background: #fcfaf7;
  border-bottom: 1px solid rgba(44,40,36,.08);
}

.dyb-v2-header-refined .dyb-v2-search-form {
  padding: 16px 0 18px;
}

.dyb-v2-header-refined .dyb-v2-search-form input {
  border: 1px solid rgba(44,40,36,.12);
  background: #fff;
  min-height: 46px;
}

.dyb-v2-header-refined .dyb-v2-search-form button {
  min-height: 46px;
  background: #2c2824;
  color: #fff;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dyb-v2-header-refined .dyb-v2-mobile-toggle {
  display: none;
  margin-right: 14px;
  color: #8f8478;
}

.dyb-v2-footer-refined {
  margin-top: 0;
  background: #f7f3ee;
  color: #2c2824;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter {
  background: #e9e2d9;
  border-top: 1px solid rgba(44,40,36,.07);
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-wrap {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr);
  align-items: stretch;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-copy {
  padding: 68px 56px 62px 0;
}

.dyb-v2-footer-refined .dyb-v2-kicker {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #b7aa9b;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-copy h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 56px);
  line-height: .96;
  font-weight: 400;
  color: #2c2824;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-copy p {
  max-width: 660px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5f554c;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-form {
  margin-top: 28px;
}

.dyb-v2-footer-refined .dyb-v2-newsletter-fallback {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.dyb-v2-footer-refined .dyb-v2-newsletter-fallback input,
.dyb-v2-footer-refined .mc4wp-form-fields input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 46px;
  padding: 14px 18px;
  border: 1px solid rgba(44,40,36,.08);
  background: #fff;
  color: #2c2824;
}

.dyb-v2-footer-refined .dyb-v2-newsletter-fallback button,
.dyb-v2-footer-refined .mc4wp-form-fields input[type="submit"] {
  min-height: 46px;
  border: 0;
  background: #2c2824;
  color: #fff;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-form small {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: #b2a697;
}

.dyb-v2-footer-refined .dyb-v2-footer-newsletter-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance {
  background: #fdfbf8;
  border-top: 1px solid rgba(44,40,36,.06);
  border-bottom: 1px solid rgba(44,40,36,.06);
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding: 22px 0;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(44,40,36,.08);
  background: #fff;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy strong {
  font-weight: 500;
  color: #3a342f;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy span {
  font-size: 14px;
  color: #b0a495;
}

.dyb-v2-footer-refined .dyb-v2-footer-main {
  background: #f7f3ee;
}

.dyb-v2-footer-refined .dyb-v2-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 46px;
  padding: 44px 0 30px;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: .9;
  font-weight: 400;
  color: #2c2824;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand p {
  margin: 0;
  max-width: 320px;
  color: #b3a79a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b7aa9b;
  text-decoration: none;
  line-height: 1;
  transition: color .22s ease, transform .22s ease, opacity .22s ease;
  opacity: .92;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a:hover,
.dyb-v2-footer-refined .dyb-v2-footer-socials a:focus-visible {
  color: #2c2824;
  opacity: 1;
  transform: translateY(-1px);
}

.dyb-v2-footer-refined .dyb-v2-footer-col h4 {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #b7aa9b;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu,
.dyb-v2-footer-refined .dyb-v2-footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu li {
  margin: 0 0 16px;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu a,
.dyb-v2-footer-refined .dyb-v2-footer-bottom a {
  color: #4c4640;
  text-decoration: none;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu a:hover,
.dyb-v2-footer-refined .dyb-v2-footer-bottom a:hover {
  color: #2c2824;
}

.dyb-v2-footer-refined .dyb-v2-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 32px;
  border-top: 1px solid rgba(44,40,36,.06);
}

.dyb-v2-footer-refined .dyb-v2-footer-bottom-left,
.dyb-v2-footer-refined .dyb-v2-footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dyb-v2-footer-refined .dyb-v2-footer-bottom-left {
  font-size: 12px;
  color: #b2a697;
}

.dyb-v2-footer-refined .dyb-v2-payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(44,40,36,.08);
  background: #fbf8f4;
  color: #c0b3a4;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .dyb-v2-header-refined .dyb-v2-nav {
    gap: 18px;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dyb-v2-footer-refined .dyb-v2-footer-grid,
  .dyb-v2-footer-refined .dyb-v2-footer-newsletter-wrap {
    grid-template-columns: 1fr;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-newsletter-copy {
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  .dyb-v2-header-refined .dyb-v2-navbar-refined {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .dyb-v2-header-refined .dyb-v2-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dyb-v2-header-refined .dyb-v2-nav-left,
  .dyb-v2-header-refined .dyb-v2-nav-right {
    display: none;
  }

  .dyb-v2-header-refined .dyb-v2-navbar-left {
    justify-content: flex-start;
  }

  .dyb-v2-header-refined .dyb-v2-navbar-right {
    gap: 14px;
  }

  .dyb-v2-header-refined .custom-logo {
    max-height: 34px !important;
  }

  .dyb-v2-mobile-panel {
    display: block;
    border-top: 1px solid rgba(44,40,36,.08);
    background: #fcfaf7;
  }

  .dyb-v2-mobile-panel[hidden] {
    display: none;
  }

  .dyb-v2-mobile-inner {
    padding: 14px 28px 24px;
  }
}

@media (max-width: 680px) {
  .dyb-v2-header-refined .dyb-v2-container,
  .dyb-v2-footer-refined .dyb-v2-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dyb-v2-header-refined .dyb-v2-navbar-refined {
    gap: 12px;
  }

  .dyb-v2-header-refined .custom-logo {
    max-height: 28px !important;
  }

  .dyb-v2-header-refined .dyb-v2-actions-icons-refined {
    gap: 10px;
  }

  .dyb-v2-footer-refined .dyb-v2-newsletter-fallback {
    flex-direction: column;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-newsletter-copy {
    padding: 40px 0 34px;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid,
  .dyb-v2-footer-refined .dyb-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-brand h3 {
    font-size: 40px;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== 2026-03 HOMEPAGE NEWSLETTER + FOOTER STABILIZATION PATCH ===== */

/* Keep the homepage newsletter visually aligned with the refined footer-newsletter block
   without changing the successful styling on the other pages. */
body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified {
  background: #241f1a;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
  margin-top: 34px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
  gap: 0;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
  padding: 62px 56px 56px 0;
  background: #241f1a;
  color: #f7f2ec;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-kicker {
  margin-bottom: 16px;
  color: #8d8378;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: .96;
  color: #f7f2ec;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy p {
  max-width: 620px;
  margin: 0;
  color: #c5b9aa;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-form {
  margin-top: 26px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields {
  max-width: 440px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields p {
  margin: 0 0 12px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  color: #c5b9aa;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="text"],
body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #f7f2ec;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="text"]::placeholder,
body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="email"]::placeholder {
  color: #c5b9aa;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="submit"] {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  background: #f5efe8;
  color: #241f1a;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-form small {
  margin-top: 12px;
  color: #8d8378;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image {
  min-height: 520px;
  align-self: stretch;
}

body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
/* Reassurance row: remove the accidental blue band feel and restore a subtle editorial strip. */
.dyb-v2-footer-refined .dyb-v2-footer-reassurance {
  background: #fcfaf7;
  border-top: 1px solid rgba(44,40,36,.06);
  border-bottom: 1px solid rgba(44,40,36,.06);
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid {
  gap: 24px;
  padding: 20px 0;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #b4a796;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy strong {
  font-size: 15px;
  font-weight: 500;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy span {
  font-size: 13px;
}

/* Footer brand + socials: stop the ugly word break and make the social area deliberate. */
.dyb-v2-footer-refined .dyb-v2-footer-grid {
  grid-template-columns: minmax(240px, 1.55fr) repeat(4, minmax(120px, 1fr));
  gap: 40px;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand h3 {
  font-size: 44px;
  line-height: .92;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand p {
  max-width: 340px;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials {
  gap: 12px;
  margin-top: 24px;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 0;
  position: relative;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a::before {
  content: attr(aria-label);
  font-size: 10px;
  letter-spacing: .04em;
  color: currentColor;
}

/* Bottom row spacing */
.dyb-v2-footer-refined .dyb-v2-footer-bottom {
  padding: 22px 0 30px;
}

@media (max-width: 1180px) {
  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-wrap,
  .dyb-v2-footer-refined .dyb-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
    padding-right: 0;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-brand h3 {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
    padding: 38px 0 32px;
  }

  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image,
  body.page-template-template-home-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image img {
    min-height: 340px;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid,
  .dyb-v2-footer-refined .dyb-v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-socials a::before {
    font-size: 9px;
  }
}

/* ===== Footer palette cleanup — reference-inspired beige/white balance ===== */
.dyb-v2-footer-refined {
  background: transparent !important;
  color: #2e2721;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance,
.dyb-v2-footer-refined .dyb-v2-footer-reassurance::before,
.dyb-v2-footer-refined .dyb-v2-footer-reassurance::after {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid {
  padding: 30px 0 26px !important;
  gap: 28px !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-item {
  align-items: center;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-icon {
  background: #ffffff !important;
  border: 1px solid rgba(46,39,33,.08) !important;
  color: #b8ab98 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy strong {
  color: #201913 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-reassurance-copy span {
  color: #a29587 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-main,
.dyb-v2-footer-refined .dyb-v2-footer-main::before,
.dyb-v2-footer-refined .dyb-v2-footer-main::after {
  background: #f7f3ee !important;
  border: 0 !important;
  box-shadow: none !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-grid {
  padding-top: 40px;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand h3 {
  color: #211913 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-brand p {
  color: #9e9082 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-col h4 {
  color: #a89988 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu a,
.dyb-v2-footer-refined .dyb-v2-footer-bottom a,
.dyb-v2-footer-refined .dyb-v2-footer-bottom span {
  color: #6a5b4d !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-menu a:hover,
.dyb-v2-footer-refined .dyb-v2-footer-bottom a:hover {
  color: #1f1812 !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials {
  display: flex;
  gap: 10px;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px;
  border-radius: 50% !important;
  border: 1px solid rgba(46,39,33,.09) !important;
  background: #fffdfa !important;
  color: #b5a795 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px !important;
  letter-spacing: .02em;
}

.dyb-v2-footer-refined .dyb-v2-footer-socials a::before {
  content: none !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-bottom {
  border-top: 1px solid rgba(46,39,33,.08) !important;
  margin-top: 26px !important;
  padding: 18px 0 0 !important;
  justify-content: flex-start !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-bottom-right,
.dyb-v2-footer-refined .dyb-v2-payment-chip {
  display: none !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-signature,
.dyb-v2-footer-refined .dyb-v2-footer-signature::before,
.dyb-v2-footer-refined .dyb-v2-footer-signature::after {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-signature {
  padding: 16px 0 18px !important;
}

.dyb-v2-footer-refined .dyb-v2-footer-signature-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #221b15 !important;
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dyb-v2-footer-refined .dyb-v2-footer-signature-mark span {
  font-size: 9px;
  letter-spacing: .35em;
  color: #7c6e60;
}

#site-footer,
#site-footer::before,
#site-footer::after {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* kill leftover dark bars from older footer experiments */
body.page-template-template-home-v2 #site-footer,
body.page-template-template-boutique-v2 #site-footer,
body #site-footer {
  background-image: none !important;
}

@media (max-width: 980px) {
  .dyb-v2-footer-refined .dyb-v2-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .dyb-v2-footer-refined .dyb-v2-footer-reassurance-grid,
  .dyb-v2-footer-refined .dyb-v2-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .dyb-v2-footer-refined .dyb-v2-footer-signature {
    padding-bottom: 24px !important;
  }
}


/* =========================
   PERMANENT MEGA MENU POSITION FIX
   Keep submenu positioning independent from header spacing tweaks.
   ========================= */
.dyb-v2-header-refined .dyb-v2-menu-item.has-children {
  position: relative;
}

.dyb-v2-header-refined .dyb-v2-menu-item.has-children > .dyb-v2-mega-panel {
  top: calc(100% + 8px);
  width: min(1220px, calc(100vw - 48px));
  max-width: min(1220px, calc(100vw - 48px));
}

.dyb-v2-header-refined .dyb-v2-nav-left .dyb-v2-menu-item.has-children > .dyb-v2-mega-panel {
  left: 0 !important;
  right: auto !important;
  transform: translateY(8px) !important;
}

.dyb-v2-header-refined .dyb-v2-nav-right .dyb-v2-menu-item.has-children > .dyb-v2-mega-panel {
  right: 0 !important;
  left: auto !important;
  transform: translateY(8px) !important;
}

.dyb-v2-header-refined .dyb-v2-nav-left .dyb-v2-menu-item.is-open > .dyb-v2-mega-panel,
.dyb-v2-header-refined .dyb-v2-nav-left .dyb-v2-menu-item:hover > .dyb-v2-mega-panel,
.dyb-v2-header-refined .dyb-v2-nav-left .dyb-v2-menu-item:focus-within > .dyb-v2-mega-panel,
.dyb-v2-header-refined .dyb-v2-nav-right .dyb-v2-menu-item.is-open > .dyb-v2-mega-panel,
.dyb-v2-header-refined .dyb-v2-nav-right .dyb-v2-menu-item:hover > .dyb-v2-mega-panel,
.dyb-v2-header-refined .dyb-v2-nav-right .dyb-v2-menu-item:focus-within > .dyb-v2-mega-panel {
  transform: translateY(0) !important;
}


/* V2 boutique toolbar refinement — cleaner tabs, no ugly borders, better breathing */
.dyb-v2-boutique-toolbar{
  padding: 22px 0 10px;
  margin-bottom: 18px;
}

.dyb-v2-toolbar-row--shop{
  gap: 28px;
  align-items: flex-end;
}

.dyb-v2-toolbar-left,
.dyb-v2-toolbar-right{
  display: flex;
  align-items: center;
  gap: 24px;
}

.dyb-v2-filter-toggle{
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ddd4ca;
  box-shadow: 0 1px 0 rgba(44,40,36,.04);
  background: #fff;
  color: #2c2824;
}

.dyb-v2-filters--top{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dyb-v2-filters--top .dyb-v2-filter{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
  color: #93887d;
  line-height: 1;
  text-decoration: none;
}

.dyb-v2-filters--top .dyb-v2-filter.is-active,
.dyb-v2-filters--top .dyb-v2-filter:hover,
.dyb-v2-filters--top .dyb-v2-filter:focus-visible{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #2c2824;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

.dyb-v2-results-count{
  font-size: 12px;
  color: #8d8378;
}

.dyb-v2-sort{
  display: flex;
  align-items: center;
  gap: 14px;
}

.dyb-v2-sort label{
  font-size: 12px;
  color: #8d8378;
  margin: 0;
  white-space: nowrap;
}

.dyb-v2-sort select{
  min-height: 42px;
  padding: 8px 28px 8px 10px;
  border: 0;
  background: transparent;
  color: #6e655d;
}

@media (max-width: 1100px){
  .dyb-v2-boutique-toolbar{
    padding-top: 18px;
  }

  .dyb-v2-toolbar-row--shop{
    gap: 22px;
  }
}

@media (max-width: 680px){
  .dyb-v2-boutique-toolbar{
    padding: 16px 0 8px;
    margin-bottom: 14px;
  }

  .dyb-v2-toolbar-row--shop{
    gap: 16px;
    align-items: flex-start;
  }

  .dyb-v2-toolbar-left,
  .dyb-v2-toolbar-right{
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
  }

  .dyb-v2-filters--top{
    gap: 14px;
  }

  .dyb-v2-filters--top .dyb-v2-filter{
    min-height: 36px;
  }

  .dyb-v2-sort{
    gap: 10px;
  }
}
/* ===== Boutique V2 wishlist overlay fix ===== */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-media{
  position: relative;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-actions{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action{
  pointer-events: auto;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-to-wishlist{
  margin: 0 !important;
  display: block !important;
  position: static !important;
  visibility: visible !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-button,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse{
  display: block !important;
  margin: 0 !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(44, 40, 36, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  color: #2c2824 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(44, 40, 36, 0.10);
  font-size: 0 !important;
  line-height: 1;
  overflow: hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist:focus-visible,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a:focus-visible,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a:focus-visible{
  background: #ffffff;
  border-color: rgba(44, 40, 36, 0.22);
  box-shadow: 0 10px 26px rgba(44, 40, 36, 0.14);
  transform: translateY(-1px);
  outline: none;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist::after,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a::after,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a::after{
  display: none !important;
  content: none !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .feedback,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-button span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container),
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container),
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container){
  display: none !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-icon,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg{
  display: block;
  width: 18px;
  height: 18px;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg *{
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7 !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a{
  background: #d6ba67;
  border-color: #d6ba67;
  color: #ffffff !important;
}

@media (max-width: 680px){
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist,
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-actions{
    top: 10px;
    right: 10px;
  }
}


/* ===== Boutique V2 wishlist icon visibility fix ===== */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a{
  position: relative;
}

/* Default state: real plugin SVG inside the anchor */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist{
  color: #2c2824 !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist svg,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist svg *,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist .yith-wcwl-icon,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist .yith-wcwl-icon *{
  stroke: #2c2824 !important;
  fill: none !important;
}

/* Added/existing states: plugin moves the icon into .feedback, so do NOT hide it */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse{
  position: relative;
  width: 44px;
  height: 44px;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse .feedback,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse .feedback{
  position: absolute !important;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse .feedback svg,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse .feedback svg{
  display: block !important;
  width: 18px;
  height: 18px;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse .feedback svg *,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse .feedback svg *{
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 1.7 !important;
}

/* Keep the plugin link for behavior, but remove the visible text */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a{
  color: transparent !important;
}

/* Undo the earlier blanket hide for feedback in added/existing states */
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse .feedback,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse .feedback{
  display: flex !important;
}


/* ===== Boutique V2 wishlist final clean fix ===== */
/* Goal:
   - keep the heart in the top-right corner
   - remove the white/gold square badge look
   - keep the heart black in every state
   - hide YITH text output
   - preserve plugin click behavior
*/
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-media {
  position: relative;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action {
  pointer-events: auto;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-to-wishlist,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-button,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  visibility: visible !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2c2824 !important;
  text-decoration: none !important;
  font-size: 0 !important;
  line-height: 1;
  overflow: visible;
  opacity: 1;
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist:focus-visible,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a:focus-visible,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a:hover,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a:focus-visible {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #2c2824 !important;
  transform: scale(1.05);
  opacity: 0.85;
  outline: none;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist::after,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a::after,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a::after,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .feedback::before,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .feedback::after {
  content: none !important;
  display: none !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-add-button span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container),
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container):not(.feedback),
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse span:not(.yith-wcwl-icon):not(.yith-wcwl-icon-svg-container):not(.feedback) {
  display: none !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .feedback {
  position: absolute !important;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 2;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-icon,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg {
  display: block !important;
  width: 18px;
  height: 18px;
  overflow: visible;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg *,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-icon,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-icon * {
  fill: none !important;
  stroke: #2c2824 !important;
  stroke-width: 1.7 !important;
  color: #2c2824 !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a {
  color: transparent !important;
}

body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse .feedback svg *,
body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse .feedback svg * {
  fill: none !important;
  stroke: #2c2824 !important;
}

@media (max-width: 680px) {
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-actions {
    top: 10px;
    right: 10px;
  }

  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action a.add_to_wishlist,
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistaddedbrowse a,
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-wishlistexistsbrowse a {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action .yith-wcwl-icon,
  body.page-template-template-boutique-v2 .dyb-v2-product-card-shop .dyb-v2-product-action svg {
    width: 16px;
    height: 16px;
  }
}



/* ===== 2026-03 BOUTIQUE V2 — Reuse homepage newsletter exactly ===== */

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified {
  background: #241f1a;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
  margin-top: 34px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
  gap: 0;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
  padding: 62px 56px 56px 0;
  background: #241f1a;
  color: #f7f2ec;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-kicker {
  margin-bottom: 16px;
  color: #8d8378;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: .96;
  color: #f7f2ec;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy p {
  max-width: 620px;
  margin: 0;
  color: #c5b9aa;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-form {
  margin-top: 26px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields {
  max-width: 440px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields p {
  margin: 0 0 12px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  color: #c5b9aa;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="text"],
body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #f7f2ec;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="text"]::placeholder,
body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="email"]::placeholder {
  color: #c5b9aa;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .mc4wp-form-fields input[type="submit"] {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  background: #f5efe8;
  color: #241f1a;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-form small {
  margin-top: 12px;
  color: #8d8378;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image {
  min-height: 520px;
  align-self: stretch;
}

body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-wrap {
    grid-template-columns: 1fr;
  }

  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-copy {
    padding: 34px 0 28px;
  }

  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image,
  body.page-template-template-boutique-v2 .dyb-v2-footer-newsletter.dyb-v2-home-newsletter-unified .dyb-v2-footer-newsletter-image img {
    min-height: 340px;
  }
}

