/*
Theme Name: Danimonie
Theme URI: https://danimonie.local
Author: Danimonie
Author URI: https://danimonie.local
Description: Theme WordPress/WooCommerce premium inspire du site Danimonie React.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: danimonie
Tags: ecommerce, woocommerce, beauty, luxury
*/

:root {
  --dm-primary: #1a1a1a;
  --dm-secondary: #d4af37;
  --dm-secondary-dark: #b89422;
  --dm-accent: #f8e8e8;
  --dm-text: #333333;
  --dm-muted: #6b7280;
  --dm-light: #f5f5f5;
  --dm-border: #e5e5e5;
  --dm-white: #ffffff;
  --dm-success: #16a34a;
  --dm-danger: #dc2626;
  --dm-radius: 8px;
  --dm-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --dm-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dm-text);
  background: var(--dm-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.dm-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.dm-main {
  min-height: 58vh;
}

.dm-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.dm-section {
  padding: 80px 0;
}

.dm-section--light {
  background: var(--dm-light);
}

.dm-section-title {
  margin: 0 0 48px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.dm-btn,
.button,
button.button,
input.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--dm-radius);
  background: var(--dm-primary);
  color: var(--dm-white);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.dm-btn:hover,
.button:hover,
button.button:hover,
input.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #333333;
  color: var(--dm-white);
  transform: translateY(-1px);
}

.dm-btn--gold,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--dm-secondary);
  color: var(--dm-primary);
}

.dm-btn--gold:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background: var(--dm-secondary-dark);
  color: var(--dm-primary);
}

.dm-btn--outline {
  border-color: var(--dm-primary);
  background: transparent;
  color: var(--dm-primary);
}

.dm-btn--outline:hover {
  background: var(--dm-primary);
  color: var(--dm-white);
}

.dm-btn--light {
  border-color: var(--dm-white);
  background: transparent;
  color: var(--dm-white);
}

.dm-btn--light:hover {
  background: var(--dm-white);
  color: var(--dm-primary);
}

.dm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--dm-border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.dm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.dm-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.dm-logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.dm-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.dm-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dm-nav a {
  color: var(--dm-text);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.dm-nav a:hover,
.dm-nav .current-menu-item > a,
.dm-nav .current_page_item > a {
  color: var(--dm-secondary);
}

.dm-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dm-header__search {
  position: relative;
  width: 220px;
}

.dm-header__search form,
.dm-shop-search form {
  display: flex;
  gap: 8px;
  margin: 0;
}

.dm-header__search input[type="search"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 38px 10px 14px;
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  color: var(--dm-text);
  outline: 0;
}

.dm-header__search input[type="search"]:focus {
  border-color: var(--dm-secondary);
}

.dm-header__search button,
.dm-shop-search button {
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: var(--dm-radius);
  background: var(--dm-primary);
  color: var(--dm-white);
  cursor: pointer;
  font-weight: 800;
}

.dm-header__icon,
.dm-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--dm-radius);
  background: transparent;
  color: var(--dm-text);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.dm-header__icon:hover,
.dm-menu-toggle:hover {
  background: var(--dm-light);
  color: var(--dm-secondary);
}

.dm-header__count {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--dm-secondary);
  color: var(--dm-primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.dm-menu-toggle {
  display: none;
}

.dm-mobile-panel {
  display: none;
  border-top: 1px solid var(--dm-border);
  padding: 18px 0 22px;
}

.dm-mobile-panel.is-open {
  display: block;
}

.dm-mobile-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.dm-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  color: var(--dm-white);
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(26, 26, 26, 0.88) 54%, rgba(212, 175, 55, 0.82)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    var(--dm-primary);
}

.dm-hero__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.dm-hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 7.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.dm-hero__kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 300;
}

.dm-hero__copy {
  max-width: 700px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.dm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.dm-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.dm-feature-grid,
.dm-routine-grid,
.dm-blog-grid,
.dm-stat-grid {
  display: grid;
  gap: 24px;
}

.dm-company-strip {
  border-bottom: 1px solid var(--dm-border);
  background: var(--dm-white);
}

.dm-company-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--dm-muted);
  font-size: 0.92rem;
}

.dm-company-strip__inner strong {
  display: block;
  color: var(--dm-primary);
}

.dm-company-strip__inner a {
  flex: 0 0 auto;
  color: var(--dm-secondary);
  font-weight: 900;
}

.dm-home {
  background: #fffaf7;
}

.dm-home-hero {
  overflow: hidden;
  padding: 78px 0 62px;
  background:
    linear-gradient(180deg, #fffaf7 0%, #f4ebe4 100%);
}

.dm-home-hero__grid,
.dm-home-intro__grid,
.dm-home-rituals__grid,
.dm-home-cta__inner {
  display: grid;
  align-items: center;
  gap: 56px;
}

.dm-home-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.dm-home-eyebrow {
  margin: 0 0 14px;
  color: #8d6d24;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
}

.dm-home-hero h1,
.dm-home-intro__content h2,
.dm-home-section-head h2,
.dm-home-rituals__content h2,
.dm-home-cta__inner h2 {
  margin: 0;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 1.03;
}

.dm-home-hero h1 {
  max-width: 680px;
  font-size: 4.35rem;
}

.dm-home-hero__copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #5d514c;
  font-size: 1.12rem;
  line-height: 1.8;
}

.dm-home-hero__actions,
.dm-home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dm-home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dm-home-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: var(--dm-radius);
  background: rgba(255, 255, 255, 0.68);
  color: #4d4540;
  font-size: 0.86rem;
  font-weight: 800;
}

.dm-home-hero__media,
.dm-home-intro__media,
.dm-home-rituals__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--dm-radius);
  background: #ebe0d4;
  box-shadow: 0 26px 70px rgba(64, 43, 31, 0.18);
}

.dm-home-hero__media {
  min-height: 610px;
}

.dm-home-hero__media img,
.dm-home-intro__media img,
.dm-home-rituals__media img,
.dm-home-empty img,
.dm-home-cta__inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dm-home-hero__media img {
  min-height: 610px;
}

.dm-home-hero__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--dm-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.16);
  backdrop-filter: blur(10px);
}

.dm-home-hero__note strong {
  display: block;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.dm-home-hero__note span {
  display: block;
  margin-top: 6px;
  color: var(--dm-muted);
  font-size: 0.9rem;
}

.dm-home-trust {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: var(--dm-white);
}

.dm-home-trust__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.dm-home-trust__item span {
  display: block;
  color: var(--dm-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.dm-home-trust__item strong {
  display: block;
  margin-top: 3px;
  color: var(--dm-primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

.dm-home-trust__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius);
  color: var(--dm-primary);
  font-weight: 900;
  white-space: nowrap;
}

.dm-home-trust__link:hover {
  border-color: var(--dm-secondary);
  color: var(--dm-secondary-dark);
}

.dm-home-intro__grid,
.dm-home-rituals__grid,
.dm-home-cta__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.dm-home-intro__media,
.dm-home-rituals__media {
  aspect-ratio: 4 / 3.2;
}

.dm-home-intro__content h2,
.dm-home-section-head h2,
.dm-home-rituals__content h2,
.dm-home-cta__inner h2 {
  font-size: 2.65rem;
}

.dm-home-intro__content p:not(.dm-home-eyebrow),
.dm-home-rituals__content > p,
.dm-home-cta__inner p:not(.dm-home-eyebrow) {
  margin: 22px 0 0;
  color: #5d514c;
  font-size: 1.05rem;
  line-height: 1.8;
}

.dm-home-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dm-home-signature span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--dm-radius);
  background: #edf4e9;
  color: #2f5534;
  font-size: 0.84rem;
  font-weight: 900;
}

.dm-home-section-head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.dm-home-promise-grid,
.dm-home-editorial__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dm-home-promise {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dm-home-promise:hover,
.dm-home-editorial-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--dm-shadow-lg);
  transform: translateY(-4px);
}

.dm-home-promise span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #1f3024;
  color: #f4d574;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.dm-home-promise h3,
.dm-home-tab-panel h3 {
  margin: 0 0 10px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.dm-home-promise p,
.dm-home-tab-panel p {
  margin: 0;
  color: var(--dm-muted);
}

.dm-home-products {
  background: var(--dm-white);
}

.dm-home-products .dm-product-section__head {
  align-items: end;
}

.dm-home-products .dm-section-title {
  margin: 0;
}

.dm-home-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--dm-radius);
  background: #1d1b1a;
  color: var(--dm-white);
}

.dm-home-empty > div {
  padding: 42px;
}

.dm-home-empty h3 {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.12;
}

.dm-home-empty p:not(.dm-home-eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.dm-home-empty img {
  min-height: 360px;
}

.dm-home-rituals {
  background: #f3eee8;
}

.dm-home-rituals__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.dm-home-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 18px;
}

.dm-home-tabs button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--dm-radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--dm-primary);
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dm-home-tabs button.is-active,
.dm-home-tabs button:hover {
  border-color: #1f3024;
  background: #1f3024;
  color: var(--dm-white);
}

.dm-home-tab-panel {
  display: none;
  padding: 28px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow);
}

.dm-home-tab-panel.is-active {
  display: block;
  animation: dm-home-fade 220ms ease both;
}

@keyframes dm-home-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dm-home-tab-panel ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.dm-home-tab-panel li {
  color: var(--dm-text);
  line-height: 1.55;
}

.dm-home-editorial-card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-top: 4px solid #2f5534;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dm-home-cta {
  padding-top: 0;
  background: #1d1b1a;
  color: var(--dm-white);
}

.dm-home-cta__inner {
  min-height: 470px;
  padding: 64px 0;
}

.dm-home-cta__inner img {
  min-height: 360px;
  border-radius: var(--dm-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.dm-home-cta__inner h2 {
  color: var(--dm-white);
}

.dm-home-cta__inner .dm-home-eyebrow {
  color: #f4d574;
}

.dm-home-cta__inner p:not(.dm-home-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.dm-home-cta__inner .dm-btn--outline {
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--dm-white);
}

.dm-home-cta__inner .dm-btn--outline:hover {
  border-color: var(--dm-white);
  background: var(--dm-white);
  color: var(--dm-primary);
}

[data-dm-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-dm-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dm-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dm-feature {
  padding: 30px 22px;
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.dm-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--dm-shadow-lg);
}

.dm-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--dm-light);
  color: var(--dm-secondary);
  font-size: 1.7rem;
  font-weight: 900;
}

.dm-feature h3,
.dm-routine-card h3,
.dm-editorial-card h3 {
  margin: 0 0 10px;
  color: var(--dm-primary);
  font-size: 1.15rem;
}

.dm-feature p,
.dm-routine-card p,
.dm-editorial-card p {
  margin: 0;
  color: var(--dm-muted);
}

.dm-product-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.dm-product-section__head .dm-section-title {
  margin: 0;
  text-align: left;
}

.dm-products,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none;
}

.woocommerce ul.products li.product,
.dm-product-card {
  float: none;
  width: auto;
  margin: 0;
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product:hover,
.dm-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dm-shadow-lg);
}

.dm-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--dm-light);
}

.dm-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.dm-product-card:hover .dm-product-card__image img {
  transform: scale(1.045);
}

.dm-product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--dm-white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  color: var(--dm-primary);
}

.dm-product-card__body {
  padding: 18px;
}

.dm-product-card__brand {
  margin: 0 0 4px;
  color: var(--dm-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.dm-product-card__title {
  min-height: 45px;
  margin: 0 0 10px;
  padding: 0;
  color: var(--dm-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.dm-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--dm-secondary);
  font-size: 0.86rem;
}

.dm-rating__count {
  color: var(--dm-muted);
  font-size: 0.78rem;
}

.dm-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 25px;
  margin-bottom: 14px;
}

.dm-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--dm-accent);
  color: var(--dm-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.dm-product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.woocommerce ul.products li.product .price,
.dm-product-card__price {
  color: var(--dm-secondary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.dm-routine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dm-routine-card,
.dm-editorial-card,
.dm-newsletter,
.dm-page-panel {
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  box-shadow: var(--dm-shadow);
}

.dm-routine-card {
  padding: 26px;
}

.dm-routine-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--dm-text);
}

.dm-editorial-card {
  min-height: 210px;
  padding: 28px;
  border-top: 4px solid var(--dm-secondary);
}

.dm-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dm-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px;
  background: linear-gradient(135deg, var(--dm-primary), #2a2a2a);
  color: var(--dm-white);
}

.dm-newsletter h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.dm-newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.dm-newsletter form {
  display: flex;
  gap: 10px;
}

.dm-newsletter input[type="email"] {
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--dm-radius);
  outline: 0;
}

.dm-page-hero,
.dm-shop-hero {
  padding: 46px 0;
  background: var(--dm-light);
}

.dm-page-hero h1,
.dm-shop-hero h1 {
  margin: 0 0 12px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.dm-page-hero p,
.dm-shop-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--dm-muted);
}

.dm-page-content {
  padding: 56px 0;
}

.dm-page-panel {
  padding: clamp(24px, 5vw, 48px);
}

.dm-page-panel > *:first-child {
  margin-top: 0;
}

.dm-legal-page,
.dm-contact-page {
  color: var(--dm-text);
}

.dm-legal-intro,
.dm-contact-hero p {
  max-width: 820px;
  margin: 0 0 30px;
  color: var(--dm-muted);
  font-size: 1.08rem;
}

.dm-legal-page h2,
.dm-contact-page h2 {
  margin: 34px 0 14px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.dm-legal-page p,
.dm-legal-page li,
.dm-contact-page p,
.dm-contact-page li {
  font-size: 1rem;
  line-height: 1.78;
}

.dm-legal-page ul,
.dm-legal-page ol,
.dm-contact-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 24px;
  padding-left: 22px;
}

.dm-legal-page a,
.dm-contact-page a {
  color: var(--dm-secondary-dark);
  font-weight: 800;
}

.dm-legal-identity {
  margin: 28px 0 36px;
  padding: 26px;
  border: 1px solid var(--dm-border);
  border-left: 4px solid var(--dm-secondary);
  border-radius: var(--dm-radius);
  background: #fffaf0;
}

.dm-legal-identity h2 {
  margin-top: 0;
}

.dm-legal-identity dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.dm-legal-identity div {
  padding: 12px;
  border-radius: var(--dm-radius);
  background: var(--dm-white);
}

.dm-legal-identity dt {
  color: var(--dm-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dm-legal-identity dd {
  margin: 3px 0 0;
  color: var(--dm-primary);
  font-weight: 800;
}

.dm-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.dm-contact-grid article,
.dm-contact-help {
  padding: 24px;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.dm-contact-grid h3 {
  margin: 0 0 10px;
  color: var(--dm-primary);
}

.dm-contact-grid p {
  margin: 0 0 8px;
  font-weight: 900;
}

.dm-contact-grid span {
  color: var(--dm-muted);
  font-size: 0.92rem;
}

.dm-story-page {
  --story-rose: #c0395b;
  --story-rose-dark: #8b2244;
  --story-gold: #c9963a;
  --story-gold-light: #e8c97a;
  --story-night: #0e0d1a;
  --story-ink: #1c1b2e;
  --story-cream: #fbf7f2;
  --story-blush: #f7ebf0;
  overflow: hidden;
  background: var(--story-cream);
  color: var(--story-ink);
}

.dm-story-page p {
  margin-top: 0;
}

.dm-story-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 76px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 72px 20px;
  background: var(--story-night);
  color: var(--dm-white);
  text-align: center;
}

.dm-story-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dm-story-star {
  position: absolute;
  border-radius: 999px;
  background: var(--dm-white);
  opacity: var(--op, 0.35);
  animation: dm-story-twinkle var(--d, 3s) ease-in-out infinite alternate;
}

@keyframes dm-story-twinkle {
  from { opacity: var(--op, 0.2); }
  to { opacity: calc(var(--op, 0.35) * 2.2); }
}

.dm-story-line {
  width: 1px;
  height: 90px;
  margin: 0 auto 34px;
  background: linear-gradient(to bottom, transparent, var(--story-gold), transparent);
}

.dm-story-eyebrow,
.dm-story-label {
  color: var(--story-gold);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.42rem;
  text-transform: uppercase;
}

.dm-story-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

.dm-story-hero h1 span {
  color: var(--story-rose);
  font-style: italic;
}

.dm-story-subtitle {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
}

.dm-story-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  color: var(--story-gold);
}

.dm-story-ornament span {
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.dm-story-ornament i {
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.26rem;
}

.dm-story-quote {
  padding: 70px 20px;
  background: var(--story-night);
}

.dm-story-quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 34px;
  border-left: 2px solid var(--story-rose);
  color: var(--dm-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.dm-story-quote p {
  max-width: 900px;
  margin: 24px auto 0;
  padding-left: 36px;
  color: var(--story-gold);
  font-size: 0.78rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

.dm-story-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 20px;
}

.dm-story-section > p:not(.dm-story-label):not(.dm-story-lead):not(.dm-story-closing) {
  color: #2a2535;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.9;
}

.dm-story-lead {
  color: var(--story-rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 1.75rem);
  font-style: italic;
  line-height: 1.55;
}

.dm-story-founders,
.dm-story-name {
  background: var(--story-blush);
}

.dm-founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dm-founder-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(192, 57, 91, 0.15);
  border-radius: var(--dm-radius);
  background: rgba(255, 255, 255, 0.62);
}

.dm-founder-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--story-rose), var(--story-gold));
}

.dm-founder-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--story-rose);
  color: var(--dm-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.dm-founder-card:nth-child(2) .dm-founder-initial {
  background: var(--story-ink);
}

.dm-founder-card h2 {
  margin: 0 0 4px;
  color: var(--story-ink);
  font-family: Georgia, "Times New Roman", serif;
}

.dm-founder-role {
  color: var(--story-rose);
  font-size: 0.74rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
}

.dm-founder-card p:last-child {
  color: #4a4060;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
}

.dm-story-dark {
  background: var(--story-ink);
}

.dm-story-dark .dm-story-section > p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.dm-story-dark .dm-story-lead {
  color: var(--story-gold-light) !important;
}

.dm-story-highlight {
  margin: 38px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(201, 150, 58, 0.34);
  border-bottom: 1px solid rgba(201, 150, 58, 0.34);
  color: var(--dm-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.dm-story-name {
  padding: 76px 20px;
  text-align: center;
}

.dm-story-name p {
  margin: 0 0 22px;
  color: rgba(28, 27, 46, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
}

.dm-story-name span {
  color: var(--story-rose);
  font-style: italic;
}

.dm-story-name em {
  color: rgba(28, 27, 46, 0.42);
  font-style: normal;
}

.dm-story-name small {
  color: var(--story-rose);
  font-size: 0.78rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
}

.dm-story-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 38px 0;
  color: var(--story-gold);
}

.dm-story-divider span {
  width: 120px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.dm-story-closing {
  color: var(--story-rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
}

.dm-story-promise {
  padding: 76px 20px;
  background: var(--story-rose);
  color: var(--dm-white);
  text-align: center;
}

.dm-story-promise h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.dm-story-promise p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08rem;
}

.dm-story-promise a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--dm-radius);
  color: var(--dm-white);
  font-weight: 900;
  text-transform: uppercase;
}

.dm-shop-search {
  position: relative;
  max-width: 720px;
  margin-top: 22px;
}

.dm-shop-search input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius);
  outline: 0;
}

.dm-shop-search input[type="search"]:focus {
  border-color: var(--dm-secondary);
}

.dm-shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding: 42px 0 70px;
}

.dm-shop-sidebar {
  align-self: start;
  padding: 24px;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.dm-shop-sidebar h2,
.dm-shop-sidebar h3 {
  margin: 0 0 16px;
  color: var(--dm-primary);
}

.dm-shop-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dm-shop-sidebar a {
  color: var(--dm-text);
  font-size: 0.95rem;
}

.dm-shop-sidebar a:hover {
  color: var(--dm-secondary);
}

.dm-shop-main .woocommerce-result-count {
  margin: 0 0 18px;
}

.dm-shop-main .woocommerce-ordering {
  margin: 0 0 24px;
}

.dm-shop-main .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.input-text {
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius);
  background: var(--dm-white);
  color: var(--dm-text);
  outline: 0;
}

.dm-shop-main .woocommerce-ordering select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus {
  border-color: var(--dm-secondary);
}

.dm-single-product {
  padding: 48px 0 72px;
}

.dm-breadcrumbs {
  margin-bottom: 28px;
  color: var(--dm-muted);
  font-size: 0.9rem;
}

.dm-breadcrumbs a:hover {
  color: var(--dm-secondary);
}

.dm-single-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 58px;
}

.dm-product-gallery__main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.dm-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dm-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.dm-product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
  cursor: pointer;
}

.dm-product-gallery__thumb.is-active {
  border-color: var(--dm-secondary);
}

.dm-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dm-single-product__brand {
  margin: 0 0 8px;
  color: var(--dm-muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dm-single-product h1 {
  margin: 0 0 16px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.dm-single-product__price {
  margin: 22px 0;
  color: var(--dm-secondary);
  font-size: 2rem;
  font-weight: 900;
}

.dm-single-product__summary {
  margin: 0 0 24px;
  color: var(--dm-text);
  font-size: 1.02rem;
}

.dm-product-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.dm-product-meta-grid span {
  display: block;
  color: var(--dm-muted);
  font-size: 0.84rem;
}

.dm-product-meta-grid strong {
  display: block;
  color: var(--dm-primary);
}

.dm-single-product form.cart {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 26px 0;
}

.dm-single-product .quantity input.qty,
.woocommerce .quantity input.qty {
  width: 76px;
  min-height: 46px;
  border: 2px solid var(--dm-border);
  border-radius: var(--dm-radius);
  text-align: center;
}

.dm-single-product .single_add_to_cart_button {
  flex: 1;
}

.dm-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.dm-assurance {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.dm-assurance__icon {
  flex: 0 0 auto;
  color: var(--dm-secondary);
  font-weight: 900;
}

.dm-assurance strong {
  display: block;
  color: var(--dm-primary);
  font-size: 0.92rem;
}

.dm-assurance span {
  color: var(--dm-muted);
  font-size: 0.82rem;
}

.woocommerce-tabs {
  margin: 40px 0 56px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--dm-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  content: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 16px 0;
  color: var(--dm-muted);
  font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--dm-primary);
  box-shadow: inset 0 -2px 0 var(--dm-secondary);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 28px 0 0;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  margin: 0 0 28px;
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--dm-secondary);
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--dm-secondary);
}

.woocommerce-error::before {
  color: var(--dm-danger);
}

.woocommerce table.shop_table {
  border: 1px solid var(--dm-border);
  border-radius: var(--dm-radius);
  overflow: hidden;
}

.woocommerce table.shop_table th {
  color: var(--dm-primary);
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: var(--dm-border);
  padding: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 24px;
  border-radius: var(--dm-radius);
  background: var(--dm-light);
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-account h2 {
  color: var(--dm-primary);
  font-family: Georgia, "Times New Roman", serif;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--dm-radius);
  background: var(--dm-white);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--dm-primary);
  color: var(--dm-white);
}

.dm-footer {
  background: var(--dm-primary);
  color: var(--dm-white);
}

.dm-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding: 64px 0 42px;
}

.dm-footer h3,
.dm-footer h4 {
  margin: 0 0 18px;
  color: var(--dm-white);
}

.dm-footer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.dm-footer p,
.dm-footer li,
.dm-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.dm-footer a:hover {
  color: var(--dm-secondary);
}

.dm-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dm-footer__badges,
.dm-footer__socials,
.dm-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dm-footer__badge,
.dm-footer__social,
.dm-footer__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: var(--dm-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--dm-white);
  font-size: 0.85rem;
  font-weight: 700;
}

.dm-footer__social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.dm-footer__social:hover {
  background: var(--dm-secondary);
  color: var(--dm-primary);
}

.dm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .dm-header__search {
    display: none;
  }

  .dm-home-hero__grid,
  .dm-home-intro__grid,
  .dm-home-rituals__grid,
  .dm-home-cta__inner {
    grid-template-columns: 1fr;
  }

  .dm-home-hero h1 {
    max-width: 820px;
    font-size: 3.65rem;
  }

  .dm-home-hero__copy {
    max-width: 760px;
  }

  .dm-home-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-home-trust__link {
    justify-self: start;
  }

  .dm-feature-grid,
  .dm-products,
  .woocommerce ul.products,
  .dm-routine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.admin-bar .dm-header {
    top: 46px;
  }

  .dm-header__inner {
    min-height: 68px;
  }

  .dm-nav,
  .dm-header__actions .dm-account-link {
    display: none;
  }

  .dm-menu-toggle {
    display: inline-flex;
  }

  .dm-logo {
    font-size: 1.2rem;
  }

  .dm-logo img {
    height: 34px;
  }

  .dm-shop-layout,
  .dm-single-product__grid,
  .dm-newsletter {
    grid-template-columns: 1fr;
  }

  .dm-home-hero__media,
  .dm-home-hero__media img {
    min-height: 480px;
  }

  .dm-home-promise-grid,
  .dm-home-editorial__grid,
  .dm-home-empty {
    grid-template-columns: 1fr;
  }

  .dm-home-empty img {
    max-height: 460px;
  }

  .dm-shop-sidebar {
    order: 2;
  }

  .dm-product-section__head {
    align-items: start;
    flex-direction: column;
  }

  .dm-blog-grid {
    grid-template-columns: 1fr;
  }

  .dm-contact-grid,
  .dm-founder-grid,
  .dm-legal-identity dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dm-container {
    width: min(100% - 28px, 1200px);
  }

  .dm-section {
    padding: 58px 0;
  }

  .dm-hero {
    padding: 78px 0 84px;
  }

  .dm-home-hero {
    padding: 54px 0 44px;
  }

  .dm-home-hero h1 {
    font-size: 2.7rem;
  }

  .dm-home-intro__content h2,
  .dm-home-section-head h2,
  .dm-home-rituals__content h2,
  .dm-home-cta__inner h2 {
    font-size: 2.05rem;
  }

  .dm-home-hero__media,
  .dm-home-hero__media img {
    min-height: 390px;
  }

  .dm-home-hero__note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .dm-home-trust__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dm-home-empty > div {
    padding: 28px;
  }

  .dm-home-empty h3 {
    font-size: 1.65rem;
  }

  .dm-home-empty img,
  .dm-home-cta__inner img {
    min-height: 280px;
  }

  .dm-home-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dm-home-tabs button {
    width: 100%;
  }

  .dm-home-tab-panel {
    padding: 22px;
  }

  .dm-home-cta__inner {
    padding: 46px 0;
  }

  .dm-feature-grid,
  .dm-products,
  .woocommerce ul.products,
  .dm-routine-grid,
  .dm-assurance-grid,
  .dm-product-meta-grid {
    grid-template-columns: 1fr;
  }

  .dm-hero__actions,
  .dm-newsletter form,
  .dm-single-product form.cart {
    flex-direction: column;
  }

  .dm-company-strip__inner {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .dm-single-product form.cart .quantity input.qty {
    width: 100%;
  }

  .dm-footer__grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .dm-footer__bottom {
    align-items: start;
    flex-direction: column;
  }

  .dm-story-hero {
    min-height: 76vh;
    padding: 58px 16px;
  }

  .dm-story-quote blockquote {
    padding-left: 20px;
  }

  .dm-story-quote p {
    padding-left: 22px;
  }

  .dm-story-section {
    padding: 58px 16px;
  }

  .dm-story-divider span,
  .dm-story-ornament span {
    width: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-dm-reveal],
  [data-dm-reveal].is-visible,
  .dm-home-tab-panel.is-active {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
