/*
 * Interdit by Rose — Beauty Store 4.0
 * Modern editorial retail layer for the homepage and WooCommerce.
 */

:root {
  --ink: #241016;
  --ink-soft: #715f64;
  --berry: #741433;
  --berry-dark: #4f0b23;
  --rose: #d99ca3;
  --rose-soft: #efd4d2;
  --blush: #e8b7b7;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --line: rgba(36, 16, 22, .18);
  --shadow: 0 24px 70px rgba(59, 25, 34, .1);
  --radius: 0;
  --container: 1360px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .005em;
}

.container {
  width: min(calc(100% - 64px), var(--container));
}

.display-title,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--berry);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.eyebrow::before {
  width: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
}

.section-heading p {
  max-width: 580px;
  color: var(--ink-soft);
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--berry);
  border-radius: 0;
  background: var(--berry);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  box-shadow: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--berry-dark);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.button--ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--rose-soft);
  background: var(--rose-soft);
  color: var(--ink);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
}

/* Header */
.promo-bar {
  background: var(--berry-dark);
}

.promo-bar p {
  padding: 7px 20px;
  font-size: .65rem;
  letter-spacing: .16em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom-color: var(--line);
  background: rgba(247, 243, 237, .96);
}

.header-inner {
  min-height: 76px;
}

.site-logo {
  gap: 8px;
  font-size: 1.95rem;
}

.site-logo .brand-script {
  color: var(--berry);
}

.site-logo small {
  color: var(--ink);
  font-size: .43rem;
  letter-spacing: .18em;
}

.primary-navigation ul {
  gap: 30px;
}

.primary-navigation a {
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.primary-navigation a::after {
  bottom: -10px;
}

.icon-link,
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.icon-link:hover,
.menu-toggle:hover {
  background: transparent;
  color: var(--berry);
}

/* Editorial hero */
.hero {
  min-height: 730px;
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  min-height: 730px;
  gap: 0;
}

.hero-copy {
  display: flex;
  max-width: none;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 8vw, 132px) clamp(42px, 7vw, 112px);
  background: var(--cream);
}

.hero-index {
  margin-bottom: clamp(70px, 10vh, 126px);
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .19em;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.3vw, 7rem);
  font-weight: 400;
  letter-spacing: -.07em;
}

.hero h1 em {
  color: var(--berry);
  font-weight: 400;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.hero-actions {
  gap: 12px;
}

.hero-note {
  gap: 8px 30px;
  margin-top: 28px;
  color: var(--ink);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-note span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--berry);
}

.hero-product {
  position: relative;
  display: grid;
  width: auto;
  justify-self: stretch;
  place-items: center;
  padding: 72px clamp(28px, 5vw, 84px);
  border: 0;
  border-radius: 0;
  background: var(--blush);
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.hero-product::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 50%;
  width: min(47vw, 570px);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 11, 35, .25);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-product img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: min(66vh, 610px);
  max-height: 610px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(.92) contrast(1.02);
  mix-blend-mode: multiply;
}

.hero-product-label,
.hero-product-caption {
  position: absolute;
  right: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--berry-dark);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-product-label {
  top: 22px;
}

.hero-product-caption {
  bottom: 20px;
}

/* Reassurance strip */
.trust-strip {
  border-block: 0;
  background: var(--berry-dark);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: block;
  min-height: 92px;
  padding: 25px 32px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
}

.trust-item:last-child {
  border: 0;
}

.trust-item strong {
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.trust-item span {
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Product storytelling */
.products-section,
.shade-section,
.story-section,
.reviews-section {
  padding: clamp(90px, 10vw, 148px) 0;
}

.products-section {
  background: var(--paper);
}

.products-head {
  align-items: end;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.products-head .section-heading {
  margin-bottom: 42px;
}

.products-head > .text-link {
  margin-bottom: 48px;
}

.featured-product {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: none;
}

.featured-product-media {
  display: grid;
  min-height: 680px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: var(--rose-soft);
}

.featured-product-media img {
  width: 82%;
  height: 82%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.featured-product:hover .featured-product-media img {
  transform: scale(1.025);
}

.featured-product-copy {
  align-self: center;
  max-width: 560px;
  padding: clamp(40px, 7vw, 100px);
}

.product-kicker,
.loop-product-kicker,
.single-product-kicker {
  color: var(--berry);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.featured-product-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 400;
}

.featured-product-copy > p:not(.product-kicker) {
  color: var(--ink-soft);
}

.product-shades,
.loop-product-shade {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 700;
}

.product-shades {
  margin: 26px 0 32px;
}

.product-swatch {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(36, 16, 22, .35);
}

.swatch-rose {
  background: #8f3550;
}

.shade-section {
  background: var(--rose-soft);
}

.shade-layout {
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}

.shade-editorial {
  max-width: 580px;
}

.editorial-number {
  margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.shade-editorial h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.shade-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(36, 16, 22, .2);
}

.shade-card {
  min-height: 450px;
  padding: clamp(28px, 4vw, 54px);
  border: 0;
  border-right: 1px solid rgba(36, 16, 22, .2);
  border-radius: 0;
  background: rgba(255, 253, 249, .55);
}

.shade-card:last-child {
  border-right: 0;
}

.shade-card:hover {
  background: var(--paper);
  transform: none;
}

.shade-card--dark,
.shade-card--dark:hover {
  background: var(--berry-dark);
  color: #fff;
}

.shade-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(130px, 15vw, 210px);
  color: var(--ink-soft);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.shade-card--dark .shade-card-top {
  color: rgba(255, 255, 255, .62);
}

.shade-swatch {
  width: 34px;
  height: 34px;
  margin: 0;
  border: 5px solid rgba(255, 255, 255, .65);
  box-shadow: 0 0 0 1px rgba(36, 16, 22, .2);
}

.shade-swatch.liner {
  background: #b77c83;
}

.shade-swatch.lipstick {
  background: #a52549;
}

.shade-card h3 {
  margin-bottom: 13px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 400;
}

.shade-card p {
  max-width: 300px;
  color: var(--ink-soft);
  font-size: .84rem;
}

.shade-card--dark p {
  color: rgba(255, 255, 255, .7);
}

.story-section {
  padding: 0;
  background: var(--ink);
}

.story-layout {
  grid-template-columns: 1.06fr .94fr;
  gap: 0;
}

.story-visual {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  place-items: center;
  border-radius: 0;
  background: var(--blush);
}

.story-visual::after {
  display: none;
}

.story-visual img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.story-visual span {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--berry-dark);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.story-copy {
  max-width: 720px;
  padding: clamp(70px, 9vw, 145px);
}

.story-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 5.6vw, 6.5rem);
  font-weight: 400;
}

.story-copy p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .68);
}

.reviews-section {
  background: var(--paper);
}

.reviews-grid {
  gap: 0;
  border: 1px solid var(--line);
}

.review {
  min-height: 300px;
  padding: clamp(28px, 4vw, 50px);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.review:last-child {
  border: 0;
}

.review .stars {
  margin-bottom: 92px;
  color: var(--berry);
  font-family: Georgia, serif;
  letter-spacing: 0;
}

.review h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.review p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
}

.newsletter {
  padding: 0;
  background: var(--paper);
}

.newsletter-inner {
  width: 100%;
  max-width: none;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: clamp(70px, 9vw, 130px) max(32px, calc((100vw - var(--container)) / 2));
  border-radius: 0;
  background: var(--berry);
}

.newsletter h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.newsletter-form {
  gap: 0;
}

.newsletter-form input[type="email"] {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 0;
  background: transparent;
}

.newsletter-form .button {
  min-height: 58px;
}

/* Pages */
.content-area {
  padding: 68px 0 120px;
}

.page-header {
  margin-bottom: 60px;
  padding: 50px 0 42px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.page-header h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
}

.entry-content {
  max-width: 900px;
}

.entry-content details,
.interdit-contact-wrap,
.post-card {
  border-radius: 0;
  box-shadow: none;
}

.entry-content details {
  background: var(--paper);
}

.interdit-contact-form input[type="text"],
.interdit-contact-form input[type="email"],
.interdit-contact-form textarea {
  border-radius: 0;
  background: var(--paper);
}

/* Shop archive */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-masthead {
  margin: 0 0 44px;
  padding: 42px 0 36px;
  border-bottom: 1px solid var(--line);
}

.shop-masthead-row {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 50px;
}

.shop-masthead h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -.075em;
}

.shop-masthead-row > p {
  max-width: 390px;
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.shop-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 52px;
}

.shop-category-nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shop-category-nav a:hover,
.shop-category-nav a.is-active {
  border-color: var(--berry);
  color: var(--berry);
}

.woocommerce .woocommerce-result-count {
  margin: 13px 0 38px;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 38px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  border-radius: 0;
  background: var(--paper);
}

.woocommerce ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 22px;
}

.woocommerce ul.products:has(> li.product:only-child) {
  grid-template-columns: minmax(0, 520px);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  isolation: isolate;
}

.woocommerce ul.products li.product::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgba(36, 16, 22, .08);
  background: var(--rose-soft);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 23px;
  padding: clamp(22px, 4vw, 58px);
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin-top: 7px;
  padding: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.025em;
}

.loop-product-kicker {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: .57rem;
}

.loop-product-kicker a {
  color: inherit;
}

.loop-product-shade {
  margin: 15px 0 10px;
}

.woocommerce ul.products li.product .price {
  margin-top: 12px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 850;
}

.woocommerce ul.products li.product .button {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.woocommerce ul.products li.product .button:hover {
  background: var(--ink);
  color: #fff;
}

.woocommerce span.onsale {
  top: 14px;
  left: 14px;
  padding: 9px 12px;
  border-radius: 0;
  background: var(--berry);
  font-size: .58rem;
  letter-spacing: .12em;
}

/* Single product */
.single-product .content-area {
  padding-top: 34px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: start;
  gap: 42px clamp(48px, 7vw, 105px);
  margin-top: 12px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin-bottom: 0;
}

.woocommerce div.product div.images {
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(36, 16, 22, .08);
  background: var(--rose-soft);
}

.woocommerce div.product div.images img {
  max-height: 760px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 74px;
}

.woocommerce div.product div.summary {
  position: sticky;
  top: 120px;
  padding-top: 18px;
}

.single-product-kicker {
  margin-bottom: 18px;
}

.woocommerce div.product .product_title {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 5vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 18px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.woocommerce-product-details__short-description {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: .95rem;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 10px;
  margin: 30px 0 22px;
}

.woocommerce div.product form.cart .button {
  min-height: 58px;
  flex: 1;
}

.woocommerce .quantity .qty {
  width: 70px;
  min-height: 58px;
  border-radius: 0;
  background: var(--paper);
}

.single-product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  border-block: 1px solid var(--line);
}

.single-product-benefits > div {
  padding: 20px 13px 20px 0;
  border-right: 1px solid var(--line);
}

.single-product-benefits > div + div {
  padding-left: 16px;
}

.single-product-benefits > div:last-child {
  border: 0;
}

.single-product-benefits strong,
.single-product-benefits span {
  display: block;
}

.single-product-benefits strong {
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: .96rem;
  font-weight: 400;
}

.single-product-benefits span,
.single-product-delivery {
  color: var(--ink-soft);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.single-product-delivery {
  margin-top: 16px;
}

.woocommerce div.product .product_meta {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: .66rem;
  line-height: 1.8;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
  width: 100%;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 74px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 35px;
  margin: 0 0 32px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.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 {
  display: none;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--berry);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 0;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 850px;
  color: var(--ink-soft);
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.related.products > h2,
.upsells.products > h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
}

.related.products,
.upsells.products {
  margin-top: 70px;
}

/* Cart, checkout and account */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--berry);
  background: var(--rose-soft);
}

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

.woocommerce table.shop_table {
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

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

.woocommerce table.cart img {
  width: 90px;
  background: var(--rose-soft);
  mix-blend-mode: multiply;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-account h2 {
  font-size: 2rem;
  font-weight: 400;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 58px;
  font-size: .7rem;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: 0;
  background: var(--paper);
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--rose-soft);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  margin-bottom: 44px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--line);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
  border: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 15px 18px;
  background: var(--paper);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
}

/* Footer */
.site-footer {
  padding-top: 84px;
  background: #1c0c11;
}

.footer-grid {
  gap: 70px;
}

.footer-title {
  font-size: .65rem;
  letter-spacing: .16em;
}

.footer-links a,
.footer-contact p {
  font-size: .76rem;
}

.social-links a,
.payment-list span {
  border-radius: 0;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding-inline: 48px;
  }

  .hero-index {
    margin-bottom: 70px;
  }

  .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
    gap: 46px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .primary-navigation {
    background: var(--cream);
  }

  .primary-navigation a {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 660px;
    padding: 70px max(28px, 8vw);
  }

  .hero-product {
    width: 100%;
    max-width: none;
    min-height: 680px;
    justify-self: stretch;
  }

  .hero-product::before {
    width: min(76vw, 570px);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .shade-layout,
  .story-layout,
  .newsletter-inner,
  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product-media {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-visual {
    min-height: 650px;
  }

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

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product div.summary {
    position: static;
  }

  .single-product-benefits {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: relative;
  }

  .hero-copy {
    min-height: auto;
    padding: 56px 24px 64px;
  }

  .hero-index {
    margin-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.7rem);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-grid {
    padding: 0;
  }

  .hero-product {
    width: 100%;
    max-width: none;
    min-height: 500px;
    justify-self: stretch;
    padding: 58px 20px;
  }

  .hero-product img {
    width: 100%;
    height: 410px;
  }

  .hero-product::before {
    width: 86vw;
  }

  .hero-product-label,
  .hero-product-caption {
    right: 14px;
    left: 14px;
  }

  .trust-item {
    min-height: 108px;
    padding: 22px 10px;
  }

  .products-section,
  .shade-section,
  .reviews-section {
    padding: 82px 0;
  }

  .products-head {
    display: block;
  }

  .products-head > .text-link {
    margin: -20px 0 36px;
  }

  .featured-product-media {
    min-height: 460px;
  }

  .featured-product-copy {
    padding: 38px 24px 44px;
  }

  .shade-cards {
    grid-template-columns: 1fr;
  }

  .shade-card {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shade-card:last-child {
    border-bottom: 0;
  }

  .shade-card-top {
    margin-bottom: 120px;
  }

  .story-visual {
    min-height: 500px;
  }

  .story-copy {
    padding: 76px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review .stars {
    margin-bottom: 60px;
  }

  .newsletter-inner {
    gap: 40px;
    padding: 72px 24px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .shop-masthead {
    padding-top: 16px;
  }

  .shop-masthead-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-masthead h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .shop-category-nav {
    margin-top: 35px;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-result-count {
    float: none;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .woocommerce ul.products:has(> li.product:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce div.product div.images {
    padding: 18px;
  }

  .woocommerce div.product .product_title {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .single-product-benefits {
    grid-template-columns: 1fr;
  }

  .single-product-benefits > div,
  .single-product-benefits > div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .single-product-benefits > div:last-child {
    border-bottom: 0;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .woocommerce table.shop_table_responsive tr td {
    padding: 14px;
  }
}
