/*
Theme Name: Indomables
Theme URI: https://indomables.es
Author: Indomables
Description: Tema oficial de Indomables Clothing Brand, preparado para WooCommerce.
Version: 1.2.1
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: indomables
*/

:root {
  --id-black: #070707;
  --id-ink: #111111;
  --id-paper: #f2f0ec;
  --id-red: #c5161d;
  --id-muted: #999793;
  --id-border: rgba(255, 255, 255, 0.16);
  --id-max: 1500px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--id-black);
  color: var(--id-paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.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;
}

.skip-link:focus {
  z-index: 9999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: white;
  color: black;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 4vw;
  border-bottom: 1px solid var(--id-border);
}

.site-header.is-solid {
  position: relative;
  background: #090909;
}

.brand {
  width: fit-content;
}

.brand-lockup {
  display: block;
  width: 235px;
  height: auto;
}

.brand-mark {
  flex: none;
  width: 34px;
  height: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 2px;
  color: #d2d2d2;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.primary-nav ul {
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a,
.header-shop,
.header-account {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.header-shop:hover,
.header-account:hover {
  color: var(--id-red);
}

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

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--id-red);
  color: white;
  font-size: 9px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 30px;
  padding: 5px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 4vw 9vh;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.4s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow.red {
  color: var(--id-red);
}

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

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(62px, 8.7vw, 140px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero h1 em {
  display: block;
  color: var(--id-red);
  font-style: normal;
}

.hero-intro {
  max-width: 550px;
  color: #d1d1d1;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.button-primary {
  background: var(--id-red);
  color: white;
}

.button-primary:hover {
  background: #df1820;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.scroll-note {
  position: absolute;
  right: 4vw;
  bottom: 9vh;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.scroll-note::before {
  content: "";
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.7);
}

.statement-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 19px 3vw 16px;
  background: var(--id-red);
  white-space: nowrap;
}

.statement-strip p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section {
  padding: 120px 4vw;
}

.section-inner {
  width: min(100%, var(--id-max));
  margin: 0 auto;
}

.collection {
  background: var(--id-paper);
  color: var(--id-ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}

.section h2,
.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 6vw, 94px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.section-lead {
  margin-bottom: 4px;
  color: #55524e;
  font-size: 16px;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #161616;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.015);
  transition: transform 550ms ease, opacity 550ms ease;
}

.category-card:hover img {
  opacity: 0.88;
  transform: scale(1.045);
}

.category-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 36px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.category-overlay p {
  color: #d2d2d2;
  font-size: 10px;
  letter-spacing: 0.17em;
}

.category-overlay h3 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.category-overlay span {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.concept-note {
  margin: 18px 0 0;
  color: #6f6c67;
  font-size: 11px;
}

.products-section {
  background: #e6e2dc;
  color: var(--id-ink);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 55px;
}

.products-header a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 17px;
  background: #d4d0ca;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  color: var(--id-ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price {
  color: #5f5b55;
  font-size: 13px;
}

.woocommerce ul.products li.product .button {
  display: none;
}

.empty-collection {
  grid-column: 1 / -1;
  padding: 70px 30px;
  border: 1px solid #c3beb6;
  text-align: center;
}

.empty-collection strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.empty-collection p {
  margin: 0;
  color: #68635c;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10vw;
  padding: 140px 8vw;
  background: #0a0a0a;
}

.manifesto-index {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: var(--id-red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.manifesto-index span {
  font-size: 46px;
  letter-spacing: -0.06em;
}

.manifesto-copy p {
  max-width: 900px;
  margin-bottom: 11px;
  font-size: clamp(25px, 3.1vw, 49px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.manifesto-rule {
  width: 80px;
  height: 4px;
  margin: 45px 0;
  background: var(--id-red);
}

.origin {
  position: relative;
  min-height: 680px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background: #d9d5ce;
  color: #111;
}

.origin-year {
  position: absolute;
  left: -3vw;
  bottom: -0.19em;
  color: #c9c4bb;
  font-size: min(39vw, 620px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.095em;
}

.origin-content {
  position: relative;
  z-index: 2;
  width: min(540px, 48vw);
}

.origin-content > p:not(.eyebrow) {
  max-width: 475px;
  margin: 35px 0;
  color: #4f4c48;
  font-size: 17px;
  line-height: 1.65;
}

.origin-content strong {
  display: block;
  padding-left: 18px;
  border-left: 4px solid var(--id-red);
  font-size: 19px;
  line-height: 1.25;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  padding: 110px 8vw;
  background: var(--id-red);
}

.newsletter h2 {
  font-size: clamp(44px, 5.5vw, 82px);
}

.newsletter-form label {
  display: block;
  margin-bottom: 25px;
  font-size: 13px;
}

.newsletter-form-row {
  display: flex;
  border-bottom: 2px solid white;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form button {
  width: 52px;
  border: 0;
  background: transparent;
  color: white;
  cursor: not-allowed;
  font-size: 24px;
}

.newsletter-form small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 80px 4vw 35px;
  background: #050505;
}

.footer-brand .brand-mark {
  width: 64px;
  margin: 0;
}

.footer-brand strong {
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: -0.035em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px 45px;
  color: #b1b1b1;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 45px 0 0;
  padding-top: 25px;
  border-top: 1px solid #282828;
  color: #666;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-credit {
  color: #8c8984;
}

.content-shell {
  min-height: 70vh;
  padding: 80px 4vw 120px;
  background: var(--id-paper);
  color: var(--id-ink);
}

.content-shell > * {
  width: min(100%, var(--id-max));
  margin-right: auto;
  margin-left: auto;
}

.content-shell h1,
.content-shell .page-title {
  margin: 0 0 45px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.content-shell h2,
.content-shell h3 {
  letter-spacing: -0.03em;
}

.content-shell a:not(.button):not(.wp-element-button) {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.woocommerce-breadcrumb {
  margin: 0 0 28px !important;
  color: #77716a !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 32px;
  color: #6e6962;
  font-size: 12px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  border: 1px solid #bdb8b0;
  border-radius: 0;
  background: white;
  color: var(--id-ink);
}

.woocommerce .woocommerce-ordering select {
  padding: 0 42px 0 14px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 13px 14px;
}

.woocommerce form .form-row textarea {
  min-height: 130px;
}

.woocommerce form .form-row label {
  margin-bottom: 7px;
  color: #5d5851;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.woocommerce form .form-row .required {
  color: var(--id-red);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 46px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  background: var(--id-red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #9f1016;
  color: white;
}

.woocommerce a.remove {
  color: var(--id-red) !important;
}

.woocommerce a.remove:hover {
  background: var(--id-red);
  color: white !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 18px 18px 18px 50px;
  border-top-width: 3px;
  background: white;
  color: var(--id-ink);
  border-top-color: var(--id-red);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--id-red);
}

.woocommerce table.shop_table {
  border: 1px solid #c9c4bc;
  border-collapse: collapse;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 18px;
  border-color: #d2cdc5;
}

.woocommerce table.shop_table th {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 190px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bdb8b0;
}

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

.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 28px;
  border: 1px solid #c9c4bc;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
}

.woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.woocommerce-checkout #customer_details::before,
.woocommerce-checkout #customer_details::after {
  display: none;
}

.woocommerce-checkout #customer_details > div {
  width: auto;
  float: none;
}

.woocommerce-checkout #order_review_heading {
  margin-top: 55px;
}

.woocommerce-checkout #payment {
  border-radius: 0;
  background: #ddd8d0;
}

.woocommerce-checkout #payment div.payment_box {
  background: white;
  color: var(--id-ink);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: white;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 60px;
}

.woocommerce div.product .product_title {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--id-red);
  font-size: 23px;
  font-weight: 800;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 32px;
}

.woocommerce div.product form.cart .button {
  flex: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: #bdb8b0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 4px 0 0;
  border-radius: 0;
  border-color: #bdb8b0;
  background: #ddd8d0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: white;
}

.woocommerce-MyAccount-navigation {
  width: 26%;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c9c4bc;
}

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid #c9c4bc;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 15px 4px;
  color: #605b54;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation .is-active a {
  color: var(--id-red);
}

.woocommerce-MyAccount-content {
  width: 70%;
}

.content-shell .wc-block-components-button:not(.is-link) {
  min-height: 50px;
  border: 0;
  border-radius: 0;
  background: var(--id-red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-shell .wc-block-components-button:not(.is-link):hover {
  background: #9f1016;
  color: white;
}

.content-shell .wc-block-components-button:focus,
.content-shell .wc-block-components-text-input input:focus,
.content-shell .wc-block-components-combobox-control input:focus {
  outline: 2px solid var(--id-red);
  outline-offset: 2px;
}

.content-shell .wc-block-components-text-input input,
.content-shell .wc-block-components-combobox-control input,
.content-shell .wc-block-components-address-form select {
  border: 1px solid #bdb8b0;
  border-radius: 0;
  background: white;
  color: var(--id-ink);
}

.content-shell .wc-block-components-text-input label,
.content-shell .wc-block-components-combobox-control label {
  color: #68625b;
}

.content-shell .wc-block-components-product-name {
  color: var(--id-ink);
  font-weight: 800;
  text-transform: uppercase;
}

.content-shell .wc-block-cart-items,
.content-shell .wc-block-components-sidebar,
.content-shell .wc-block-checkout__main {
  color: var(--id-ink);
}

.content-shell .wc-block-cart-items {
  border-bottom: 1px solid #c9c4bc;
}

.content-shell .wc-block-cart-items th,
.content-shell .wc-block-cart-items td,
.content-shell .wc-block-components-totals-wrapper {
  border-color: #c9c4bc;
}

.content-shell .wc-block-components-sidebar {
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.content-shell .wc-block-components-order-summary .wc-block-components-panel__button,
.content-shell .wc-block-components-totals-item__label,
.content-shell .wc-block-components-checkout-step__title {
  font-weight: 800;
}

.content-shell .wc-block-components-checkout-step__heading {
  border-bottom: 1px solid #c9c4bc;
}

.content-shell .wc-block-components-notice-banner {
  border-radius: 0;
}

.content-shell .wp-block-woocommerce-empty-cart-block {
  padding: 55px 20px;
  border: 1px solid #c9c4bc;
  background: rgba(255, 255, 255, 0.45);
}

.content-shell .wp-block-woocommerce-empty-cart-block h2 {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em;
}

@keyframes hero-in {
  from {
    transform: scale(1.04);
    opacity: 0.3;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    background: rgba(5, 5, 5, 0.98);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    z-index: 40;
    visibility: visible;
    opacity: 1;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .primary-nav a {
    font-size: 24px;
  }

  .header-shop,
  .header-account {
    display: none;
  }

  .brand-lockup {
    width: 190px;
  }

  .hero {
    min-height: 860px;
    padding: 130px 20px 85px;
  }

  .hero-media {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.18) 77%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 82px);
  }

  .hero-intro {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-note {
    display: none;
  }

  .statement-strip {
    justify-content: flex-start;
    padding-left: 20px;
  }

  .section {
    padding: 85px 20px;
  }

  .section-heading,
  .category-grid,
  .manifesto,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
    margin-bottom: 45px;
  }

  .category-card,
  .category-main {
    min-height: 450px;
  }

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

  .woocommerce-checkout #customer_details {
    grid-template-columns: 1fr;
  }

  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }

  .manifesto {
    gap: 55px;
    padding: 90px 20px;
  }

  .manifesto-copy p {
    font-size: 28px;
  }

  .origin {
    min-height: 700px;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 90px;
  }

  .origin-year {
    top: 15px;
    bottom: auto;
    font-size: 42vw;
  }

  .origin-content {
    width: 100%;
  }

  .newsletter {
    gap: 65px;
    padding: 85px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 70px 20px 30px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .content-shell {
    padding: 60px 20px 90px;
  }

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

  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 100%;
  }

  .woocommerce .cart_totals,
  .woocommerce-checkout-review-order,
  .woocommerce .woocommerce-MyAccount-content,
  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    padding: 20px;
  }

  .content-shell .wc-block-components-sidebar {
    padding: 20px;
  }
}

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

  .hero-media {
    animation: none;
  }

  .category-card img,
  .primary-nav,
  .menu-toggle span {
    transition: none;
  }
}
