@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

/*
 * HOME parity layer.
 * The rules below preserve the approved preview's source order. Only the
 * original interior-page block is omitted because this stylesheet is loaded
 * exclusively for the routed home surface.
 */

.sukha-premium-root {
  --font-sukha-display: Arial;
  --font-sukha-sans: "Montserrat";
  font-family: var(--font-sukha-sans), sans-serif;
}

body.sukha-premium-routed #loftloader-wrapper {
  display: none !important;
}

body.sukha-premium-active .site-header {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

body.sukha-premium-active {
  font-family: var(--font-sukha-sans), sans-serif;
}

.sukha-premium-root *,
.sukha-premium-root *::before,
.sukha-premium-root *::after {
  box-sizing: border-box;
}

.sukha-premium-root :where(h1, h2, h3, p, figure, form) {
  margin: 0;
  padding: 0;
}

.sukha-premium-root :where(button, input) {
  border-radius: 0;
}

.sukha-premium-root [hidden] {
  display: none !important;
}

.sukha-premium-root svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sukha-premium-root svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.sukha-premium-root .announcement svg {
  width: 15px;
  height: 15px;
}

.sukha-premium-root .icon-button svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.6;
}

.sukha-premium-root .menu-button svg {
  width: 23px;
  height: 23px;
}

.sukha-premium-root :where(.button, .category-copy, .mobile-panel nav, .search-results) svg {
  width: 16px;
  height: 16px;
}


:root {
  --black: #070808;
  --charcoal: #111315;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f5f5f2;
  --muted: #6d6d69;
  --line: #d9d9d4;
  --green: #0f3d2e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sukha-sans), sans-serif;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font-sukha-sans), sans-serif;
}

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

button,
input {
  border: 0;
}

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

button {
  cursor: pointer;
}

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

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

main {
  overflow: clip;
}

#contenido,
#productos,
#nosotros,
#contacto {
  scroll-margin-top: 100px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: white;
  color: black;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.announcement {
  position: absolute;
  z-index: 90;
  inset: 0 0 auto 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.announcement svg {
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 30px;
  left: 0;
  right: 0;
  width: auto;
  max-width: none;
  height: 78px;
  margin: 0;
  display: grid;
  grid-template-columns: 130px 1fr 130px;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  color: white;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: top 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  background: rgba(5, 6, 6, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13px);
}

.brand {
  width: 74px;
  height: 62px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.9vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 25px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 21px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

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

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

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart-button > span {
  position: absolute;
  top: 1px;
  right: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: black;
  font-size: 9px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  height: min(790px, 100vh);
  color: white;
  background: #0c0d0e;
}

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

.hero-image {
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.08) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 35%, rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(160px, 20vh, 210px);
}

.eyebrow {
  margin-bottom: 9px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ink);
}

.hero h1,
.campaign h2,
.story-content h2,
.newsletter h2,
.search-dialog h2 {
  font-family: var(--font-sukha-display), sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(64px, 7.2vw, 106px);
  line-height: 0.83;
}

.short-rule {
  display: block;
  width: 58px;
  height: 2px;
  margin: 0 0 16px;
  background: white;
}

.short-rule.dark {
  background: var(--ink);
}

.hero-content > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.55;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button span,
.button svg,
.text-link svg,
.category-copy svg,
.footer-store-link svg {
  transition: transform 180ms ease;
}

.button:hover span,
.button:hover svg,
.text-link:hover svg,
.category-card:hover .category-copy svg,
.footer-store-link:hover svg {
  transform: translateX(5px);
}

.button-light {
  background: white;
  color: black;
}

.button-light:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.button-dark {
  background: black;
  color: white;
}

.button-dark:hover {
  background: white;
  color: black;
  border-color: black;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 52px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-style: normal;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  min-height: 118px;
  margin: 0 auto;
  padding: 22px 40px;
  background: white;
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.55;
}

.benefit div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.benefit strong {
  font-size: 11px;
  letter-spacing: 0.03em;
}

.benefit small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.section {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0 34px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.section-heading > span {
  width: 58px;
  height: 1px;
  background: var(--ink);
}

.section-heading h2 {
  margin-bottom: 2px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.categories-section {
  padding-top: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.category-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: #d9d9d5;
  color: white;
}

.category-card img,
.category-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  object-position: center center;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.78) 100%);
}

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

.category-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 26px;
}

.category-copy h3 {
  margin-bottom: 4px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 750;
  line-height: 0.96;
  text-transform: uppercase;
}

.category-copy > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.products-section {
  padding-top: 22px;
  padding-bottom: 54px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  text-align: left;
}

.product-card {
  min-width: 0;
  background: white;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
}

.product-media > a:not(.quick-add) {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 2px;
  background: black;
  color: white;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.favorite-button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: black;
  font-size: 20px;
  transition: background 160ms ease, color 160ms ease;
}

.favorite-button.is-favorite {
  background: black;
  color: white;
}

.quick-add {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.95);
  color: black;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateY(58px);
  transition: transform 200ms ease, background 160ms ease, color 160ms ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible,
.quick-add.is-selected {
  transform: translateY(0);
}

.quick-add.is-selected {
  background: black;
  color: white;
}

.product-info {
  padding: 12px 3px 20px;
}

.product-category {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 34px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 550;
  line-height: 1.45;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 11px;
}

.product-prices del {
  color: #92928e;
  font-size: 9px;
}

.swatches {
  display: flex;
  gap: 6px;
}

.swatches span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
}

.products-cta {
  margin-top: 10px;
}

.brand-story {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  background: #090a0a;
  color: white;
}

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

.story-backdrop {
  object-fit: cover;
  object-position: center;
}

.story-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 39%, rgba(0, 0, 0, 0.68) 64%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 40%, rgba(0, 0, 0, 0.18));
}

.story-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 82px 0 72px 56%;
}

.story-content h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.88;
}

.story-content > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.65;
}

.story-content > strong {
  display: block;
  font-size: 12px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 540px;
  margin: 34px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.quality-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.quality-grid svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.35;
}

.quality-grid small {
  font-size: 9px;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid black;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.campaign {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #090a0a;
  color: white;
}

.campaign > img,
.campaign-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.campaign > img {
  object-fit: cover;
  object-position: 54% center;
}

.campaign-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.18) 61%, rgba(0, 0, 0, 0.03) 82%);
}

.campaign-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 126px;
}

.campaign h2 {
  margin-bottom: 20px;
  font-size: clamp(54px, 5.7vw, 84px);
  line-height: 0.88;
}

.campaign-content > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 27px;
  font-size: 13px;
  line-height: 1.6;
}

.hero .button,
.campaign .button {
  border-radius: 6px;
}

.community-proof {
  padding: 32px clamp(32px, 5vw, 80px) 0;
  background: white;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.voice-grid article {
  position: relative;
  min-height: 180px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: white;
}

.rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #1769aa;
}

.rating-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 0;
}

.voice-grid p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.voice-grid small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.metric-strip div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip div > svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.35;
}

.metric-strip p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0;
  text-align: left;
}

.metric-strip strong {
  font-size: 11px;
  letter-spacing: 0.03em;
}

.metric-strip span {
  color: var(--muted);
  font-size: 9px;
}

.newsletter {
  position: relative;
  display: grid;
  min-height: 590px;
  overflow: hidden;
  background: #090a0a;
  color: white;
}

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

.newsletter-backdrop {
  object-fit: cover;
  object-position: center;
}

.newsletter-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 41%, rgba(0, 0, 0, 0.66) 61%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 45%, rgba(0, 0, 0, 0.18));
}

.newsletter-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 78px 0 68px 57%;
}

.newsletter h2 {
  margin-bottom: 20px;
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.9;
}

.newsletter-content > p:not(.eyebrow) {
  max-width: 530px;
  color: #d1d1cf;
  font-size: 12px;
  line-height: 1.6;
}

.newsletter form {
  display: flex;
  max-width: 560px;
  margin: 26px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  background: white;
  color: black;
  font-size: 12px;
}

.newsletter button {
  min-width: 150px;
  padding: 0 18px;
  background: #090a0a;
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.newsletter-success {
  max-width: 560px;
  margin: 26px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.social-links svg {
  width: 15px;
  height: 15px;
}

.social-links a:hover {
  border-color: white;
}

.social-gallery {
  display: grid;
  grid-template-columns: 1.35fr repeat(6, 1fr);
  gap: 8px;
  padding: 10px clamp(24px, 4vw, 65px) 8px;
  background: #090a0a;
  color: white;
}

.social-gallery > a {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #151616;
}

.social-gallery > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.62) contrast(1.08);
  transition: transform 260ms ease;
}

.social-gallery > a:hover img {
  transform: scale(1.05);
}

.gallery-manifesto {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: center;
  column-gap: 12px;
  padding-right: 15px;
}

.gallery-manifesto > svg {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  stroke-width: 1.25;
}

.gallery-manifesto p {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.gallery-manifesto small {
  font-size: 8px;
  letter-spacing: 0.05em;
}

footer {
  padding: 44px clamp(32px, 6vw, 100px) 14px;
  background: #080909;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.82fr 1.25fr;
  gap: 0;
  width: min(1320px, 100%);
  margin: 0 auto 28px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding-right: clamp(28px, 4vw, 58px);
}

.footer-brand img {
  width: 82px;
  height: auto;
  margin: 0;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  color: #c2c2bf;
  font-size: 11px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 13px;
}

.footer-socials a {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #d9d9d6;
}

.footer-socials svg {
  width: 13px;
  height: 13px;
}

.footer-grid h3 {
  margin-bottom: 19px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(26px, 3.5vw, 52px);
  border-left: 1px solid #292a2a;
}

.footer-grid a {
  margin-bottom: 10px;
  color: #c5c5c2;
  font-size: 10.5px;
}

.footer-grid a:hover {
  color: white;
}

.payment-marks {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 10px 13px;
}

.payment-logo {
  min-width: 0;
  display: grid;
  place-items: center;
  height: 31px;
}

.payment-logo img {
  display: block;
  width: auto;
  max-width: 88px;
  height: auto;
  max-height: 31px;
  object-fit: contain;
}

.payment-webpay img {
  width: 82px;
}

.payment-visa img {
  width: 56px;
}

.payment-mastercard img {
  width: 52px;
}

.payment-amex img {
  width: 34px;
}

.payment-redcompra img {
  width: 108px;
  max-width: none;
  height: 24px;
  max-height: 24px;
  object-fit: cover;
  object-position: center;
}

.payment-redcompra {
  width: 124px;
  overflow: hidden;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-top: 11px;
  border-top: 1px solid #282828;
  color: #7e7e7b;
  font-size: 8px;
}

.mobile-drawer,
.cart-drawer,
.search-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open,
.cart-drawer.is-open,
.search-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 220ms ease;
}

.is-open > .drawer-backdrop {
  opacity: 1;
}

.mobile-panel,
.cart-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(440px, 92vw);
  overflow-y: auto;
  transition: transform 260ms cubic-bezier(0.25, 0.75, 0.2, 1);
}

.mobile-panel {
  left: 0;
  padding: 34px 32px;
  background: #090a0a;
  color: white;
  transform: translateX(-100%);
}

.mobile-drawer.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel > img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.close-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  color: white;
  font-size: 34px;
  font-weight: 200;
}

.close-button svg,
.search-close svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.close-button.dark {
  color: black;
}

.mobile-panel > .close-button {
  position: absolute;
  top: 24px;
  right: 24px;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
}

.mobile-panel nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
  border-bottom: 1px solid #2a2a2a;
  font-family: var(--font-sukha-display), sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.mobile-contact {
  display: inline-block;
  margin-top: 34px;
  color: #b5b5b2;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.search-overlay {
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(7, 8, 8, 0.97);
  color: white;
  opacity: 0;
  transition: opacity 200ms ease;
}

.search-overlay.is-open {
  opacity: 1;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 38px;
  width: 52px;
  height: 52px;
  background: transparent;
  color: white;
  font-size: 40px;
  font-weight: 200;
}

.search-dialog {
  width: min(780px, 100%);
}

.search-dialog h2 {
  margin-bottom: 28px;
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.88;
}

.search-form {
  margin: 0;
}

.search-form input[type="search"] {
  width: 100%;
  height: 62px;
  padding: 0 3px;
  border-bottom: 1px solid #6d6d69;
  background: transparent;
  color: white;
  font-size: 20px;
  outline: none;
}

.search-results {
  max-height: 44vh;
  margin-top: 20px;
  overflow-y: auto;
}

.search-results > a {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #292929;
}

.search-results img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.search-results span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-results strong {
  font-size: 11px;
}

.search-results small {
  color: #aaa;
  font-size: 10px;
}

.search-results > a > span:last-child {
  font-size: 20px;
}

.cart-panel {
  right: 0;
  padding: 38px 34px;
  background: white;
  color: black;
  transform: translateX(100%);
}

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

.cart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cart-heading h2 {
  margin-bottom: 8px;
  font-family: var(--font-sukha-display), sans-serif;
  font-size: 42px;
  line-height: 0.9;
}

.cart-note {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.cart-items {
  min-height: 200px;
  padding: 8px 0 20px;
}

.empty-cart {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #858581;
  text-align: center;
}

.empty-cart span {
  font-size: 44px;
}

.empty-cart p {
  font-size: 11px;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr 28px;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 78px;
  height: 92px;
  object-fit: cover;
}

.cart-item > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item strong {
  font-size: 10px;
  line-height: 1.4;
}

.cart-item span {
  font-size: 11px;
  font-weight: 800;
}

.cart-item a {
  color: var(--muted);
  font-size: 9px;
  text-decoration: underline;
}

.cart-item button {
  align-self: start;
  width: 28px;
  height: 28px;
  background: transparent;
  font-size: 20px;
}

.cart-store-button {
  width: 100%;
}

@media (max-width: 1180px) {
.site-header {
    grid-template-columns: 110px 1fr 150px;
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .quick-add {
    transform: translateY(0);
  }

  .story-content {
    padding-left: 52%;
  }

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

  .social-gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-manifesto {
    grid-column: 1 / -1;
    min-height: 110px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 24px;
  }

  .benefit {
    min-height: 82px;
    border-bottom: 1px solid var(--line);
  }

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

  .benefit:nth-child(3),
  .benefit:nth-child(4) {
    border-bottom: 0;
  }

  .story-content {
    padding-left: 46%;
  }

  .newsletter-content {
    padding-left: 50%;
  }

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

@media (max-width: 720px) {
  .announcement {
    height: 28px;
    gap: 6px;
    font-size: 8px;
  }

  .site-header {
    top: 28px;
    height: 66px;
    padding-inline: 16px;
    background: transparent;
  }

  .brand,
  .brand img {
    width: 58px;
    height: 58px;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .account-link {
    display: none;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 860px;
  }

  .hero-image {
    object-position: 82% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 20%, rgba(0, 0, 0, 0.78) 70%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 75%);
  }

  .hero-content {
    width: calc(100% - 34px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 0 64px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
    line-height: 0.85;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 320px;
    font-size: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .benefit-strip {
    min-height: 0;
    padding: 12px;
  }

  .benefit {
    justify-content: flex-start;
    min-height: 78px;
    gap: 10px;
    padding: 10px 12px;
  }

  .benefit-icon {
    flex-basis: 32px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit strong {
    font-size: 9px;
  }

  .benefit small {
    font-size: 8px;
  }

  .section {
    width: 100%;
    padding-inline: 16px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading > span {
    width: 28px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .category-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar,
  .voice-grid::-webkit-scrollbar,
  .social-gallery::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 78vw;
    max-width: 340px;
    scroll-snap-align: start;
  }

  .category-copy h3 {
    font-size: 24px;
  }

  .products-section {
    padding-bottom: 42px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .product-info {
    padding-bottom: 15px;
  }

  .product-info h3 {
    min-height: 48px;
    font-size: 10px;
  }

  .products-cta {
    width: 100%;
    margin-top: 15px;
  }

  .brand-story {
    min-height: 900px;
  }

  .story-backdrop {
    object-position: 38% center;
  }

  .story-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.72) 57%, rgba(0, 0, 0, 0.97) 78%, #090a0a 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 72%);
  }

  .story-content {
    width: calc(100% - 40px);
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 430px 0 36px;
  }

  .story-content h2 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .campaign {
    min-height: 650px;
  }

  .campaign > img {
    object-position: 70% center;
  }

  .campaign-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.92) 82%);
  }

  .campaign-content {
    width: calc(100% - 38px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 650px;
    padding: 0 0 45px;
  }

  .campaign h2 {
    font-size: 52px;
  }

  .community-proof {
    padding: 30px 16px 0;
  }

  .voice-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .voice-grid article {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

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

  .metric-strip div {
    min-height: 66px;
    justify-content: center;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:nth-child(2) {
    border-right: 0;
  }

  .metric-strip div:nth-child(3),
  .metric-strip div:nth-child(4) {
    border-bottom: 0;
  }

  .newsletter-content {
    width: calc(100% - 40px);
    min-height: 860px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 420px 0 44px;
  }

  .newsletter {
    min-height: 860px;
  }

  .newsletter-backdrop {
    object-position: 34% center;
  }

  .newsletter-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 39%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.96) 76%, #090a0a 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 78%);
  }

  .newsletter h2 {
    font-size: 54px;
  }

  .newsletter form {
    display: grid;
    grid-template-columns: 1fr;
    border: 0;
    gap: 8px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    height: 52px;
  }

  .newsletter button {
    border: 1px solid white;
  }

  .social-gallery {
    display: flex;
    gap: 8px;
    padding: 10px 16px 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-manifesto {
    flex: 0 0 280px;
    min-height: 140px;
    padding-right: 14px;
  }

  .social-gallery > a {
    flex: 0 0 140px;
  }

  footer {
    padding: 42px 20px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-grid > div:not(.footer-brand) {
    padding-left: 0;
    border-left: 0;
  }

  .payment-marks {
    grid-template-columns: repeat(3, max-content);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .search-overlay {
    align-items: start;
    padding: 110px 18px 30px;
  }

  .search-close {
    top: 40px;
    right: 17px;
  }

  .search-dialog h2 {
    font-size: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* v5 navigation, community, mosaic and WhatsApp polish */
.interior-site .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.interior-site .site-header.is-scrolled {
  background: rgba(5, 6, 6, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.categories-section .category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.newsletter .social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.newsletter .social-links .social-platform {
  width: auto;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  background: rgba(4, 4, 4, 0.24);
  backdrop-filter: blur(9px);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.newsletter .social-links .social-platform:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.82);
}

.newsletter .social-links .social-platform > svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.newsletter .social-links .social-platform > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.newsletter .social-links .social-platform small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.newsletter .social-links .social-platform strong {
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-bubble {
  position: fixed;
  z-index: 76;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 16px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 12, 10, 0.9);
  color: white;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-bubble:hover,
.whatsapp-bubble:focus-visible {
  transform: translateY(-3px);
  background: rgba(8, 28, 19, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.whatsapp-bubble-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: #1e9d59;
}

.whatsapp-bubble-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-bubble-icon i {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid #08100c;
  border-radius: 50%;
  background: #65e39b;
}

.whatsapp-bubble-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 2px;
}

.whatsapp-bubble-copy small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.whatsapp-bubble-copy strong {
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .categories-section .category-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .newsletter .social-links {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .newsletter .social-links .social-platform {
    height: 54px;
    gap: 9px;
    padding: 0 12px;
  }

  .whatsapp-bubble {
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    padding: 3px;
  }

  .whatsapp-bubble-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .whatsapp-bubble-copy {
    display: none;
  }
}

/* WordPress/WooCommerce compatibility without changing the approved layout. */
.sukha-premium-root .woocommerce-Price-amount,
.sukha-premium-root .woocommerce-Price-currencySymbol {
  font: inherit;
}

.sukha-premium-root .hero .button,
.sukha-premium-root .campaign .button {
  border-radius: 6px;
}

.sukha-premium-root .favorite-button,
.sukha-premium-root .icon-button,
.sukha-premium-root .close-button,
.sukha-premium-root .search-close {
  padding: 0;
}

.sukha-premium-root .search-results [hidden] {
  display: none !important;
}

body.sukha-premium-active.admin-bar .site-header {
  top: 62px;
}

body.sukha-premium-active.admin-bar .announcement {
  top: 32px;
}

body.sukha-premium-active.admin-bar .site-header.is-scrolled {
  top: 32px;
}

.sukha-premium-preview-bar + .sukha-premium-root .announcement {
  top: 42px;
}

.sukha-premium-preview-bar + .sukha-premium-root .site-header {
  top: 72px;
}

.sukha-premium-preview-bar + .sukha-premium-root .hero {
  margin-top: 42px;
}

@media (max-width: 782px) {
	body.sukha-premium-active.admin-bar .announcement {
	  top: 46px;
	}

  body.sukha-premium-active.admin-bar .site-header {
    top: 74px;
  }

  body.sukha-premium-active.admin-bar .site-header.is-scrolled {
    top: 46px;
  }
}

/* 2.3.0: mobile account access and unified Sukha signature footer. */
.footer-accordion {
  min-width: 0;
  padding-left: clamp(26px, 3.5vw, 52px);
  border-left: 1px solid #292a2a;
}

.footer-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 19px;
  list-style: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: default;
}

.footer-accordion > summary::-webkit-details-marker {
  display: none;
}

.footer-accordion-icon {
  display: none;
}

.footer-accordion-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 721px) {
  .footer-accordion:not([open]) > .footer-accordion-content {
    display: flex !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 58px minmax(0, 1fr) 160px;
  }

  .header-actions {
    grid-column: 3;
  }

  .account-link {
    display: grid;
  }

  .mobile-account-link {
    color: #fff;
  }

  .social-gallery {
    display: grid;
    grid-template-columns: 112px repeat(6, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 10px 0;
    overflow: hidden;
    background: #080909;
  }

  .social-gallery > a {
    min-width: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-manifesto {
    grid-column: auto;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
    padding: 4px 5px 4px 0;
  }

  .gallery-manifesto > svg {
    width: 26px;
    height: 26px;
  }

  .gallery-manifesto p {
    margin: 0 0 3px;
    font-size: 7px;
    line-height: 1.35;
  }

  .gallery-manifesto small {
    font-size: 6.5px;
  }

  footer.sukha-signature-footer {
    margin: 0;
    padding: 16px 14px 11px;
    border-top: 0;
    background: #080909;
  }

  .sukha-signature-footer .footer-grid {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 0 14px;
    margin-bottom: 0;
  }

  .sukha-signature-footer .footer-brand {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 13px 0 0;
    border-right: 1px solid #292a2a;
  }

  .sukha-signature-footer .footer-brand img {
    width: 58px;
  }

  .sukha-signature-footer .footer-brand-copy {
    text-align: center;
  }

  .sukha-signature-footer .footer-brand p {
    margin: 0;
    font-size: 7.5px;
    line-height: 1.45;
  }

  .sukha-signature-footer .footer-socials {
    justify-content: center;
    margin-top: 7px;
  }

  .sukha-signature-footer .footer-accordion {
    grid-column: 2;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #292a2a;
  }

  .sukha-signature-footer .footer-accordion > summary {
    min-height: 40px;
    margin: 0;
    display: flex;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
  }

  .sukha-signature-footer .footer-accordion-icon {
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
  }

  .sukha-signature-footer .footer-accordion-content {
    padding: 0 0 10px;
  }

  .sukha-signature-footer .footer-accordion-content > a {
    margin-bottom: 6px;
    font-size: 7.5px;
  }

  .sukha-signature-footer .footer-payment-accordion {
    border-bottom: 0;
  }

  .sukha-signature-footer .payment-marks {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .sukha-signature-footer .payment-logo {
    width: auto;
    height: 22px;
    overflow: hidden;
  }

  .sukha-signature-footer .payment-logo img {
    max-width: 100%;
    max-height: 19px;
  }

  .sukha-signature-footer .payment-webpay img { width: 45px; }
  .sukha-signature-footer .payment-visa img { width: 28px; }
  .sukha-signature-footer .payment-mastercard img { width: 27px; }
  .sukha-signature-footer .payment-amex img { width: 21px; }
  .sukha-signature-footer .payment-redcompra { width: auto; }
  .sukha-signature-footer .payment-redcompra img { width: 43px; height: auto; object-fit: contain; }

  .sukha-signature-footer .footer-bottom {
    width: calc(100% - 116px);
    margin: 7px 0 0 116px;
    padding-top: 7px;
    justify-content: flex-start;
    border-top: 0;
    font-size: 6.8px;
    text-align: left;
  }
}
