/*
Theme Name: VERDA 21
Theme URI: https://flatzer.com
Author: Flatzer
Author URI: https://flatzer.com
Description: A high-fidelity WooCommerce demonstration theme for the fictional VERDA 21 skincare laboratory.
Version: 1.0.0
Requires at least: 7.0
Tested up to: 7.0
Requires PHP: 8.2
Text Domain: verda21
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --ink: #10231d;
  --ink-soft: #2c3c35;
  --paper: #f5f6f0;
  --paper-deep: #e9ece4;
  --white: #fff;
  --leaf: #b7e56d;
  --leaf-soft: #dff1bd;
  --cobalt: #2c49d8;
  --mineral: #d9e0da;
  --fog: #c8d0ca;
  --line: rgba(16, 35, 29, 0.18);
  --line-light: rgba(255, 255, 255, 0.3);
  --display: "Syne", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 64px));
  --shadow: 0 24px 70px rgba(9, 24, 18, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  display: block;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto !important;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

.announcement {
  position: relative;
  z-index: 40;
  overflow: hidden;
  min-height: 34px;
  background: var(--leaf);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement p {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 0;
  padding: 8px 24px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 246, 240, 0.95);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 35, 29, 0.06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  width: max-content;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.07em;
}

.brand__number {
  margin-top: -2px;
  margin-left: 3px;
  color: var(--cobalt);
  font-size: 10px;
  letter-spacing: 0;
}

.site-nav {
  justify-self: center;
}

.site-nav__list,
.site-footer ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list {
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 22px;
}

.site-actions a {
  display: inline-flex;
  align-items: center;
}

.site-actions__cart {
  position: relative;
}

.site-actions__count {
  display: grid;
  position: absolute;
  top: -9px;
  right: -12px;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.site-main {
  overflow: clip;
}

.eyebrow,
.page-eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--leaf);
}

.button--dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
  background: var(--ink);
  color: var(--white);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link--light {
  color: var(--white);
}

.hero {
  display: grid;
  position: relative;
  min-height: calc(100vh - 112px);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 14, 0.86) 0%, rgba(7, 18, 14, 0.45) 44%, rgba(7, 18, 14, 0.04) 76%),
    linear-gradient(180deg, transparent 60%, rgba(7, 18, 14, 0.38));
  content: "";
}

.hero__media,
.hero__media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center 38%;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: end;
  padding-block: clamp(100px, 14vh, 170px) 80px;
}

.hero__copy {
  align-self: center;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 34px;
  font-size: clamp(52px, 6.4vw, 104px);
}

.hero__copy > p {
  max-width: 620px;
  margin-bottom: 38px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__formula {
  display: grid;
  justify-self: end;
  align-self: end;
  width: 170px;
  height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.hero__formula span {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.hero__formula strong {
  align-self: center;
  font-family: var(--display);
  font-size: 60px;
  line-height: 1;
}

.hero__formula small {
  align-self: end;
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
}

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

.trust-strip span {
  padding: 20px 12px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding-block: clamp(92px, 12vw, 170px);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(50px, 6.2vw, 94px);
}

.section-heading--split > p,
.section-heading--split > div:last-child {
  max-width: 430px;
  justify-self: end;
}

.section-heading--split p {
  margin-bottom: 26px;
  font-size: 17px;
}

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

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

.woocommerce ul.products li.product,
ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce ul.products li.product a img,
ul.products li.product a img {
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 0.84;
  object-fit: cover;
  background: var(--paper-deep);
  transition: transform 450ms var(--ease);
}

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

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 4px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.woocommerce ul.products li.product .price {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.woocommerce ul.products li.product .price del {
  opacity: 0.45;
}

.woocommerce ul.products li.product .price ins {
  font-weight: 700;
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 14px;
}

.woocommerce span.onsale {
  z-index: 2;
  top: 12px;
  right: 12px;
  left: auto;
  min-width: 0;
  min-height: 0;
  padding: 8px 12px;
  border-radius: 0;
  background: var(--cobalt);
  color: var(--white);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.routine-builder {
  padding-block: clamp(90px, 12vw, 160px);
  background: var(--cobalt);
  color: var(--white);
}

.routine-builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(80px, 10vw, 170px);
}

.routine-builder__intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.routine-builder h2 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(52px, 5.8vw, 88px);
}

.routine-builder__intro p {
  max-width: 470px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.routine-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.routine-steps li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 28px;
  padding-block: 36px;
  border-top: 1px solid var(--line-light);
}

.routine-steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.routine-steps > li > span {
  font-family: var(--display);
  font-size: 24px;
}

.routine-steps h3 {
  margin-bottom: 8px;
  font-size: 32px;
}

.routine-steps p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.routine-steps small {
  padding-top: 8px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ingredient-focus {
  background: var(--paper-deep);
}

.ingredient-focus__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.ingredient-focus__image {
  position: relative;
}

.ingredient-focus__image img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.image-caption {
  display: block;
  max-width: 450px;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ingredient-focus__copy h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(50px, 5.2vw, 80px);
}

.ingredient-focus__copy > p {
  max-width: 570px;
  font-size: 18px;
}

.ingredient-list {
  margin-block: 44px;
  border-top: 1px solid var(--line);
}

.ingredient-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.ingredient-list dt {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.ingredient-list dd {
  margin: 0;
  font-size: 14px;
}

.proof {
  padding-block: clamp(100px, 12vw, 165px);
  background: var(--ink);
  color: var(--white);
}

.proof__header {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 80px;
  align-items: start;
}

.proof__header h2 {
  max-width: 960px;
  margin: 0 0 80px;
  font-size: clamp(54px, 7vw, 102px);
}

.proof__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof__metrics article {
  min-height: 210px;
  padding: 32px;
  border-right: 1px solid var(--line-light);
}

.proof__metrics article:last-child {
  border-right: 0;
}

.proof__metrics strong {
  display: block;
  margin-bottom: 44px;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
}

.proof__metrics span {
  display: block;
  max-width: 170px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.proof__disclaimer {
  max-width: 760px;
  margin: 26px 0 0 auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-align: right;
}

.journal__grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.15fr;
  gap: 20px;
}

.journal__grid article {
  min-height: 480px;
  padding: 32px;
  border: 1px solid var(--line);
}

.journal__grid article:not(.journal__image) {
  display: flex;
  flex-direction: column;
}

.journal__grid article > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal__grid h3 {
  margin-top: auto;
  font-size: 33px;
  line-height: 1.05;
}

.journal__grid p {
  font-size: 14px;
}

.journal__grid a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.journal__image {
  padding: 0 !important;
  border: 0 !important;
}

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

.faq-preview {
  padding-block: clamp(90px, 10vw, 140px);
  background: var(--leaf-soft);
}

.faq-preview__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(80px, 10vw, 160px);
}

.faq-preview h2 {
  font-size: clamp(54px, 5.6vw, 84px);
}

.faq-preview header p {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--body);
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 44px 24px 0;
  margin: 0;
  font-size: 14px;
}

.newsletter {
  padding-block: 72px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
}

.newsletter h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
}

.newsletter__form > label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter__form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.newsletter input {
  min-width: 0;
  padding: 15px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.newsletter input:focus {
  outline: 0;
}

.newsletter button {
  padding: 15px 0 15px 24px;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
}

.site-footer {
  padding-block: 72px 30px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer {
  font-size: clamp(50px, 7vw, 100px);
}

.brand--footer .brand__number {
  font-size: 18px;
}

.site-footer__top p {
  max-width: 470px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-block: 52px;
}

.site-footer h3 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--leaf);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.page-shell,
.commerce-shell {
  min-height: 62vh;
  padding-block: clamp(80px, 9vw, 130px);
}

.page-shell--narrow {
  max-width: 950px;
}

.page-header {
  max-width: 980px;
  margin-bottom: 64px;
}

.page-header h1,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin: 0;
  font-size: clamp(52px, 7vw, 102px);
}

.page-content {
  max-width: 920px;
}

.prose {
  font-size: 18px;
}

.prose > * + * {
  margin-top: 1.5em;
}

.prose h2 {
  margin-top: 2em;
  font-size: clamp(36px, 4vw, 58px);
}

.prose h3 {
  margin-top: 1.8em;
  font-size: 28px;
}

.prose a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.prose ul,
.prose ol {
  padding-left: 1.2em;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-card {
  padding: 22px;
  border: 1px solid var(--line);
}

.content-card h2 {
  font-size: 26px;
}

.single-hero {
  margin: 0 0 60px;
}

.not-found {
  min-height: 70vh;
  padding-block: 140px;
}

.not-found h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(60px, 9vw, 130px);
}

.not-found p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 18px;
}

.commerce-shell .woocommerce-breadcrumb {
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 11px;
}

.commerce-shell .woocommerce-products-header {
  max-width: 900px;
  margin-bottom: 55px;
}

.commerce-shell .woocommerce-result-count,
.commerce-shell .woocommerce-ordering {
  margin-bottom: 36px;
  font-size: 12px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(60px, 8vw, 120px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product div.images img {
  background: var(--paper-deep);
}

.woocommerce div.product .summary {
  align-self: start;
  padding-top: 30px;
}

.woocommerce div.product .product_title {
  font-size: clamp(48px, 5vw, 78px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-block: 24px;
  color: var(--ink);
  font-size: 24px;
}

.woocommerce-product-details__short-description {
  max-width: 600px;
  font-size: 17px;
}

.product-context {
  margin-block: 30px;
  border-top: 1px solid var(--line);
}

.product-context div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.product-context dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-context dd {
  margin: 0;
  font-size: 13px;
}

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

.woocommerce .quantity .qty {
  min-height: 52px;
  border: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  padding-top: 60px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

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

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

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 15px 0;
  font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 850px;
  padding-block: 35px;
}

.woocommerce .related.products {
  grid-column: 1 / -1;
  padding-top: 70px;
}

.woocommerce .related.products > h2 {
  margin-bottom: 40px;
  font-size: clamp(40px, 4vw, 64px);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--cobalt);
  background: var(--white);
}

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

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

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

.woocommerce-cart table.cart img {
  width: 92px;
}

.woocommerce .cart-collaterals {
  margin-top: 50px;
}

.woocommerce .cart-collaterals .cart_totals {
  width: min(100%, 520px);
}

.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  float: none;
  width: auto;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
  grid-row: 1;
  align-self: end;
}

.woocommerce-checkout #order_review {
  grid-row: 2;
}

.woocommerce-checkout #customer_details {
  grid-row: 1 / span 3;
}

.verda21-checkout-notice {
  padding: 18px;
  margin-block: 14px;
  border: 1px solid var(--cobalt);
  background: rgba(44, 73, 216, 0.06);
}

.verda21-checkout-notice p {
  margin: 6px 0 0;
  font-size: 12px;
}

.verda21-demo-badge {
  display: grid;
  position: fixed;
  z-index: 9998;
  left: 18px;
  bottom: 18px;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--cobalt);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(12, 25, 21, 0.2);
  line-height: 1.25;
}

.verda21-demo-badge span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
}

.verda21-demo-badge small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 44px, 1200px);
  }

  .site-header__inner {
    grid-template-columns: 130px 1fr 130px;
  }

  .site-nav__list {
    gap: 20px;
  }

  .hero__content {
    grid-template-columns: 1fr auto;
  }

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

  .routine-builder__grid {
    grid-template-columns: 1fr;
  }

  .routine-builder__intro {
    position: static;
  }

  .proof__header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .journal__image {
    grid-column: 1 / -1;
    height: 600px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .announcement p {
    justify-content: flex-start;
    gap: 18px;
    overflow: hidden;
  }

  .announcement p span:nth-of-type(n + 2),
  .announcement p strong {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    margin-right: 10px;
  }

  .site-nav {
    visibility: hidden;
    position: fixed;
    z-index: -1;
    top: 101px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 44px 22px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav[data-open] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--display);
    font-size: 42px;
    line-height: 1;
  }

  .site-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .site-actions > a:first-child {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 18, 14, 0.1), rgba(7, 18, 14, 0.88) 72%);
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-block: 240px 42px;
  }

  .hero__formula {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero__copy > p {
    font-size: 17px;
  }

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

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span:nth-child(3),
  .trust-strip span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading--split,
  .ingredient-focus__grid,
  .faq-preview__grid,
  .newsletter__grid,
  .site-footer__top,
  .woocommerce div.product,
  .woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 34px;
  }

  .section-heading--split > p,
  .section-heading--split > div:last-child {
    justify-self: start;
  }

  .section-heading h2 {
    font-size: clamp(48px, 13vw, 72px);
  }

  .routine-steps li {
    grid-template-columns: 52px 1fr;
  }

  .routine-steps small {
    grid-column: 2;
  }

  .ingredient-focus__grid {
    gap: 60px;
  }

  .ingredient-focus__copy {
    order: -1;
  }

  .proof__header h2 {
    margin-bottom: 50px;
  }

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

  .proof__metrics article:nth-child(2) {
    border-right: 0;
  }

  .proof__metrics article:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .proof__disclaimer {
    text-align: left;
  }

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

  .journal__image {
    grid-column: auto;
    height: 480px;
  }

  .faq-preview__grid {
    gap: 50px;
  }

  .newsletter__grid {
    gap: 44px;
  }

  .site-footer__top {
    gap: 40px;
  }

  .site-footer__top p {
    margin-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

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

  .woocommerce div.product .summary {
    padding-top: 0;
  }

  .woocommerce div.product .woocommerce-tabs,
  .woocommerce .related.products {
    grid-column: 1;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: 1fr;
  }

  .product-edit__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 12px !important;
  }

  .product-edit__grid .woocommerce-loop-product__title {
    font-size: 15px !important;
  }

  .product-edit__grid .button {
    display: none !important;
  }

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

  .proof__metrics article,
  .proof__metrics article:nth-child(2) {
    min-height: 160px;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .proof__metrics article:first-child {
    border-top: 0;
  }

  .proof__metrics strong {
    margin-bottom: 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__form > div {
    grid-template-columns: 1fr;
  }

  .newsletter button {
    width: max-content;
    padding-left: 0;
  }

  .woocommerce table.shop_table_responsive tr td::before {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .verda21-demo-badge {
    left: 10px;
    bottom: 10px;
    min-width: 0;
  }

  .verda21-demo-badge small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
