@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Sora:wght@400;500;600&display=swap');

:root {
  --mist: #eef1ef;
  --paper: #f7f8f6;
  --ink: #132019;
  --ink-soft: #3d4f45;
  --spruce: #1f4d3d;
  --spruce-deep: #14352b;
  --brass: #b08948;
  --brass-soft: #d4bc8a;
  --stone: #d5ddd6;
  --line: rgba(19, 32, 25, 0.12);
  --shadow: 0 28px 60px rgba(19, 32, 25, 0.12);
  --radius-lg: 28px;
  --radius-sm: 12px;
  --max: 1180px;
  --nav-h: 78px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: #e9eeea;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(980px 420px at 8% -5%, rgba(176, 137, 72, 0.16), transparent 58%),
    radial-gradient(760px 380px at 92% 12%, rgba(31, 77, 61, 0.14), transparent 55%),
    radial-gradient(600px 500px at 50% 110%, rgba(20, 53, 43, 0.08), transparent 60%),
    linear-gradient(168deg, #eef2ef 0%, #f5f7f5 42%, #e4ebe6 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M0 80h160M80 0v160' stroke='%231f4d3d' stroke-opacity='0.05' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='1.4' fill='%23b08948' fill-opacity='0.22'/%3E%3Ccircle cx='120' cy='96' r='1.2' fill='%2314352b' fill-opacity='0.12'/%3E%3Cpath d='M12 148c28-18 48-18 76 0M72 12c20 14 36 14 56 0' fill='none' stroke='%23b08948' stroke-opacity='0.08' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

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

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

button {
  font-family: inherit;
}

.shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 246, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--spruce-deep);
}

.brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--spruce);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.cart-btn {
  border: 1.5px solid var(--spruce);
  background: transparent;
  color: var(--spruce-deep);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}

.cart-btn:hover {
  background: var(--spruce);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(15, 38, 31, 0.94) 0%, rgba(15, 38, 31, 0.78) 42%, rgba(15, 38, 31, 0.2) 72%, transparent 100%),
    linear-gradient(0deg, rgba(15, 38, 31, 0.72) 0%, transparent 42%);
}

.hero__content {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: #f4f7f5;
  max-width: 36rem;
  animation: riseIn 0.9s ease both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 1.6rem;
  max-width: 28rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--brass);
  color: var(--ink);
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 137, 72, 0.35);
}

/* —— Disclosure —— */
.legal-note {
  margin: 2.5rem auto;
  width: min(100% - 2.5rem, var(--max));
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--spruce);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* —— Showcase (asymmetric) —— */
.section-head {
  width: min(100% - 2.5rem, var(--max));
  margin: 3.5rem auto 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.section-head h1,
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--spruce-deep);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.vitrina {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1.1rem;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tile:hover {
  transform: translateY(-6px) rotate(-0.4deg);
}

.tile--hero {
  grid-column: 1 / span 7;
  grid-row: span 3;
  min-height: 420px;
}

.tile--tall {
  grid-column: 8 / span 5;
  grid-row: span 2;
  min-height: 280px;
}

.tile--wide {
  grid-column: 8 / span 5;
  grid-row: span 1;
}

.tile--offset {
  grid-column: 1 / span 5;
  grid-row: span 2;
  margin-top: -1.5rem;
}

.tile--square {
  grid-column: 6 / span 4;
  grid-row: span 2;
}

.tile--strip {
  grid-column: 10 / span 3;
  grid-row: span 2;
}

.tile__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tile:hover .tile__media img {
  transform: scale(1.06);
}

.tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(19, 32, 25, 0.78) 100%);
  z-index: 0;
}

.tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.5rem 1.5rem;
  color: #fff;
  z-index: 1;
}

.tile__cat {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.tile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  font-size: 0.92rem;
}

.price {
  font-weight: 600;
  color: var(--brass-soft);
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.tile--light .tile__shade {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(247, 248, 246, 0.92) 70%);
}

.tile--light .tile__body {
  color: var(--ink);
}

.tile--light .price {
  color: var(--spruce);
}

.tile--light .stock {
  background: rgba(31, 77, 61, 0.08);
  border-color: rgba(31, 77, 61, 0.18);
  color: var(--spruce);
}

.tile--strip .tile__body {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  inset: auto;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 0.8rem;
}

/* —— Product page —— */
.product-layout {
  width: min(100% - 2.5rem, var(--max));
  margin: 2.5rem auto 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.product-layout .gallery {
  position: relative;
}

.product-layout .gallery::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 42%;
  right: -8%;
  top: -6%;
  background: linear-gradient(135deg, rgba(176, 137, 72, 0.22), rgba(31, 77, 61, 0.18));
  border-radius: 40% 60% 55% 45%;
  z-index: -1;
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.product-layout .product-panel {
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg)  var(--radius-lg)  var(--radius-sm) var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  transform: rotate(-0.4deg);
}

.product-layout .product-panel h1 {
  transform: rotate(0.4deg);
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

.gallery__main {
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

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

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery__thumbs button {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #fff;
  aspect-ratio: 1;
}

.gallery__thumbs button.is-active,
.gallery__thumbs button:hover {
  border-color: var(--spruce);
}

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

.product-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--spruce-deep);
  margin-bottom: 0.9rem;
}

.product-panel .lead {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1.4rem 0 1.8rem;
}

.buy-row .price-lg {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--spruce);
}

.stock-pill {
  border: 1px solid var(--spruce);
  color: var(--spruce);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--spruce);
  color: #fff;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: var(--spruce-deep);
  transform: translateY(-2px);
}

.specs {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.specs th,
.specs td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.specs th {
  width: 42%;
  color: var(--spruce);
  font-weight: 600;
}

.info-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--spruce-deep);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* —— Content pages —— */
.page-hero {
  width: min(100% - 2.5rem, var(--max));
  margin: 2.5rem auto 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  color: var(--spruce-deep);
  line-height: 1.1;
  max-width: 16ch;
}

.page-hero p {
  margin-top: 0.9rem;
  max-width: 42rem;
  color: var(--ink-soft);
}

.content-block {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 3rem;
  display: grid;
  gap: 1.4rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--spruce-deep);
  margin-top: 1rem;
}

.content-block p,
.content-block li {
  color: var(--ink-soft);
}

.content-block ul,
.content-block ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card a {
  color: var(--spruce);
  font-weight: 600;
}

.split-band {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.split-band__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

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

.split-band__copy {
  background: linear-gradient(145deg, var(--spruce-deep), var(--spruce));
  color: #f3f7f5;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.split-band__copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
}

/* —— Košík / objednávková tabuľka —— */
.vl-zatienenie {
  position: fixed;
  inset: 0;
  background: rgba(15, 38, 31, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 70;
}

.vl-zatienenie.je-viditelne {
  opacity: 1;
  pointer-events: auto;
}

.vl-panel-kosik {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 540px);
  height: 100vh;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(238, 242, 239, 0.98)),
    #fff;
  box-shadow: -24px 0 60px rgba(19, 32, 25, 0.2);
  transform: translateX(108%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.35rem;
}

.vl-panel-kosik.je-otvoreny {
  transform: translateX(0);
}

.vl-panel-kosik__hlava {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.vl-panel-kosik__hlava h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--spruce-deep);
  line-height: 1.2;
  max-width: 16ch;
}

.vl-zatvor {
  border: none;
  background: transparent;
  font-size: 1.65rem;
  cursor: pointer;
  line-height: 1;
  color: var(--ink-soft);
}

.vl-panel-kosik__telo {
  flex: 1;
  overflow: auto;
  color: var(--ink-soft);
  padding-right: 0.15rem;
}

.vl-kosik-prazdny {
  padding: 1.5rem 0.2rem;
  font-size: 0.95rem;
}

.vl-tabulka-obal {
  overflow-x: auto;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
}

.vl-tabulka {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.vl-tabulka th,
.vl-tabulka td {
  padding: 0.55rem 0.45rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.vl-tabulka th {
  background: rgba(31, 77, 61, 0.08);
  color: var(--spruce);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vl-tabulka tfoot td {
  font-weight: 600;
  color: var(--spruce-deep);
  border-bottom: none;
  background: rgba(176, 137, 72, 0.1);
}

.vl-pocet-input {
  width: 3.2rem;
  padding: 0.28rem 0.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  text-align: center;
  background: #fff;
}

.vl-zmaz {
  border: none;
  background: rgba(31, 77, 61, 0.08);
  color: var(--spruce-deep);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.vl-zmaz:hover {
  background: rgba(31, 77, 61, 0.18);
}

.vl-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem 1rem;
  margin: 0 0 0.85rem;
  background: rgba(255, 255, 255, 0.7);
}

.vl-fieldset legend {
  font-family: var(--font-display);
  color: var(--spruce-deep);
  padding: 0 0.35rem;
  font-size: 1rem;
}

.vl-pole {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.vl-pole input,
.vl-pole select,
.vl-pole textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.vl-pole input:focus,
.vl-pole select:focus,
.vl-pole textarea:focus {
  outline: 2px solid rgba(31, 77, 61, 0.28);
  border-color: var(--spruce);
}

.vl-pole-rad {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.55rem;
}

.vl-objednavka-hint {
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.vl-odoslat {
  width: 100%;
}

.vl-potvrdenie {
  padding: 1rem 0.2rem 1.4rem;
  color: var(--ink);
}

.vl-potvrdenie h4 {
  font-family: var(--font-display);
  color: var(--spruce-deep);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.vl-potvrdenie ul {
  margin: 0.7rem 0 0.7rem 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.vl-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* legacy aliases removed — cart uses vl-* */

/* —— Footer —— */
.site-footer {
  margin-top: 3rem;
  background: var(--spruce-deep);
  color: #dce6e0;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 2rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.9rem;
}

.age-badge {
  width: 56px;
  height: 56px;
  border: 2px solid var(--brass);
  color: var(--brass-soft);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.plaque-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.plaque-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--brass-soft);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(100% - 2.5rem, var(--max));
  margin: 2.2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* —— Motion —— */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .section-head,
  .product-layout,
  .contact-grid,
  .split-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .tile--hero,
  .tile--tall,
  .tile--wide,
  .tile--offset,
  .tile--square,
  .tile--strip {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    min-height: 260px;
  }

  .tile--hero {
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .tile--strip .tile__body {
    writing-mode: horizontal-tb;
    transform: none;
    inset: auto 0 0 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

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

  .cart-btn {
    justify-self: end;
  }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    gap: 0.9rem;
  }
}

@media (max-width: 640px) {
  .vitrina {
    grid-template-columns: 1fr;
  }

  .hero__content {
    margin-bottom: 2.5rem;
  }

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