:root {
  --bg: #f3ece3;
  --bg-deep: #e8dfd4;
  --surface: #fffcf7;
  --ink: #1f1410;
  --muted: #7a6a5e;
  --line: #ddd2c6;
  --accent: #8b3a3a;
  --accent-hover: #6f2e2e;
  --gold: #c4a05a;
  --gold-soft: rgba(196, 160, 90, 0.18);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 76px;
  --footer-bg: #1a1210;
  --footer-text: #c8bdb4;
  --footer-heading: #f5ede4;
  --container-pad: clamp(1.25rem, 4vw, 2.75rem);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 14px 40px rgba(31, 20, 16, 0.08);
  --shadow-card: 0 8px 28px rgba(31, 20, 16, 0.06);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(196, 160, 90, 0.14), transparent 42%),
    radial-gradient(circle at 100% 12%, rgba(139, 58, 58, 0.08), transparent 38%),
    var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.page-loading {
  overflow: hidden;
}

/* Full-page loader (shown ~2s on each load) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease);
}

.page-loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.site-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.site-logo--loader {
  width: min(200px, 70vw);
  height: auto;
}

.site-logo--header {
  width: clamp(120px, 28vw, 168px);
  height: auto;
}

.site-logo--footer {
  width: clamp(130px, 32vw, 176px);
  height: auto;
}

.site-logo--light {
  filter: brightness(0) invert(1) sepia(0.25) saturate(0.4) hue-rotate(5deg);
  opacity: 0.94;
}

.page-loader__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: page-loader-spin 0.75s linear infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

main {
  flex: 1;
}

.container {
  width: min(1120px, calc(100% - var(--container-pad) * 2));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 236, 227, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 8px 24px rgba(31, 20, 16, 0.05);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: clamp(24rem, 58vh, 40rem);
  padding: calc(var(--header-h) + 80px) 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(196, 160, 90, 0.22), transparent 70%),
    radial-gradient(circle at 85% 75%, rgba(139, 58, 58, 0.1), transparent 45%),
    linear-gradient(175deg, #faf5ee 0%, #efe4d8 55%, #e8ddd0 100%);
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(31, 20, 16, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black 20%, transparent 95%);
}

.hero .container.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: rgba(255, 252, 247, 0.55);
  border: 1px solid rgba(221, 210, 198, 0.8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(196, 160, 90, 0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
}

.hero-text {
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 1rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #a04545 100%);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(139, 58, 58, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn__icon {
  flex: 0 0 auto;
}

button.btn {
  font-family: inherit;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(139, 58, 58, 0.34);
}

.btn:active {
  transform: translateY(0);
}

/* Contact choice modal (call / WhatsApp) */
.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(26, 18, 16, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 2rem 1.75rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.contact-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: var(--bg);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.contact-modal__close:hover {
  color: var(--accent);
  background: var(--gold-soft);
}

.contact-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
  color: var(--ink);
}

.contact-modal__hint {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
  line-height: 1.5;
}

.contact-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-modal__choice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contact-modal__choice:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.contact-modal__choice--wa {
  color: #fff;
  background: #1f9d6c;
  border-color: #1f9d6c;
}

/* Products */
.products {
  padding: 32px 0 88px;
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.products-intro {
  text-align: center;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.products-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.products-intro p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 36ch;
  margin: 0 auto;
}

.slider-line {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.slider-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slider-line + .slider-line {
  margin-top: 2.5rem;
}

.slider-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
}

.controls {
  display: flex;
  gap: 10px;
}

.control-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.control-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.cards-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}

.cards-track::-webkit-scrollbar {
  display: none;
}

.article-card {
  scroll-snap-align: start;
  scroll-margin-top: 6rem;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.slider-line.is-visible .article-card {
  opacity: 1;
  transform: translateY(0);
}

.article-card:hover {
  border-color: rgba(196, 160, 90, 0.55);
  box-shadow: 0 18px 40px rgba(31, 20, 16, 0.12);
}

.article-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #ebe3d8, #ddd2c6);
  overflow: hidden;
  position: relative;
}

.article-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(31, 20, 16, 0.12));
  pointer-events: none;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.article-card:hover .article-card__media img {
  transform: scale(1.04);
}

.article-card__body {
  padding: 16px 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  background: linear-gradient(180deg, var(--surface) 0%, #faf6f0 100%);
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 0;
  min-width: 0;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.article-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  line-height: 1.1;
}

.article-card__old-price {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.85;
  white-space: nowrap;
}

.article-card__order-btn {
  grid-column: 1 / -1;
  margin-top: 6px;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.article-card__order-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Order modal */
.order-modal__panel {
  max-width: 460px;
}

.order-modal__product {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.order-modal__price {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.order-form__group {
  margin-bottom: 0.9rem;
}

.order-form__group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-form__group input,
.order-form__group select,
.order-form__group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--bg);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form__group input:focus,
.order-form__group select:focus,
.order-form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.order-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.order-form__error {
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.75rem;
  background: #fdf0f0;
  border: 1px solid #f0c8c8;
  color: #9b2c2c;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.order-form__success {
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.75rem;
  background: #f0faf4;
  border: 1px solid #b8e6c8;
  color: #1f7a45;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.order-form__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.wa-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(145deg, #25d366, #1a9d52);
  color: #fff;
  box-shadow: 0 16px 36px rgba(26, 157, 82, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px rgba(26, 157, 82, 0.42);
}

.wa-fab:active {
  transform: translateY(0);
  opacity: 0.95;
}

.wa-fab i {
  font-size: 1.45rem;
  line-height: 1;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 160, 90, 0.12), transparent 40%),
    var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 calc(2.25rem + env(safe-area-inset-bottom, 0));
  border-top: 3px solid var(--gold);
}

.footer-shell {
  width: min(1120px, calc(100% - var(--container-pad) * 2));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.footer-col {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.65rem;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(200, 189, 180, 0.8);
  line-height: 1.55;
  max-width: 24rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-link-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--footer-bg);
  background: linear-gradient(135deg, var(--gold) 0%, #d4b06a 100%);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.footer-link-tel:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-col--reach {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(196, 160, 90, 0.35);
  color: var(--footer-heading);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(196, 160, 90, 0.15);
  border-color: var(--gold);
}

.social-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.social-btn--ig:hover {
  color: #f472b6;
}

.social-btn--tt:hover {
  color: #fff;
}

.lang-switch {
  margin-top: 1.15rem;
  font-size: 0.8125rem;
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(245, 237, 228, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 160, 90, 0.45);
  padding: 0 0 2px;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Responsive */
@media (max-width: 479px) {
  :root {
    --header-h: 64px;
  }

  .hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
  }

  .hero-inner {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .btn {
    display: block;
    width: 100%;
    max-width: 18rem;
    margin: 0 auto;
    text-align: center;
  }

  .products {
    padding: 1.5rem 0 3.75rem;
  }

  .products-intro {
    margin-bottom: 1.5rem;
  }

  .cards-track {
    grid-auto-columns: minmax(11.5rem, 78vw);
    gap: 1rem;
  }

  .article-card__body {
    padding: 0.9rem 0.9rem 1rem;
  }

  .footer-col--reach {
    align-items: stretch;
  }

  .footer-link-tel {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .cards-track {
    grid-auto-columns: minmax(13rem, 42vw);
    gap: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  }

  .products {
    padding: 2.25rem 0 5rem;
  }

  .cards-track {
    grid-auto-columns: minmax(14rem, 38vw);
    gap: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    align-items: start;
  }

  .footer-col {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.25rem;
  }

  .footer-col:last-child {
    border-right: none;
    padding-right: 0;
  }

  .footer-col--reach {
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: calc(var(--header-h) + 5.5rem) 0 5rem;
  }

  .products {
    padding: 2.75rem 0 5.5rem;
  }

  .cards-track {
    grid-auto-columns: minmax(13.75rem, 17.5rem);
    gap: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
  }

  .footer-col {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
  }

  .footer-col:last-child {
    border-right: none;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .products-intro,
  .slider-line,
  .article-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .article-card:hover .article-card__media img {
    transform: none;
  }
}

/* Arabic (RTL) overrides */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body,
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .hero-text,
html[dir="rtl"] .products-intro p,
html[dir="rtl"] .footer-copy,
html[dir="rtl"] .footer-link-tel,
html[dir="rtl"] .contact-modal__hint,
html[dir="rtl"] .article-card__title,
html[dir="rtl"] .article-card__price {
  font-family: "Tajawal", "Noto Sans Arabic", system-ui, sans-serif;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .products-intro h2,
html[dir="rtl"] .footer-tag,
html[dir="rtl"] .footer-heading,
html[dir="rtl"] .contact-modal__title,
html[dir="rtl"] .btn,
html[dir="rtl"] .contact-modal__choice,
html[dir="rtl"] .lang-switch__btn {
  font-family: "Tajawal", "Noto Sans Arabic", system-ui, sans-serif;
  letter-spacing: normal;
}

html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .footer-tag,
html[dir="rtl"] .btn,
html[dir="rtl"] .contact-modal__choice {
  letter-spacing: 0.06em;
}

html[dir="rtl"] .slider-line,
html[dir="rtl"] .cards-track {
  direction: ltr;
}

html[dir="rtl"] .article-card__body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .contact-modal__close {
  right: auto;
  left: 0.75rem;
}

html[dir="rtl"] .contact-modal__title {
  padding-right: 0;
  padding-left: 2rem;
}

html[dir="rtl"] .order-form__group label,
html[dir="rtl"] .order-modal__product,
html[dir="rtl"] .order-modal__price,
html[dir="rtl"] .article-card__order-btn {
  font-family: "Tajawal", "Noto Sans Arabic", system-ui, sans-serif;
}

@media (min-width: 768px) and (max-width: 1023px) {
  html[dir="rtl"] .footer-col {
    border-right: none;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
  }

  html[dir="rtl"] .footer-col:last-child {
    border-left: none;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  html[dir="rtl"] .footer-col {
    border-right: none;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }

  html[dir="rtl"] .footer-col:last-child {
    border-left: none;
    padding-left: 0;
  }
}
