/* ===========================================
   SILVERRO – Main Stylesheet
   Author: Silverro
   Version: 1.0.0
=========================================== */

/* ── 1. CSS CUSTOM PROPERTIES ────────────────────────────────── */
:root {
  /* ── Paleta Silverro ── */
  --brand:         #dfd4cc;   /* kolor główny – beż */
  --brand-alt:     #e0d5cd;   /* kolor poboczny – jaśniejszy beż */
  --brand-dark:    #c8b9af;   /* ciemniejszy beż – hover/border */

  --text-primary:  #1a1816;   /* ciepły prawie-czarny – zamiast ostrego #000 */
  --text-body:     #474442;   /* kolor ciał tekstu */
  --text-muted:    #7a7673;   /* szary pomocniczy */

  --bg-subtle:     #f8f4f1;   /* jasny ciepły krem – tła sekcji co drugiej */

  /* aliasy dla kompatybilności z resztą CSS */
  --gold:          #474442;
  --gold-light:    #dfd4cc;
  --gold-dark:     #2e2c2a;
  --black:         #1a1816;
  --off-black:     #474442;
  --dark-gray:     #474442;
  --mid-gray:      #7a7673;
  --light-gray:    #f5f1ee;   /* sekcje tła */
  --border:        #dfd4cc;   /* obramki = kolor główny */
  --white:         #ffffff;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Jost', system-ui, sans-serif;

  --nav-h:         120px;
  --announce-h:    40px;

  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);

  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 24px 60px rgba(0,0,0,.14);

  --r-sm:          4px;
  --r-md:          8px;
  --r-lg:          16px;

  --section-gap:   96px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ── 3. UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9d8a7e;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brand-dark);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding-inline: 36px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--text-body);
  color: var(--white);
  border: 1.5px solid var(--text-body);
}
.btn--primary:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(71,68,66,0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-body);
}
.btn--outline:hover {
  background: var(--text-body);
  color: var(--white);
  border-color: var(--text-body);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(71,68,66,0.20);
}

.btn--gold {
  background: var(--text-body);
  color: var(--white);
  border: 1.5px solid var(--text-body);
}
.btn--gold:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(71,68,66,0.24);
}

.btn--add-cart {
  width: 100%;
  height: 46px;
  padding-inline: 20px;
  background: var(--text-body);
  color: var(--white);
  border: 1.5px solid var(--text-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-radius: var(--r-sm);
  margin-top: 12px;
  transition: all 0.26s var(--ease-out);
}
.btn--add-cart:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(71,68,66,0.22);
}

/* ── 5. BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  line-height: 1.4;
}
.badge--bestseller { background: var(--text-body); color: var(--white); }
.badge--new        { background: var(--text-primary); color: var(--white); }
.badge--sale       { background: #b03a2e; color: var(--white); }

/* Stars – warm amber kept for readability */
.stars { color: #c9a270; font-size: 0.875rem; letter-spacing: 0.05em; }
.stars--lg { font-size: 1.25rem; }
.rating-count { font-size: 0.8125rem; color: var(--mid-gray); margin-left: 4px; }

/* ── 6. ANNOUNCEMENT BAR ──────────────────────────────────────── */
.announcement-bar {
  position: relative;
  background: var(--black);
  color: var(--white);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 48px;
  overflow: hidden;
}
.announcement-bar p {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-bar strong {
  color: var(--gold-light);
}
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.announcement-close:hover { color: var(--white); }

/* ── 7. HEADER / NAVIGATION ───────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease-out);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(71,68,66,0.12);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 40px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-black);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
}
.nav__close-btn:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

/* Logo – po lewej */
.nav__logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0);
  transition: opacity 0.2s;
}
.nav__logo:hover .nav__logo-img {
  opacity: 0.75;
}

/* Linki – wycentrowane */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  grid-column: 2;
  grid-row: 1;
}

.nav__link {
  font-size: 0.775rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-black);
  padding: 8px 16px;
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--off-black);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }

/* ── Dropdown (desktop) ────────────────────────────────── */
.nav__links > li {
  position: relative;
}
.nav__links li.menu-item-has-children > a {
  display: flex;
  align-items: center;
}
.nav__links li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: transparent;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
  margin-left: 6px;
  flex-shrink: 0;
}
.nav__links li.menu-item-has-children.open > a::after,
.nav__links > li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(2px);
}
.nav__links .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 8px 32px rgba(26,24,22,.12);
  border-top: 2px solid var(--off-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  z-index: 300;
}
.nav__links > li:hover > .sub-menu,
.nav__links > li.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__links .sub-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-black);
  white-space: nowrap;
  transition: background 0.15s;
}
.nav__links .sub-menu a:hover { background: var(--bg-subtle); }
.nav__links .sub-menu .nav__link::after { display: none; }

/* Akcje – po prawej */
.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  grid-column: 3;
  grid-row: 1;
}

.nav__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-black);
  border-radius: 50%;
  transition: all 0.2s;
  position: relative;
}
.nav__icon-btn:hover {
  background: rgba(71,68,66,0.10);
}

.nav__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--off-black);
  color: #e8dfd8;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0);
  transition: all 0.24s var(--ease-out);
}
.nav__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Search panel */
.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;
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1200;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s ease;
  box-shadow: none;
}
.search-panel.open {
  max-height: 80px;
  box-shadow: 0 4px 40px rgba(26,24,22,.12);
}
.search-panel.open.has-results {
  max-height: 560px;
  box-shadow: 0 12px 60px rgba(26,24,22,.14);
}

/* Bar row */
.search-panel__bar {
  height: 72px;
  border-bottom: 1px solid var(--border, #dfd4cc);
  display: flex;
  align-items: center;
}
.search-panel__bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.search-panel__icon {
  flex-shrink: 0;
  color: var(--text-muted, #7a7673);
}
.search-panel__bar-inner form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-panel__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 1.05rem;
  color: var(--off-black, #474442);
  background: transparent;
  letter-spacing: 0.02em;
  min-width: 0;
}
.search-panel__input::placeholder { color: #c4bdb9; }
.search-panel__submit {
  flex-shrink: 0;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white, #fff);
  background: var(--off-black, #474442);
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-panel__submit:hover { background: #1a1816; }
.search-panel__close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted, #7a7673);
  display: flex;
  align-items: center;
  padding: 6px;
  transition: color 0.2s;
}
.search-panel__close:hover { color: var(--off-black, #474442); }

/* Results area */
.search-panel__results {
  max-height: 488px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--border, #dfd4cc);
  background: #fff;
}

/* Grid of result items */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 24px 8px;
}
@media (max-width: 640px) {
  .search-results-grid { grid-template-columns: 1fr 1fr; padding: 12px 16px 6px; }
}
@media (max-width: 420px) {
  .search-results-grid { grid-template-columns: 1fr; }
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  transition: background 0.15s;
  outline: none;
}
.search-result-item:hover,
.search-result-item:focus {
  background: var(--bg-subtle, #f8f4f1);
}
.search-result-item__img {
  width: 52px;
  height: 64px;
  flex-shrink: 0;
  background: var(--bg-subtle, #f8f4f1);
  overflow: hidden;
}
.search-result-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result-item__info {
  flex: 1;
  min-width: 0;
}
.search-result-item__name {
  display: block;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--off-black, #474442);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.search-result-item__price {
  display: block;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 0.78rem;
  color: var(--text-muted, #7a7673);
}
.search-result-item__price del {
  margin-right: 4px;
  opacity: 0.6;
}

/* Footer row (see all + categories) */
.search-results-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 8px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border, #dfd4cc);
  gap: 12px;
  flex-wrap: wrap;
}
.search-see-all {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-black, #474442);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.search-see-all:hover { color: var(--brand-dark, #c8b9af); }
.search-see-all svg { transition: transform 0.2s; }
.search-see-all:hover svg { transform: translateX(3px); }

/* Quick category links */
.search-quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.search-quick-cat {
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted, #7a7673);
  border: 1px solid var(--border, #dfd4cc);
  padding: 4px 10px;
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s;
}
.search-quick-cat:hover { color: var(--off-black, #474442); border-color: var(--off-black, #474442); }

/* No results */
.search-no-results {
  text-align: center;
  padding: 32px 24px;
  font-family: var(--font-sans, 'Jost', sans-serif);
  font-size: 0.9rem;
  color: var(--text-muted, #7a7673);
}
.search-no-results strong { color: var(--off-black, #474442); }

/* Loading dots */
.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 24px;
}
.search-loading span {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--brand-dark, #c8b9af);
  border-radius: 50%;
  animation: searchDot 1.2s infinite ease-in-out;
}
.search-loading span:nth-child(2) { animation-delay: 0.2s; }
.search-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes searchDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Mobile overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav__mobile-overlay.active {
  opacity: 1;
}

/* ── 8. HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(560px, 90vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  background: #c8b89a; /* fallback while image loads */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.50) 38%,
    rgba(0,0,0,0.10) 70%,
    rgba(0,0,0,0.00) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 56px clamp(24px, 6vw, 96px);
  max-width: 640px;
  color: var(--white);
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 10px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.hero__trust-item svg { flex-shrink: 0; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 9. BRAND STRIP ───────────────────────────────────────────── */
.brand-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
  background: var(--bg-subtle);
}
.brand-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.brand-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  font-size: 0.875rem;
  color: var(--dark-gray);
  line-height: 1.4;
  border-right: 1px solid var(--border);
}
.brand-strip__item:last-child { border-right: none; }
.brand-strip__item svg { color: var(--gold); flex-shrink: 0; }
.brand-strip__item small { display: block; color: var(--mid-gray); font-size: 0.75rem; }

/* ── 10. PRODUCTS GRID ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--light-gray);
  aspect-ratio: 3 / 4;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}
.product-card__img--alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card__img-wrap.has-alt:hover .product-card__img--alt { opacity: 1; }
.product-card__img-wrap.has-alt:hover .product-card__img--main {
  transform: scale(1.04);
  opacity: 0;
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.26s var(--ease-out);
  z-index: 2;
}
.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: scale(1);
}
.product-card__wishlist:hover {
  color: #c0392b;
  background: var(--white);
}
.product-card__wishlist.active {
  color: #c0392b;
  opacity: 1;
  transform: scale(1);
}
.product-card__wishlist.active svg { fill: #c0392b; }

.product-card__info {
  padding: 16px 4px 4px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-card__name a:hover { color: var(--gold-dark); }

.product-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.price {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}
.price--old {
  color: var(--mid-gray);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Strong override only for homepage Bestsellery cards */
.bestsellers .product-card__price .price {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #171513;
}
.bestsellers .product-card__price .price.price--old {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: #7a7673;
}

/* ── 11. CATEGORIES ───────────────────────────────────────────── */
.categories {
  background: var(--light-gray);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 3 / 4;
  background: #c8b89a;
}
.category-card__img-wrap {
  position: absolute;
  inset: 0;
}
.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.category-card:hover .category-card__img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.1) 55%);
  transition: opacity 0.4s;
}
.category-card:hover .category-card__overlay { opacity: 0.85; }
.category-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.category-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}
.category-card__cta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.32s var(--ease-out);
}
.category-card:hover .category-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── 12. PROMO BANNER ─────────────────────────────────────────── */
.promo-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.promo-banner__bg {
  position: absolute;
  inset: 0;
}
.promo-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  background: #1e1e1e;
}
.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.52) 45%,
    rgba(0,0,0,0.08) 100%
  );
}
.promo-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-block: 80px;
}
.promo-banner__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.promo-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.promo-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* Countdown */
.promo-banner__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(223,212,204,0.25);
  border-radius: var(--r-sm);
  padding: 18px 12px 12px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.countdown-unit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(223,212,204,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.countdown-unit:hover {
  border-color: rgba(223,212,204,0.5);
}
.countdown-unit span {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 24px rgba(223,212,204,0.4);
  letter-spacing: -0.02em;
}
.countdown-unit small {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 6px;
  font-weight: 500;
}
.countdown-sep {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--brand);
  padding-inline: 10px;
  padding-bottom: 18px;
  align-self: center;
  opacity: 0.7;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0.2; }
}

/* ── 13. WHY SILVERRO ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.section.why {
  background: var(--bg-subtle);
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(71,68,66,0.12);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 24px;
  color: var(--text-body);
  transition: background 0.3s, color 0.3s;
}
.why-card:hover .why-card__icon {
  background: var(--text-body);
  color: var(--white);
}
.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.why-card__text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* Sekcja WooCommerce – produkty ładowane z WordPressa */
.woo-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 32px;
  background: var(--light-gray);
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
}
.woo-note p {
  font-size: 0.8125rem;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.woo-coming-soon {
  text-align: center;
  padding: 56px 32px;
  border: 1px dashed var(--brand-dark);
  border-radius: var(--r-md);
  background: var(--light-gray);
}
.woo-coming-soon p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.woo-note code {
  display: block;
  margin-top: 8px;
  font-size: 0.7875rem;
  color: var(--dark-gray);
  background: rgba(71,68,66,0.06);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  width: fit-content;
  margin-inline: auto;
}

/* Promo banner – content left-aligned when using full-image background */
.promo-banner__content--left {
  text-align: left;
  max-width: 520px;
}
.reviews {
  background: var(--bg-subtle);
}
.reviews-header-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.reviews-avg {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}
.reviews-total {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-track-wrap {
  overflow: hidden;
  flex: 1;
}
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.reviews-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: var(--text-primary);
}
.reviews-arrow:hover {
  background: var(--brand);
  border-color: var(--brand-dark);
  transform: scale(1.08);
}
.reviews-arrow:active {
  transform: scale(0.95);
}

.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, opacity 0.55s, transform 0.55s;
  min-width: 100%;
  opacity: 0.4;
  transform: scale(0.97);
}
.review-card.is-active {
  opacity: 1;
  transform: scale(1);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--light-gray);
  flex-shrink: 0;
}
/* Awatary inicjałowe (zamiast zdjęcia) */
.review-card__initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e8ddd7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
  user-select: none;
  border: 1px solid #d6c9c0;
}
.review-card__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 2px;
}
.review-card__verified {
  margin-left: auto;
  font-size: 0.7rem;
  color: #27ae60;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-card__text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card__product {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.reviews-dots .dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── 15. INSTAGRAM ────────────────────────────────────────────── */
.instagram {
  padding-bottom: 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
.instagram-tile {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--light-gray);
}
.instagram-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.instagram-tile:hover .instagram-tile__img { transform: scale(1.08); }
.instagram-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-tile:hover .instagram-tile__overlay { opacity: 1; }

/* ── 16. NEWSLETTER ───────────────────────────────────────────── */
.newsletter {
  background: var(--text-body);
  padding-block: 100px;
}
.newsletter__inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  color: var(--white);
}
.newsletter__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(223,212,204,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 28px;
  color: var(--gold-light);
}
.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.newsletter__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.newsletter__form {
  width: 100%;
}
.newsletter__input-group {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.newsletter__input-group:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(223,212,204,0.30);
}
.newsletter__input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding-inline: 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9375rem;
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__submit {
  flex-shrink: 0;
  height: 54px;
  border-radius: 0;
}
.newsletter__privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 14px;
}
.newsletter__privacy a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}
.newsletter__privacy a:hover { color: var(--gold-light); }
.newsletter__success {
  font-size: 0.9rem;
  color: #2ecc71;
  margin-top: 12px;
  min-height: 22px;
}

/* ── 17. FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #2e2b28;
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  user-select: none;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.footer__social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(223,212,204,0.12);
}
.footer__nav-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__nav li a:hover { color: var(--gold-light); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.footer__contact address p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer__contact address p svg { color: var(--gold-light); flex-shrink: 0; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35) !important;
}

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.payment-badge {
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.payment-logo {
  display: block;
  height: 28px;
  width: auto;
  padding: 5px 10px;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
}
.payment-logo:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold-light); }

/* ── 18. CART TOAST ───────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--text-body);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--brand);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-out);
  z-index: 9999;
  max-width: 320px;
}
.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── 19. BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  z-index: 500;
  border: 1px solid var(--border);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── ABOUT SECTION ────────────────────────────────────────────── */
.about {
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__title {
  text-align: left;
  margin-bottom: 24px;
}
.about__title em {
  font-style: italic;
  color: var(--text-body);
}
.about__lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.about__body {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── COOKIE BANNER ────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text-primary);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  border-top: 3px solid var(--brand);
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  height: 40px;
  padding-inline: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.22s;
}
.cookie-banner__btn--accept {
  background: var(--brand);
  color: var(--text-primary);
  border: 1.5px solid var(--brand);
}
.cookie-banner__btn--accept:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.cookie-banner__btn--reject:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* ── 20. SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays via data-delay */
.fade-up[data-delay="100"] { transition-delay: 0.1s; }
.fade-up[data-delay="150"] { transition-delay: 0.15s; }
.fade-up[data-delay="200"] { transition-delay: 0.2s; }
.fade-up[data-delay="250"] { transition-delay: 0.25s; }
.fade-up[data-delay="300"] { transition-delay: 0.3s; }

/* ── 21. RESPONSIVE – TABLET (≤1024px) ───────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 72px; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image {
    aspect-ratio: 16 / 9;
    order: -1;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-arrow { width: 40px; height: 40px; }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-strip__item {
    padding-inline: 24px;
  }
  .nav {
    grid-template-columns: 1fr auto 1fr;
  }
  .nav__links {
    display: none;
    grid-column: unset;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 300px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    z-index: 850;
    transform: translateX(-100%);
    transition: transform 0.38s var(--ease-out);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav__links.open { display: flex; transform: translateX(0); }
  .nav__links.open .nav__close-btn { display: flex; }
  .nav__mobile-overlay { display: block; pointer-events: none; }
  .nav__mobile-overlay.active { pointer-events: auto; }
  .nav__links li { width: 100%; }
  .nav__links li > a { display: flex; align-items: center; width: 100%; }
  .nav__link { font-size: 0.9rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__links li.menu-item-has-children { width: 100%; }
  .nav__links li.menu-item-has-children > a { justify-content: space-between; }
  .nav__links li.menu-item-has-children > a::after {
    content: '+'; font-size: 1.3rem; font-weight: 300; line-height: 1;
    flex-shrink: 0; border: none; width: auto; height: auto;
    transform: none; transition: transform 0.2s; margin-left: 8px;
  }
  .nav__links li.menu-item-has-children.open > a::after { transform: rotate(45deg); }
  .nav__links .sub-menu {
    position: static; box-shadow: none; border-top: none;
    border-left: 2px solid var(--border); margin-left: 16px; padding: 0;
    opacity: 1; visibility: hidden; transform: none; max-height: 0;
    overflow: hidden; transition: max-height 0.35s ease, visibility 0.35s;
  }
  .nav__links li.open > .sub-menu { visibility: visible; max-height: 600px; }
  .nav__links .sub-menu a {
    display: flex; align-items: center; width: 100%;
    padding: 10px 12px; font-size: 0.8rem;
    border-bottom: 1px solid var(--border); white-space: normal;
  }
  .nav__links .sub-menu .nav__link { border-bottom: none; padding: 0; font-size: 0.8rem; }
  .nav__logo { grid-column: 2; justify-self: center; }
  .nav__hamburger { display: flex; grid-column: 1; justify-self: start; }
  .nav__actions { grid-column: 3; justify-content: flex-end; }
}

/* ── 22. RESPONSIVE – MOBILE (≤767px) ────────────────────────── */
@media (max-width: 767px) {
  :root {
    --section-gap: 56px;
    --nav-h: 80px;
    --announce-h: auto;
  }

  /* Announcement */
  .announcement-bar {
    height: auto;
    padding: 10px 40px 10px 16px;
  }
  .announcement-bar p {
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* Nav small-phone overrides */
  .nav { padding-inline: 16px; }
  .nav__logo-img { height: 64px; }
  .nav__links { width: 280px; }
  .nav__link { font-size: 1rem; }
  .nav__links .sub-menu a { font-size: 0.88rem; }
  .nav__links .sub-menu .nav__link { font-size: 0.88rem; }

  /* Hero */
  .hero {
    height: clamp(500px, 85vh, 700px);
    align-items: flex-end;
  }
  .hero__content {
    padding: 32px 24px;
  }
  .hero__headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  /* Brand strip */
  .brand-strip__list {
    flex-direction: column;
    align-items: center;
  }
  .brand-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: center;
  }
  .brand-strip__item:last-child { border-bottom: none; }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-card { padding: 28px 16px; }

  /* Reviews */
  .reviews-slider { gap: 10px; }
  .reviews-arrow { width: 36px; height: 36px; }

  /* Promo */
  .promo-banner__countdown {
    flex-wrap: wrap;
    gap: 8px;
  }
  .countdown-unit { min-width: 68px; padding: 14px 8px 10px; }
  .countdown-unit span { font-size: 2.25rem; }
  .countdown-sep { font-size: 2rem; padding-inline: 6px; }

  /* Instagram */
  .instagram-grid {
    grid-template-columns: 1fr;
  }
  .instagram-tile {
    aspect-ratio: 3 / 2;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Newsletter */
  .newsletter__input-group {
    flex-direction: column;
    background: none;
    border: none;
    gap: 12px;
  }
  .newsletter__input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-sm);
    height: 52px;
    padding-inline: 18px;
    width: 100%;
  }
  .newsletter__input-group:focus-within {
    box-shadow: none;
    border: none;
  }
  .newsletter__input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(223,212,204,0.30);
  }
  .newsletter__submit {
    width: 100%;
    height: 52px;
    border-radius: var(--r-sm);
  }

  /* Footer bottom */
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Cart toast */
  .cart-toast {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: 100%;
  }

  /* Back to top – hidden on mobile to avoid overlap */
  .back-to-top { display: none; }
}

/* ── 23. RESPONSIVE – SMALL MOBILE (≤400px) ──────────────────── */
@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 24. FOCUS STYLES (ACCESSIBILITY) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 25. PRINT STYLES ─────────────────────────────────────────── */
@media print {
  .announcement-bar,
  .header,
  .hero__scroll-hint,
  .back-to-top,
  .cart-toast { display: none; }
}
