:root {
  --ink: #1e160d;
  --brown: #3b250b;
  --brown-2: #563815;
  --cream: #f4f1e7;
  --sand: #e9e0cf;
  --white: #fffdf8;
  --line: rgba(59, 37, 11, 0.18);
  --muted: #766b5f;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(38, 24, 8, 0.15);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

button,
select,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

.announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 20px;
  color: var(--cream);
  background: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement span {
  margin: 0 12px;
  opacity: 0.6;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 10px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 231, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 50px;
  overflow: hidden;
}

.brand-mark img {
  position: absolute;
  top: -6px;
  left: -17px;
  width: 78px;
  max-width: none;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.24rem;
  letter-spacing: 0.13em;
}

.brand-name small {
  margin-top: 6px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cart-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button {
  justify-self: end;
  gap: 9px;
  min-height: 44px;
  padding: 4px;
  font-weight: 600;
}

.cart-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cart-count {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--brown);
  font-size: 0.72rem;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: min(760px, calc(100vh - 116px));
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 72px);
  gap: clamp(28px, 6vw, 90px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: 30px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brown-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 7vw, 7.7rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.button-dark {
  color: var(--cream);
  background: var(--brown);
}

.button-dark:hover {
  background: #241507;
}

.button-light {
  color: var(--brown);
  background: var(--cream);
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin: clamp(42px, 6vw, 72px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-product {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero-product > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 248, 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.quick-shop {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 17px;
  background: rgba(255, 253, 248, 0.91);
  box-shadow: 0 14px 32px rgba(36, 21, 7, 0.18);
  backdrop-filter: blur(14px);
}

.quick-shop p {
  margin-bottom: 2px;
  font-size: 0.88rem;
  font-weight: 700;
}

.quick-shop strong {
  font-size: 0.84rem;
}

select {
  min-width: 58px;
  min-height: 42px;
  padding: 0 26px 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.quick-add {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: var(--brown);
  font-size: 1.45rem;
  cursor: pointer;
  transition: transform 160ms ease;
}

.quick-add:hover {
  transform: rotate(10deg) scale(1.05);
}

.section {
  padding: clamp(76px, 10vw, 138px) clamp(20px, 5vw, 72px);
}

.collection {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2,
.size-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.65;
}

.filter-row {
  display: flex;
  gap: 9px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter {
  flex: 0 0 auto;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.filter span {
  margin-left: 4px;
  opacity: 0.6;
}

.filter.active,
.filter:hover {
  color: var(--cream);
  background: var(--brown);
  border-color: var(--brown);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.3vw, 34px);
}

.product-card {
  min-width: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--sand);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-label,
.size-guide-trigger {
  position: absolute;
  top: 15px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-label {
  left: 15px;
}

.size-guide-trigger {
  right: 15px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease;
}

.product-card:hover .size-guide-trigger,
.size-guide-trigger:focus-visible {
  opacity: 1;
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-category {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-info h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.product-price {
  flex: 0 0 auto;
  margin-bottom: 0;
  font-weight: 700;
}

.product-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.swatch {
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.cacao { background: #553523; }
.swatch.marfil { background: #eee8dc; }
.swatch.negro { background: #141414; }
.swatch.petroleo { background: #3f756c; }
.swatch.olivo { background: #6f7b65; }
.swatch.carbon { background: #555453; }
.swatch.azul { background: #455f78; }

.product-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.product-actions select {
  min-height: 46px;
}

.add-button {
  min-height: 46px;
  border: 1px solid var(--brown);
  border-radius: 11px;
  color: var(--brown);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
  padding: 0 14px;
  font-size: 0.86rem;
}

.add-button:hover {
  color: var(--cream);
  background: var(--brown);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--brown);
}

.lookbook img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.essence {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 9vw, 140px);
  padding: clamp(85px, 11vw, 150px) clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: var(--brown);
}

.essence-statement h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.essence .eyebrow {
  color: #ccb38f;
}

.essence-copy > p {
  max-width: 700px;
  margin-bottom: clamp(40px, 7vw, 86px);
  color: #e0d6c6;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.55;
}

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

.values article {
  padding-top: 18px;
  border-top: 1px solid rgba(244, 241, 231, 0.25);
}

.values span {
  color: #ccb38f;
  font-size: 0.72rem;
  font-weight: 700;
}

.values h3 {
  margin: 24px 0 10px;
  font-size: 1rem;
}

.values p {
  margin-bottom: 0;
  color: #c9bdad;
  font-size: 0.86rem;
}

.size-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(48px, 10vw, 150px);
  align-items: start;
}

.size-intro {
  max-width: 420px;
  margin-top: 22px;
  color: var(--muted);
}

.size-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tbody th {
  font-family: "Manrope", sans-serif;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.size-table-wrap > p {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.cta {
  display: grid;
  min-height: 440px;
  place-items: center;
  align-content: center;
  padding: 70px 20px;
  color: var(--cream);
  background: linear-gradient(135deg, #231407, #563815);
  text-align: center;
}

.cta .eyebrow {
  color: #ccb38f;
}

.cta h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 70px clamp(20px, 5vw, 72px) 28px;
  background: #17100a;
  color: #e8dfd2;
}

.footer-brand img {
  width: 128px;
  mix-blend-mode: screen;
  filter: sepia(1) brightness(1.6);
}

.footer-brand p {
  margin: 12px 0 0;
  color: #aa9f91;
}

footer h2 {
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer a,
footer > div > button {
  display: block;
  margin: 11px 0;
  padding: 0;
  border: 0;
  color: #bbb0a2;
  background: transparent;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
}

footer a:hover,
footer > div > button:hover {
  color: var(--cream);
}

.copyright {
  grid-column: 1 / -1;
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #887e72;
  font-size: 0.76rem;
}

.drawer-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(20, 13, 6, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 230ms ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  box-shadow: -25px 0 60px rgba(20, 13, 6, 0.22);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.cart-drawer .eyebrow {
  margin-bottom: 6px;
}

.close-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 82px;
  height: 103px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 4px 0 3px;
  font-size: 0.92rem;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-controls button {
  width: 32px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-controls span {
  min-width: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.item-price {
  font-size: 0.82rem;
  font-weight: 700;
}

.remove-item {
  display: block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.7rem;
  text-decoration: underline;
  cursor: pointer;
}

.empty-cart {
  display: grid;
  flex: 1;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-cart > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--brown);
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.empty-cart h3 {
  margin-bottom: 6px;
}

.empty-cart p {
  max-width: 250px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.87rem;
}

.cart-summary {
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px 0 0;
  color: var(--ink);
  background: var(--white);
}

.cart-summary.visible {
  display: grid;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}

.cart-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.checkout-button {
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: #1b7b44;
  font-weight: 700;
  cursor: pointer;
}

.checkout-button span {
  margin-left: 6px;
}

.size-dialog {
  width: min(500px, calc(100% - 32px));
  padding: 32px;
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.size-dialog::backdrop {
  background: rgba(20, 13, 6, 0.6);
}

.size-dialog .close-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.size-dialog h2 {
  margin-bottom: 22px;
  font-size: 1.8rem;
}

.fit-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.fit-options div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.fit-options span {
  color: var(--muted);
  font-size: 0.8rem;
}

.size-dialog > a {
  font-weight: 700;
  text-decoration: underline;
}

.toast {
  position: fixed;
  z-index: 80;
  bottom: 26px;
  left: 50%;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 14px 34px rgba(18, 92, 51, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
}

.whatsapp-float:hover {
  background: #188247;
}

:focus-visible {
  outline: 3px solid #c38d43;
  outline-offset: 3px;
}

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

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 6px;
    justify-self: center;
  }

  .menu-button span {
    width: 22px;
    height: 1.5px;
    background: currentColor;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 14px 30px rgba(38,24,8,.08);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3.8rem, 8vw, 5.8rem);
  }

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

  .essence-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 8px 16px;
  }

  .brand-name {
    display: none;
  }

  .cart-button > span:not(.cart-count) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 16px 16px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-facts {
    margin-top: 42px;
  }

  .hero-facts div + div {
    padding-left: 13px;
  }

  .hero-facts dd {
    font-size: 0.67rem;
  }

  .hero-product {
    min-height: 560px;
  }

  .quick-shop {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 13px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .product-image {
    aspect-ratio: 4 / 4.8;
  }

  .size-guide-trigger {
    opacity: 1;
  }

  .essence {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .values h3 {
    margin-top: 12px;
  }

  .size-section {
    grid-template-columns: 1fr;
  }

  .size-table-wrap {
    margin-right: -4px;
    margin-left: -4px;
  }

  th,
  td {
    padding: 16px 12px;
  }

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

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

@media (max-width: 480px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-product {
    min-height: 480px;
  }

  .quick-shop p {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fit-options {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 15px;
  }
}

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