:root {
  --green: #408858;
  --green-dark: #197850;
  --yellow: #ffef13;
  --ink: #112433;
  --muted: #7b8e9d;
  --text-soft: #888;
  --white: #ffffff;
  --soft: #f4f7fc;
  --warm: #fff3ee;
  --border: #eceff8;
  --shadow: 0 12px 34px rgba(17, 36, 51, .08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: var(--ink);
}

a { color: var(--green); transition: color .3s ease, background .3s ease, border-color .3s ease; }
a:hover { color: var(--yellow); }

h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: 38px; }
h2 { font-size: 35px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 30px;
}

.site-shell {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(17, 36, 51, .06);
}

.header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-bar {
  min-height: 62px;
  background: var(--green);
  border-bottom: 3px solid #ffd799;
}

.contact-inner {
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
}

.top-contact-list,
.top-social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.top-contact-list span,
.top-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.top-contact-list a:hover {
  color: var(--yellow);
}

.top-social-list {
  gap: 8px;
}

.top-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  color: #7c3c21 !important;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.top-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.top-icon svg circle,
.top-icon svg path {
  stroke: currentColor;
}

.top-login-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.top-login-icon svg circle,
.top-login-icon svg path {
  fill: none;
  stroke: currentColor;
}

.top-icon:hover {
  background: var(--white);
  color: #7c3c21 !important;
}

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

.mainbar-inner {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand-logo {
  display: flex;
  align-items: center;
  min-width: 250px;
  color: var(--ink);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.brand-logo img {
  display: block;
  width: min(250px, 42vw);
  max-height: 72px;
  object-fit: contain;
}

.brand-logo span {
  display: none;
  padding: 10px 16px;
  border: 2px solid var(--green);
  background: var(--warm);
  color: var(--green);
}

.brand-logo img:not([src]), .brand-logo img[src=""] { display: none; }
.brand-logo img:-moz-broken + span { display: inline-block; }

.main-nav,
.admin-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.main-nav a,
.main-nav button,
.admin-nav a {
  color: #596369;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.nav-dropdown {
  position: relative;
  display: block;
}

.nav-dropdown-toggle {
  position: relative;
  padding-right: 14px;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  z-index: 70;
  width: 250px;
  padding: 0;
  display: grid;
  gap: 0;
  background: var(--white);
  border: 0;
  box-shadow: 0 18px 38px rgba(17, 36, 51, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-item {
  min-height: 50px;
  padding: 16px 20px;
  display: block !important;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  text-transform: none !important;
  color: #596369 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: var(--white);
  color: var(--green) !important;
}

.main-nav a:hover,
.main-nav button:hover,
.main-nav a.active,
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--green);
}

.menu-pill {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green) !important;
  font-size: 20px !important;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-pill svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-pill:hover,
.menu-pill:focus-visible {
  background: var(--green);
  color: var(--white) !important;
}

.public-drawer-active {
  overflow: hidden;
}

.public-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 36, 51, .48);
}

.public-contact-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(332px, 92vw);
  height: 100vh;
  padding: 54px 24px 36px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform .28s ease;
  background: var(--green);
  color: var(--white);
  box-shadow: -16px 0 36px rgba(17, 36, 51, .22);
}

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

.public-drawer-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 28px;
  height: 28px;
  padding: 0 0 2px;
  border: 3px solid var(--yellow);
  border-radius: 2px;
  background: transparent;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
}

.public-drawer-logo {
  display: block;
  width: 100%;
  margin: 0 0 30px;
}

.public-drawer-logo img {
  display: block;
  width: min(250px, 100%);
  max-height: 96px;
  object-fit: contain;
}

.public-drawer-divider {
  height: 1px;
  margin: 0 0 26px;
  background: var(--yellow);
}

.public-contact-drawer section {
  margin-bottom: 32px;
}

.public-contact-drawer h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.public-contact-drawer p {
  margin: 0;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.public-drawer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adminbar {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.2);
}

.adminbar-inner {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.adminbar-label {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-nav a { color: var(--white); }
.admin-nav a:hover, .admin-nav a.active { color: var(--yellow); }

.language-form { margin: 0; }

.language-form select {
  width: auto;
  margin: 0;
  padding: 10px 30px 10px 12px;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--yellow);
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.public-container { padding-top: 0; }
.admin-container { padding-top: 28px; }

.card {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.card.small {
  max-width: 460px;
  margin: 48px auto;
}

label {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(64, 136, 88, .12);
}

button,
.button,
.btn-brand {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

button:hover,
.button:hover,
.btn-brand:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}

.button.secondary,
.btn-secondary-brand {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.button.secondary:hover,
.btn-secondary-brand:hover {
  background: var(--green);
  color: var(--white);
}

.logout-form { margin: 0; }
.logout-form button { padding: 12px 18px; }
.adminbar .logout-form button { border-color: var(--white); background: transparent; }
.adminbar .logout-form button:hover { border-color: var(--yellow); background: var(--yellow); }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(17, 36, 51, .05);
}

th,
td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: var(--ink);
  font-size: 14px;
}

th {
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

tr:hover td { background: var(--soft); }
tbody tr:last-child td { border-bottom: 0; }

small { color: var(--muted); line-height: 1.6; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 2px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.badge.active { background: var(--green); }
.badge.inactive { background: var(--text-soft); }
.badge.warning { background: var(--yellow); color: var(--ink); }

.actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.actions form {
  display: flex;
  gap: 10px;
  flex: 1;
}

.actions input { margin-top: 0; }

.page-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.page-title-row p {
  margin-bottom: 0;
}

.page-title-row .actions {
  justify-content: flex-end;
  margin-bottom: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.dashboard-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.dashboard-card p {
  margin: 0;
  line-height: 1.5;
}

.dashboard-transactions {
  padding: 26px;
}

.dashboard-transactions table {
  margin-top: 18px;
  box-shadow: none;
}

.dashboard-section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dashboard-section-title h2 {
  margin-bottom: 6px;
  font-size: 26px;
}

.dashboard-section-title p {
  margin-bottom: 0;
}

.transaction-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.detail-list {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.detail-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.alert {
  padding: 14px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: var(--white);
}

.success { border-color: rgba(64, 136, 88, .35); color: var(--green-dark); }
.error { border-color: rgba(250, 181, 34, .55); color: #9b4d12; }
.validation { color: #b45309; margin: 12px 0; }
.auth-help {
  margin: 18px 0 0;
  font-size: 14px;
}

.auth-help a {
  color: var(--green);
  font-weight: 500;
}

pre {
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  border-radius: 2px;
  overflow: auto;
  font-size: 13px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.edit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.edit-form textarea { min-height: 110px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkbox-row {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.checkbox-row input {
  width: auto;
  margin: 0;
  accent-color: var(--green);
}

.metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 22px;
}

.product-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(17, 36, 51, .06);
}

.preview-card h2,
.card h2 { margin-top: 0; }

.product-preview {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 36, 51, .06);
}

.empty-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border: 1px dashed var(--border);
  border-radius: 2px;
  color: var(--muted);
  background: var(--soft);
}

.preview-card dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 14px;
}

.preview-card dt {
  color: var(--muted);
  font-weight: 500;
}

.preview-card dd { margin: 0; color: var(--ink); }

.variant-section-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.variant-section-header p {
  margin-bottom: 0;
}

.variant-add-form {
  padding: 18px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  background: var(--soft);
}

.variant-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.variant-form-grid label {
  margin-top: 0;
}

.variant-form-grid input {
  margin-top: 6px;
}

.variant-active-check,
.variant-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.variant-active-check input,
.variant-inline-check input {
  width: auto;
  margin: 0;
  accent-color: var(--green);
}

.variant-table-input {
  min-width: 92px;
  margin: 0;
  padding: 9px 10px;
}

.variant-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.variant-actions button,
.variant-actions .button {
  padding: 10px 14px;
  white-space: nowrap;
}

.button.danger {
  border-color: #b45309;
  color: #b45309;
}

.button.danger:hover {
  border-color: #b45309;
  background: #b45309;
  color: var(--white);
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 48%, rgba(255,255,255,.65) 100%),
    url("/img/logo-la-herencia.png") center right 8% / min(520px, 48vw) auto no-repeat,
    var(--warm);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 660px;
  padding: 84px 72px;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero p {
  max-width: 600px;
  margin-bottom: 28px;
}

.hero .button { padding: 20px 45px; }

.home-hero-swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 720px;
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-hero-slide {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 46%, rgba(255,255,255,.24) 100%),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgba(17,36,51,.26);
  font-size: clamp(28px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.home-hero-media[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 44%, rgba(255,255,255,.06) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 90px 24px;
}

.home-hero-content h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: #408858;
  font-size: clamp(54px, 6vw, 65px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-hero-content p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #212121;
  font-size: 18px;
  line-height: 30px;
}

.home-hero-content .button {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 22px 45px;
  position: relative;
  text-transform: capitalize;
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  vertical-align: middle;
  background: #408858;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
}

.home-hero-swiper .swiper-button-next,
.home-hero-swiper .swiper-button-prev {
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: none;
}

.home-hero-swiper .swiper-button-prev {
  left: 40px;
}

.home-hero-swiper .swiper-button-next {
  right: 40px;
}

.home-hero-swiper .swiper-button-next:hover,
.home-hero-swiper .swiper-button-prev:hover {
  background: var(--green-dark);
}

.home-hero-swiper .swiper-button-next::after,
.home-hero-swiper .swiper-button-prev::after {
  content: "";
  display: none;
}

.home-hero-swiper .swiper-button-next i,
.home-hero-swiper .swiper-button-prev i {
  width: 35%;
  height: 35%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-hero-swiper .swiper-button-next svg,
.home-hero-swiper .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-pagination {
  display: none;
}

.welcome-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 24px 108px;
  background-image: url('/img/about_bk.png');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.welcome-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 52px;
  align-items: center;
}

.welcome-image {
  min-height: 440px;
}

.welcome-image img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(17, 36, 51, .06);
}

.welcome-image-placeholder {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd7e6;
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  color: var(--text-soft);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(17, 36, 51, .06);
}

.welcome-copy h1 {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
}

.welcome-copy p {
  max-width: 520px;
  margin-bottom: 0;
  padding-right: 5px;
  color: #7b8e9d;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}

.welcome-copy .button {
  margin-top: 28px;
}

.brands-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 92px 24px 112px;
  background-image: url('/img/bg1_1.jpg');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.section-heading {
  width: min(1200px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading span {
  display: block;
  width: 76px;
  height: 4px;
  margin: 0 auto 24px;
  background: var(--green);
}

.section-heading-mark {
  display: block;
  width: auto;
  max-width: 88px;
  height: auto;
  margin: 0 auto 24px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 54px;
  font-weight: 500;
}

.brands-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.brand-card {
  min-height: 430px;
  padding: 72px 64px 58px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow .3s ease, transform .3s ease;
}

.brand-card:hover {
  box-shadow: 0 18px 42px rgba(17, 36, 51, .16);
  transform: translateY(-4px);
}

.brand-card .brand-logo,
.brand-logo-placeholder {
  width: min(340px, 100%);
  min-height: 90px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd7e6;
  background: var(--soft);
  color: var(--text-soft);
  font-weight: 400;
  text-transform: uppercase;
}

.brand-card .brand-logo {
  border: 0;
  background: transparent;
}

.brand-card .brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 120px;
  margin: 0 auto;
  object-fit: contain;
}

.brand-card h3 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
}

.brand-card p {
  max-width: 520px;
  margin: 0 auto 28px;
  font-weight: 400;
  line-height: 28px;
}

.brand-card .button {
  padding: 17px 34px;
}

.brand-card .button span {
  margin-left: 10px;
}

.products-showcase-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 92px 24px 112px;
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(120deg, transparent 0 58px, rgba(17,36,51,.045) 58px 60px, transparent 60px 116px);
}

.product-tabs {
  width: min(420px, 100%);
  margin: -28px auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.product-tab {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 28px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
}

.product-tab + .product-tab {
  border-left: 1px solid var(--border);
}

.product-tab:hover,
.product-tab.active {
  background: transparent;
  color: var(--green);
}

.product-tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 78px;
  height: 14px;
  background: url('/img/barrita.png') center / contain no-repeat;
}

.tab-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tab-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.products-panel {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.products-panel[hidden] {
  display: none;
}

.showcase-product-card {
  text-align: center;
}

.showcase-product-image,
.showcase-image-placeholder {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,.62), rgba(255,255,255,.62)),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  color: var(--text-soft);
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(17, 36, 51, .05);
}

.showcase-product-image {
  background: var(--white);
}

.showcase-product-image img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.showcase-product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
}

.why-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 24px 112px;
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(135deg, transparent 0 64px, var(--soft) 64px 66px, transparent 66px 128px);
}

.why-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  gap: 92px;
  align-items: center;
}

.why-image,
.why-image-placeholder {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd7e6;
  background:
    linear-gradient(rgba(255,255,255,.56), rgba(255,255,255,.56)),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  color: var(--text-soft);
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(17, 36, 51, .06);
}

.why-image {
  border: 0;
  background: transparent;
}

.why-image img {
  display: block;
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}

.why-copy h2 {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 400;
}

.why-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.why-copy strong {
  color: var(--muted);
  font-weight: 500;
}

.home-gallery-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 88px 0 0;
  background: var(--white);
}

.home-gallery-section .section-heading {
  margin-bottom: 64px;
}

.home-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 0 28px;
}

.home-gallery-item,
.gallery-placeholder {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,.54), rgba(255,255,255,.54)),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  color: var(--text-soft);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(17, 36, 51, .04);
}

.home-gallery-item {
  border: 0;
  background: transparent;
  overflow: hidden;
}

.home-gallery-item img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.home-logo-showcase {
  width: min(1200px, calc(100% - 48px));
  margin: 50px auto 0;
  padding: 0;
  position: relative;
  z-index: 1;
  background-image: url('/img/bg5.jpg');
  background-size: cover;
  background-position: 50%;
}

.public-page {
  min-height: 360px;
  padding: 84px 72px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.public-page h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
}

.public-page p {
  max-width: 760px;
}

.gallery-viewer-section {
  width: 100vw;
  min-height: calc(100vh - 200px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 28px 0 0;
  background: var(--white);
}

.gallery-counter {
  width: min(1320px, 100%);
  margin: 0 auto 12px;
  padding: 0 22px;
  color: var(--ink);
  font-size: 18px;
  display: none!important;
}

.gallery-main-swiper {
  width: 100%;
  min-height: 660px;
}

.gallery-slide {
  min-height: 660px;
  margin: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
}

.gallery-large-placeholder {
  width: min(760px, calc(100vw - 180px));
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    repeating-linear-gradient(135deg, #fff 0 30px, var(--soft) 30px 60px);
  color: var(--text-soft);
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(17, 36, 51, .06);
}

.gallery-large-image {
  display: block;
  width: min(760px, calc(100vw - 180px));
  max-height: 560px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(17, 36, 51, .06);
}

.gallery-slide figcaption {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}

.gallery-main-swiper .swiper-button-next,
.gallery-main-swiper .swiper-button-prev {
  width: 68px;
  height: 68px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: none;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.gallery-main-swiper .swiper-button-prev {
  left: 40px;
}

.gallery-main-swiper .swiper-button-next {
  right: 40px;
}

.gallery-main-swiper .swiper-button-next:hover,
.gallery-main-swiper .swiper-button-prev:hover {
  background: var(--green-dark);
}

.gallery-main-swiper .swiper-button-next::after,
.gallery-main-swiper .swiper-button-prev::after {
  content: "";
  display: none;
}

.gallery-main-swiper .swiper-button-next i,
.gallery-main-swiper .swiper-button-prev i {
  width: 35%;
  height: 35%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-swiper .swiper-button-next svg,
.gallery-main-swiper .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-main-swiper .swiper-button-next svg path,
.gallery-main-swiper .swiper-button-prev svg path {
  fill: currentColor;
}

.gallery-thumbs-swiper {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
}

.gallery-thumbs-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  transform: none !important;
}

.gallery-thumb {
  width: auto !important;
  min-height: 74px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    repeating-linear-gradient(135deg, #fff 0 12px, #e9eef7 12px 24px);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 74px;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.active,
.gallery-thumbs-swiper .swiper-slide-thumb-active {
  border-color: var(--green);
  color: var(--green);
}

.legacy-products-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 24px 96px;
  background: var(--white);
}

.legacy-products-status {
  width: min(1200px, 100%);
  min-height: 24px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.legacy-products-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 30px;
}

.legacy-product-card {
  text-align: center;
}

.legacy-product-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
}

.legacy-product-image img {
  width: 86%;
  height: 86%;
  display: block;
  object-fit: contain;
}

.legacy-product-card h2 {
  margin: 24px 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.legacy-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.legacy-product-card p span {
  display: block;
}

.legacy-products-pagination {
  width: min(1200px, 100%);
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.page-hero {
  width: 100vw;
  min-height: 474px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    repeating-linear-gradient(135deg, #fff 0 28px, var(--soft) 28px 56px);
}

.page-hero-about-us,
.page-hero-contact,
.page-hero-store,
.page-hero-our-products,
.page-hero-shopbersys,
.page-hero-gallery {
  background-image:
    linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)),
    url('/img/banner-products.jpg');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.page-hero-content {
  width: min(1200px, 100%);
  padding: 70px 24px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 62px;
  font-weight: 400;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 400;
}

.page-breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

.page-breadcrumb span[aria-hidden="true"] {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.about-intro-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 24px 110px;
  background: var(--white);
}

.about-intro-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 80px;
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
}

.about-copy h2 + p {
  margin-bottom: 34px;
}

.about-copy p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.about-copy strong {
  font-weight: 500;
}

.about-image-wrap {
  position: relative;
  padding: 0 0 64px 0;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, rgba(64,136,88,.22) 0 2px, transparent 2px 8px);
  z-index: 0;
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd7e6;
  background:
    linear-gradient(rgba(255,255,255,.54), rgba(255,255,255,.54)),
    repeating-linear-gradient(135deg, #fff 0 24px, var(--soft) 24px 48px);
  color: var(--text-soft);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(17, 36, 51, .06);
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(17, 36, 51, .06);
}

.values-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 78px 24px 96px;
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
    repeating-linear-gradient(135deg, transparent 0 58px, var(--soft) 58px 60px, transparent 60px 116px);
}

.values-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 132px;
  height: 132px;
  margin: 0 auto 48px;
  color: var(--green);
}

.value-icon svg,
.value-icon img {
  width: 100%;
  height: 100%;
}

.value-icon img {
  display: block;
  object-fit: contain;
}

.value-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon svg path:first-child,
.value-icon svg circle {
  fill: none;
}

.value-card h2 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 24px;
  font-weight: 400;
}

.value-card p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.contact-info-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 24px 104px;
  background: var(--white);
}

.contact-info-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.contact-info-card {
  min-height: 430px;
  padding: 54px 60px;
  border: 1px solid #dfe5ea;
  background: var(--white);
}

.contact-info-card.featured {
  border-color: var(--green);
}

.contact-info-card h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-wave {
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 34px;
  background: var(--green);
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  overflow-wrap: anywhere;
}

.contact-info-card hr {
  width: 42px;
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: #dfe5ea;
}

.contact-info-card:nth-child(3) p {
  color: var(--green);
}

.store-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 74px 24px 110px;
  background:
    linear-gradient(rgba(244,247,252,.78), rgba(244,247,252,.78)),
    repeating-linear-gradient(135deg, transparent 0 58px, rgba(17,36,51,.035) 58px 60px, transparent 60px 116px);
}

.store-filters {
  width: min(1200px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap: 16px;
  align-items: end;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.store-filters label {
  margin-top: 0;
}

.store-filters input {
  margin-top: 8px;
}

.store-status {
  width: min(1200px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.store-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 28px;
}

.store-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(17, 36, 51, .14);
}

.store-card-image {
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
}

.store-card-image.missing {
  border-bottom: 1px dashed var(--border);
  background: var(--white);
}

.store-missing-image {
  color: #c5ccd4;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-card-body {
  padding: 0 18px 18px;
}

.store-card h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.store-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 16px;
}

.store-cart {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a8b0b8;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.store-cart:hover,
.store-cart:focus {
  color: var(--green);
  background: transparent;
}

.store-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.4;
}

.store-pagination {
  width: min(1200px, 100%);
  margin: 54px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-button {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: #8d7fa8;
  font-weight: 600;
}

.page-button.active,
.page-button:hover:not(:disabled) {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.page-button:disabled {
  opacity: .45;
  cursor: default;
}

.cart-added-active {
  overflow: hidden;
}

.cart-added-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 36, 51, .4);
}

.cart-added-message {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 36, 51, .24);
}

.cart-added-message[hidden] {
  display: none !important;
}

.cart-added-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.cart-added-close:hover,
.cart-added-close:focus {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.cart-added-message strong {
  color: #1f2328;
  font-size: 24px;
  font-weight: 500;
}

.cart-added-message > div {
  display: grid;
  gap: 28px;
  width: min(200px, 100%);
}

.cart-message-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: #2f9b91;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.cart-message-button:hover {
  background: var(--green);
  color: var(--white);
}

.cart-drawer-active {
  overflow: hidden;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(17, 36, 51, .56);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(448px, 92vw);
  height: 100vh;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform .28s ease;
  background: var(--white);
  box-shadow: -18px 0 40px rgba(17, 36, 51, .18);
}

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

.cart-drawer-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 54px);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.cart-drawer-content {
  padding: 34px 28px 44px;
}

.cart-product-category {
  margin-bottom: 34px;
  color: var(--green);
  font-size: 13px;
  text-align: right;
}

.cart-product-image {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.cart-product-image img {
  width: min(270px, 100%);
  max-height: 270px;
  object-fit: contain;
}

.cart-drawer h2 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-product-code,
.cart-product-description {
  margin: 0 0 8px;
  color: #4e5b66;
  font-size: 14px;
  line-height: 24px;
}

.cart-drawer h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
}

.cart-options {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  border: 0;
}

.cart-options label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #4e5b66;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}

.cart-options input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.cart-quantity-label {
  display: block;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.cart-quantity-control {
  width: 120px;
  height: 42px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--green);
  border-radius: 6px;
  overflow: hidden;
}

.cart-quantity-control button {
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--green);
  font-size: 25px;
  line-height: 1;
}

.cart-quantity-control button:hover {
  background: var(--green);
  color: var(--white);
}

.cart-quantity-control input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.cart-drawer-actions button {
  width: 100%;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.cart-add-button {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.cart-cancel-button {
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.cart-add-button:hover,
.cart-cancel-button:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.checkout-section {
  width: 100vw;
  min-height: 720px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 24px 110px;
  background: #eef1f5;
}

.checkout-layout {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .8fr);
  gap: 16px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 48px;
}

.checkout-card {
  padding: 16px;
  border: 1px solid #dbe1e7;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(17, 36, 51, .14);
}

.checkout-card h1,
.checkout-card h2 {
  margin: 0 0 4px;
  color: #1f2328;
  font-size: 21px;
  font-weight: 500;
}

.checkout-card > p {
  margin: 0 0 18px;
  color: #53616f;
  font-size: 14px;
  line-height: 22px;
}

.checkout-contact-grid,
.delivery-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-bottom: 16px;
}

.delivery-fields {
  margin-top: 18px;
}

.delivery-fields[hidden] {
  display: none !important;
}

.delivery-fields input:nth-child(4),
.delivery-fields input:nth-child(5) {
  grid-column: auto;
}

.checkout-contact-grid input,
.delivery-fields input {
  min-height: 42px;
  margin: 0;
  border: 1px solid #111;
  border-radius: 6px;
  background: var(--white);
}

.fulfillment-options {
  display: grid;
  gap: 12px;
}

.fulfillment-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #53616f;
  font-size: 14px;
}

.fulfillment-options input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.checkout-cart-list {
  display: grid;
  gap: 0;
}

.checkout-cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px 0 18px;
  border-bottom: 1px solid #dbe1e7;
  align-items: start;
}

.checkout-cart-item img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.checkout-cart-item h3 {
  margin: 0 0 6px;
  color: #1f2328;
  font-size: 21px;
  font-weight: 500;
}

.checkout-cart-item p {
  margin: 0 0 4px;
  color: #53616f;
  font-size: 12px;
  line-height: 18px;
}

.checkout-cart-item strong {
  color: #1f2328;
  font-size: 20px;
}

.checkout-cart-item button {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff4050;
  font-size: 14px;
  font-weight: 400;
}

.checkout-empty {
  margin: 18px 0 0 !important;
}

.checkout-summary {
  position: sticky;
  top: 20px;
  padding: 16px;
}

.checkout-summary hr {
  margin: 26px 0 16px;
  border: 0;
  border-top: 1px solid #d3d9df;
}

.checkout-summary span {
  display: block;
  margin-bottom: 22px;
  color: #53616f;
  font-size: 14px;
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.checkout-total-row strong:first-child {
  color: #53616f;
  font-size: 20px;
}

.checkout-total-row strong:last-child {
  color: #14181d;
  font-size: 38px;
}

.checkout-status {
  min-height: 22px;
  margin-top: 4px;
  color: #ff4050;
  font-size: 14px;
  font-weight: 500;
}

.checkout-summary button,
.checkout-summary a {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.checkout-summary button:hover,
.checkout-summary a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.done-section {
  width: 100vw;
  min-height: 680px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 82px 24px 110px;
  background: #eef1f5;
}

.done-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #dbe1e7;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(17, 36, 51, .14);
}

.done-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
}

.done-card h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 38px;
}

.done-status {
  margin-bottom: 24px;
  color: #53616f;
  font-weight: 500;
}

.voucher {
  display: grid;
  gap: 24px;
}

.voucher-header,
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.voucher-header div,
.voucher-grid div {
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--soft);
}

.voucher span,
.voucher h2 {
  display: block;
  margin: 0 0 8px;
  color: #53616f;
  font-size: 13px;
  font-weight: 500;
}

.voucher strong,
.voucher p {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.voucher-table {
  width: 100%;
  border-collapse: collapse;
}

.voucher-table th,
.voucher-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.voucher-table th {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.voucher-table td span {
  margin-top: 4px;
}

.voucher-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}

.voucher-total strong {
  font-size: 30px;
}

.done-store-link {
  width: max-content;
  margin-top: 28px;
  display: inline-flex;
  padding: 14px 26px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.done-store-link:hover {
  background: var(--yellow);
  color: var(--ink);
}

.payment-cancel-section {
  width: 100vw;
  min-height: 560px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 100px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1f5;
}

.payment-cancel-card {
  width: min(680px, 100%);
  padding: 42px;
  border: 1px solid #dbe1e7;
  border-radius: 10px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 2px 8px rgba(17, 36, 51, .14);
}

.payment-cancel-card span {
  color: #ff4050;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.payment-cancel-card h1 {
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: 34px;
}

.payment-cancel-card p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.payment-cancel-card a {
  display: inline-flex;
  padding: 14px 26px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.payment-cancel-card a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.site-footer {
  margin-top: 96px;
  position: relative;
  overflow: hidden;
  background-image: url('/img/bg6.jpg');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  color: var(--white);
}

.site-footer.home-footer {
  margin-top: 0;
  padding-top: 190px;
}

.site-footer::before {
  content: none;
}

.site-footer.plain-footer {
  padding-top: 72px;
  background-image: url('/img/bg6.jpg');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.site-footer.plain-footer::before {
  content: none;
}

.site-footer.plain-footer .footer-inner {
  margin-top: 0;
}

.footer-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 280px;
  margin: 0 auto;
  margin-bottom: -120px;
  padding: 64px 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background-image: url('/img/bg5.jpg');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0 30px 30px 0 rgba(89,89,89,.28);
  box-shadow: 0 30px 30px 0 rgba(89,89,89,.28);
}

.footer-showcase-logo {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-showcase-logo img {
  display: block;
  max-width: min(360px, 100%);
  max-height: 130px;
  object-fit: contain;
}

.footer-message-card {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 100px 100px;
  background:
    linear-gradient(rgba(244,247,252,.94), rgba(244,247,252,.94)),
    repeating-linear-gradient(135deg, transparent 0 58px, rgba(17,36,51,.045) 58px 60px, transparent 60px 116px);
  box-shadow: var(--shadow);
}

.site-footer .footer-message-card h2 {
  margin: 0 0 40px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  text-transform: none;
}

.contact-message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
}

.contact-message-form .wide {
  grid-column: 1 / -1;
}

.contact-message-form input,
.contact-message-form textarea {
  margin: 0;
  border-color: #dfe5ea;
  background: var(--white);
  color: var(--ink);
}

.contact-message-form input::placeholder,
.contact-message-form textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.contact-message-form button {
  grid-column: 1 / -1;
  width: min(330px, 100%);
  margin: 6px auto 0;
}

.footer-logo-placeholder,
.footer-main-logo-placeholder {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cfd7e6;
  background: var(--soft);
  color: var(--text-soft);
  font-weight: 400;
  text-transform: uppercase;
}

.footer-main-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 34px;
  display: block;
}

.footer-main-logo img {
  display: block;
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 58px;
}

.footer-brand,
.footer-contact,
.footer-join { min-width: 0; }

.footer-social {
  display: grid;
  gap: 12px;
  align-items: start;
}

.footer-social-link {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 0;
  background: transparent;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
}

.footer-social-link svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--yellow);
  color: #7c3c21;
}

.footer-social-link span {
  color: var(--white);
}

.footer-social-link:hover {
  background: transparent;
  color: var(--white) !important;
}

.footer-social-link:hover svg {
  background: var(--white);
}

.site-footer h2 {
  margin: 0;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-contact h2 { text-transform: none; }

.footer-wave {
  width: 72px;
  height: 3px;
  margin: 22px 0 28px;
  background: var(--yellow);
}

.site-footer p {
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 400;
  line-height: 24px;
}

.footer-join p { max-width: 330px; }

.footer-form {
  display: grid;
  gap: 10px;
  max-width: 330px;
}

.footer-form input {
  margin: 0;
  border: 0;
  background: rgba(25, 120, 80, .64);
  color: var(--white);
}

.footer-form input::placeholder {
  color: var(--white);
  opacity: .9;
}

.footer-form button {
  width: max-content;
  padding: 14px 24px;
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  text-transform: uppercase;
}

.footer-form button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.footer-copy {
  position: relative;
  z-index: 1;
  margin: 72px 18px 22px !important;
  text-align: center;
  color: rgba(255,255,255,.76) !important;
}

.footer-copy strong { color: var(--yellow); }

@media (max-width: 1100px) {
  .gallery-thumbs-swiper .swiper-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  h1 { font-size: 34px; }
  h2 { font-size: 30px; }

  .header-inner,
  .container { padding-left: 18px; padding-right: 18px; }

  .mainbar-inner,
  .adminbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-contact-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav,
  .admin-nav {
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: 0 10px 24px rgba(17, 36, 51, .1);
  }

  .brand-logo img { width: min(230px, 78vw); }

  .actions,
  .actions form {
    align-items: stretch;
    flex-direction: column;
  }

  .page-title-row,
  .dashboard-grid,
  .dashboard-section-title,
  .transaction-detail-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .edit-layout,
  .form-grid,
  .variant-form-grid,
  .footer-showcase,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 460px;
    background:
      linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
      url("/img/logo-la-herencia.png") center bottom 28px / min(320px, 80vw) auto no-repeat,
      var(--warm);
  }

  .hero-copy,
  .public-page {
    padding: 42px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .home-hero-swiper,
  .home-hero-slide {
    min-height: 520px;
  }

  .home-hero-media {
    align-items: flex-end;
    padding-bottom: 48px;
    background:
      linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.82)),
      repeating-linear-gradient(135deg, #fff 0 20px, var(--soft) 20px 40px);
    font-size: 32px;
  }

  .home-hero-content {
    padding: 58px 24px 110px;
  }

  .home-hero-content h2 {
    font-size: 42px;
  }

  .home-hero-swiper .swiper-button-next,
  .home-hero-swiper .swiper-button-prev {
    display: none;
  }

  .welcome-section {
    padding: 64px 18px 72px;
  }

  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .welcome-image,
  .welcome-image img,
  .welcome-image-placeholder {
    min-height: 280px;
  }

  .welcome-image-placeholder {
    font-size: 22px;
  }

  .welcome-copy h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .brands-section {
    padding: 64px 18px 72px;
  }

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

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

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

  .brand-card {
    min-height: auto;
    padding: 42px 24px;
  }

  .brand-card + .brand-card {
    border-left: 1px solid var(--border);
  }

  .products-showcase-section {
    padding: 64px 18px 72px;
  }

  .product-tabs {
    margin-bottom: 38px;
  }

  .products-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .showcase-image-placeholder {
    min-height: 180px;
    margin-bottom: 18px;
  }

  .showcase-product-card h3 {
    font-size: 17px;
  }

  .why-section {
    padding: 64px 18px 72px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-image-placeholder {
    min-height: 250px;
    font-size: 20px;
  }

  .why-copy h2 {
    font-size: 36px;
  }

  .home-gallery-section {
    padding-top: 62px;
  }

  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 18px;
  }

  .gallery-placeholder {
    min-height: 220px;
  }

  .public-page h1 {
    font-size: 34px;
  }

  .gallery-main-swiper,
  .gallery-slide {
    min-height: 500px;
  }

  .gallery-large-placeholder {
    width: calc(100vw - 42px);
    min-height: 390px;
    font-size: 24px;
  }

  .gallery-main-swiper .swiper-button-next,
  .gallery-main-swiper .swiper-button-prev {
    display: none;
  }

  .gallery-thumbs-swiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legacy-products-section {
    padding: 54px 18px 76px;
  }

  .legacy-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .legacy-product-card h2 {
    font-size: 16px;
  }

  .page-hero {
    min-height: 260px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-breadcrumb {
    font-size: 18px;
  }

  .about-intro-section {
    padding: 64px 18px 72px;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy h2 {
    font-size: 36px;
  }

  .about-image-wrap {
    padding-bottom: 34px;
  }

  .about-image-wrap::after {
    right: 0;
    width: 120px;
    height: 120px;
  }

  .about-image-placeholder {
    min-height: 300px;
    font-size: 22px;
  }

  .values-section {
    padding: 58px 18px 72px;
  }

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

  .value-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 24px;
  }

  .value-card p {
    text-align: center;
  }

  .contact-info-section {
    padding: 64px 18px 72px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: auto;
    padding: 36px 28px;
  }

  .contact-info-card h2 {
    font-size: 28px;
  }

  .store-section {
    padding: 54px 18px 78px;
  }

  .store-filters {
    grid-template-columns: 1fr;
  }

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

  .store-card-image {
    height: 160px;
  }

  .page-button {
    width: 48px;
    height: 48px;
  }

  .cart-drawer {
    width: min(430px, 100vw);
  }

  .cart-drawer-content {
    padding: 26px 22px 34px;
  }

  .cart-product-category {
    margin-bottom: 20px;
  }

  .cart-product-image {
    min-height: 210px;
  }

  .cart-product-image img {
    max-height: 230px;
  }

  .cart-drawer-actions {
    grid-template-columns: 1fr;
  }

  .cart-added-message {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 18px;
  }

  .cart-added-message strong {
    font-size: 20px;
  }

  .cart-added-message > div {
    width: 100%;
    gap: 12px;
  }

  .checkout-section {
    padding: 44px 18px 78px;
  }

  .checkout-layout,
  .checkout-contact-grid,
  .delivery-fields {
    grid-template-columns: 1fr;
  }

  .checkout-main {
    gap: 22px;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-cart-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-cart-item strong {
    grid-column: 2;
  }

  .checkout-total-row strong:last-child {
    font-size: 30px;
  }

  .done-section {
    padding: 44px 18px 78px;
  }

  .done-card {
    padding: 24px;
  }

  .voucher-header,
  .voucher-grid {
    grid-template-columns: 1fr;
  }

  .voucher-table {
    font-size: 13px;
  }

  .payment-cancel-section {
    padding: 64px 18px;
  }

  .payment-cancel-card {
    padding: 30px 22px;
  }

  .site-footer { margin-top: 58px; }
  .footer-showcase { min-height: 220px; padding: 34px 24px; gap: 24px; }
  .footer-message-card {
    width: min(100% - 36px, 1160px);
    padding: 42px 24px 54px;
  }
  .contact-message-form {
    grid-template-columns: 1fr;
  }
  .footer-inner { margin-top: 34px; gap: 28px; }
}
