/* ==========================================================================
   Datella — Kingdom Dates UAE®
   Professional Product Landing Page
   ========================================================================== */

:root {
  --cream: #FAF7F2;
  --sand: #EDE4D6;
  --gold: #B8892E;
  --gold-dark: #96701F;
  --brown: #3D2314;
  --brown-soft: #5C3D28;
  --text: #2C1810;
  --text-muted: #6B5748;
  --white: #FFFFFF;
  --border: rgba(61, 35, 20, 0.1);
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.14);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --header-h: 68px;
  --announce-h: 36px;
  --container: 1140px;
  --radius: 8px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
ul { list-style: none; }

.skip-link {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.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 {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.eyebrow--dark { color: var(--gold); }
.eyebrow--light { color: rgba(255, 255, 255, 0.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-head { margin-bottom: 48px; max-width: 560px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-desc { color: var(--text-muted); font-size: 17px; }

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--brown);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brown-soft);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.08); }
.btn--outline-dark {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--border);
}
.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--xl { padding: 18px 40px; font-size: 16px; }

/* Announcement */
.announcement {
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 16px;
}
.announcement a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement a:hover { color: var(--sand); }

/* Header */
.header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header.hero-mode {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.header.hero-mode .header__logo img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
.header.hero-mode .header__nav a { color: rgba(255, 255, 255, 0.9); }
.header.hero-mode .header__toggle span { background: var(--white); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.header__nav {
  display: none;
  gap: 32px;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--gold); }

.header__cta { display: none; }

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  margin-left: auto;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__toggle.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.header__toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-nav {
  position: fixed;
  inset: calc(var(--announce-h) + var(--header-h)) 0 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--brown);
}

@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }
}

/* Floating buy */
.floating-buy {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: var(--brown);
  color: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease), background 0.25s, opacity 0.35s, visibility 0.35s;
}
.floating-buy:hover {
  background: var(--brown-soft);
  transform: translateY(-2px);
}
.floating-buy__label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.floating-buy__price { font-size: 15px; font-weight: 700; }

@media (min-width: 768px) {
  .floating-buy { bottom: 32px; }
}

body.hero-in-view .floating-buy {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 16, 8, 0.3) 0%, transparent 18%),
    linear-gradient(0deg, rgba(30, 16, 8, 0.45) 0%, transparent 22%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--announce-h) + var(--header-h) + 16px) 24px 40px;
  pointer-events: none;
}

.hero__cta-bar {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.hero__shop-btn {
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(30, 16, 8, 0.35);
}

.hero__discover {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.hero__discover:hover { color: var(--white); }

@media (min-width: 768px) {
  .hero__content { padding-bottom: 56px; }
  .hero__cta-bar {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 28px;
  }
  .hero__shop-btn { width: auto; max-width: none; }
}

.hero__product { display: flex; justify-content: center; }

.hero__product-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  width: 100%;
}

.hero__product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius);
}

.hero__product-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.hero__price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--brown);
}
.hero__price-note {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--white); }

@media (min-width: 768px) {
  .hero__copy { max-width: 380px; }
}

/* Sections */
.section { padding: 88px 0; }
.section.about { background: var(--white); }
.section.why { background: var(--cream); }
.section.uses { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.about__text p { color: var(--text-muted); margin-bottom: 16px; }
.about__text p strong { color: var(--text); }
.about__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brown) !important;
  margin-bottom: 28px !important;
}
.about__text .btn { margin-top: 8px; }
.about__highlights {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.about__highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.about__highlights strong { color: var(--text); }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 72px; }
  .about__media img { margin: 0; }
}

/* Product details */
.section.details { background: var(--cream); }
.details__intro { margin-bottom: 48px; }
.details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.details__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.details__caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.spec-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.spec-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.spec-card strong { color: var(--text); }
.spec-list {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-list__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.spec-list__row:last-child { border-bottom: none; }
.spec-list dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.spec-list dd {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.spec-list__note {
  font-size: 13px;
  color: var(--text-muted);
}
.details__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
  border-color: rgba(184, 137, 46, 0.35);
  box-shadow: var(--shadow);
}
.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 600px) {
  .details__benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .details__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .spec-list__row { grid-template-columns: 140px 1fr; gap: 16px; align-items: baseline; }
}
@media (min-width: 1024px) {
  .details__benefits { grid-template-columns: repeat(4, 1fr); }
}

/* Heritage */
.section.heritage { background: var(--white); }
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.heritage__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.heritage__text .lead { margin-bottom: 20px; }
.heritage__text strong { color: var(--text); }
.heritage__text .btn { margin-top: 12px; }
.heritage__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.stat-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .heritage__grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

/* Feature cards */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.25s;
}
.feature-card:hover { background: var(--cream); }

.feature-card__num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Use cards */
.uses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.use-card {
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.use-card--visual .use-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.use-card--visual .use-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.use-card--visual:hover .use-card__image img { transform: scale(1.04); }
.use-card__body { padding: 24px 28px; }
.use-card:hover {
  border-color: rgba(184, 137, 46, 0.35);
  box-shadow: var(--shadow);
}
.use-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.use-card p {
  font-size: 15px;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .uses__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .uses__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Lifestyle / Instagram */
.lifestyle {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lifestyle__image-link {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lifestyle__image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}
.lifestyle__image-link:hover img { transform: scale(1.03); }
.lifestyle__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  background: rgba(42, 24, 16, 0.82);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.lifestyle__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.lifestyle__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lifestyle__text a:hover { color: var(--brown); }
.lifestyle__list {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}
.lifestyle__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text);
}
.lifestyle__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.lifestyle__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .lifestyle__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* Shop / Collection */
.shop { padding-top: 0; }
.shop__banner {
  position: relative;
  width: 100%;
  margin-bottom: 56px;
  background: var(--cream);
}
.shop__banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.shop__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 24, 16, 0.05) 0%, rgba(42, 24, 16, 0.2) 100%);
  pointer-events: none;
}
.shop .section-head { margin-bottom: 40px; }
.shop .section-desc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}
.product-card:hover {
  border-color: rgba(184, 137, 46, 0.35);
  box-shadow: var(--shadow);
}
.product-card--featured {
  border-color: rgba(184, 137, 46, 0.45);
}
.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card__image:hover img { transform: scale(1.04); }
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--brown);
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}
.product-card__tag--offer { background: var(--gold); color: var(--white); }
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product-card__body h3 a {
  color: var(--brown);
  transition: color 0.2s;
}
.product-card__body h3 a:hover { color: var(--gold); }
.product-card__meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 16px;
  margin-top: auto;
}
.product-card__was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}
.product-card__btn { width: 100%; text-align: center; }

@media (min-width: 700px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .shop__grid { grid-template-columns: repeat(3, 1fr); }
}
.shop__footer-link {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
}
.shop__footer-link a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.shop__footer-link a:hover { border-bottom-color: var(--gold); }

/* Cert strip */
.cert-strip {
  background: var(--brown);
  padding: 40px 0;
}
.cert-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cert-strip__item {
  text-align: center;
  color: var(--white);
}
.cert-strip__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cert-strip__item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .cert-strip__inner { grid-template-columns: repeat(5, 1fr); }
}

/* CTA */
.cta {
  background: var(--brown);
  padding: 96px 0;
  text-align: center;
}
.cta__inner { color: var(--white); max-width: 600px; margin: 0 auto; }
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta__price-block { margin-bottom: 32px; }
.cta__price {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sand);
}
.cta__unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta .btn--primary {
  background: var(--white);
  color: var(--brown);
}
.cta .btn--primary:hover { background: var(--sand); }

/* Footer */
.footer {
  background: #2A1810;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer__col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col address,
.footer__col li {
  font-size: 14px;
  line-height: 1.8;
}
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--sand); }

.footer__bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  padding: 12px 0;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar strong {
  display: block;
  font-size: 14px;
  color: var(--brown);
}
.sticky-bar span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .sticky-bar { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
