:root {
  --burgundy: #8b1e3f;
  --burgundy-dark: #66122b;
  --rose: #d9a7b0;
  --blush: #f7e9ec;
  --paper: #f5f1ee;
  --gold: #d4af37;
  --muted: #a8a1a6;
  --ink: #333333;
  --line: #eadbd7;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(139, 30, 63, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Cairo", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.home-page.is-loading > :not(.home-skeleton) {
  display: none;
}

.home-page:not(.is-loading) .home-skeleton {
  display: none;
}

.home-skeleton {
  display: grid;
  gap: 58px;
  padding-bottom: 80px;
  background:
    linear-gradient(90deg, rgba(139, 30, 63, .025) 1px, transparent 1px),
    #fffaf8;
  background-size: 88px 88px;
}

.home-skeleton-hero,
.home-skeleton-section {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
}

.home-skeleton-hero {
  min-height: clamp(420px, 58vw, 690px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: 34px;
}

.home-skeleton-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.home-skeleton-copy span,
.home-skeleton-copy strong,
.home-skeleton-copy p,
.home-skeleton-copy b,
.home-skeleton-media,
.home-skeleton-head span,
.home-skeleton-head strong,
.home-skeleton-head p,
.home-skeleton-categories article,
.home-skeleton-products article,
.home-skeleton-products article div,
.home-skeleton-products article span,
.home-skeleton-products article p,
.home-skeleton-products article b {
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0e2dd 0%, #fff7f3 42%, #ead7d2 78%);
  background-size: 220% 100%;
  animation: homeSkeletonShimmer 1.15s ease-in-out infinite;
}

.home-skeleton-copy span {
  width: 120px;
  height: 14px;
}

.home-skeleton-copy strong {
  width: min(620px, 86%);
  height: clamp(58px, 7vw, 104px);
  border-radius: 16px;
}

.home-skeleton-copy p {
  width: min(540px, 78%);
  height: 16px;
}

.home-skeleton-copy p.is-short {
  width: min(410px, 58%);
}

.home-skeleton-copy b {
  width: 160px;
  height: 46px;
  margin-top: 8px;
}

.home-skeleton-media {
  min-height: clamp(320px, 42vw, 560px);
  border: 1px solid rgba(234, 219, 215, .9);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.home-skeleton-section {
  display: grid;
  gap: 20px;
}

.home-skeleton-head {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.home-skeleton-head span {
  width: 110px;
  height: 13px;
}

.home-skeleton-head strong {
  width: min(420px, 70%);
  height: 42px;
  border-radius: 12px;
}

.home-skeleton-head p {
  width: min(620px, 78%);
  height: 14px;
}

.home-skeleton-categories,
.home-skeleton-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-skeleton-categories article {
  min-height: 230px;
  border-radius: 10px;
}

.home-skeleton-products article {
  display: grid;
  gap: 13px;
  padding: 10px 10px 18px;
  border: 1px solid rgba(234, 219, 215, .78);
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
  animation: none;
}

.home-skeleton-products article div {
  height: 180px;
  border-radius: 8px;
}

.home-skeleton-products article span {
  width: 72%;
  height: 20px;
}

.home-skeleton-products article p {
  width: 88%;
  height: 12px;
}

.home-skeleton-products article b {
  width: 44%;
  height: 18px;
}

@keyframes homeSkeletonShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-skeleton-copy span,
  .home-skeleton-copy strong,
  .home-skeleton-copy p,
  .home-skeleton-copy b,
  .home-skeleton-media,
  .home-skeleton-head span,
  .home-skeleton-head strong,
  .home-skeleton-head p,
  .home-skeleton-categories article,
  .home-skeleton-products article div,
  .home-skeleton-products article span,
  .home-skeleton-products article p,
  .home-skeleton-products article b {
    animation: none;
  }
}

.storefront-loading.is-loading > :not(.store-skeleton) {
  display: none;
}

.storefront-loading:not(.is-loading) .store-skeleton {
  display: none;
}

.store-skeleton {
  width: min(1480px, calc(100% - 60px));
  margin: 22px auto 80px;
  display: grid;
  gap: 22px;
}

.store-skeleton__hero,
.store-skeleton__panel,
.store-skeleton__card,
.store-skeleton__line,
.store-skeleton__media,
.store-skeleton__button,
.store-skeleton__pill {
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0e2dd 0%, #fff7f3 42%, #ead7d2 78%);
  background-size: 220% 100%;
  animation: storefrontSkeletonShimmer 1.15s ease-in-out infinite;
}

.store-skeleton__hero,
.store-skeleton__panel,
.store-skeleton__card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 247, .82);
  box-shadow: 0 18px 44px rgba(139, 30, 63, .07);
  animation: none;
}

.store-skeleton__hero {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
}

.store-skeleton__copy,
.store-skeleton__stack,
.store-skeleton__card,
.store-skeleton__panel {
  display: grid;
  align-content: center;
  gap: 13px;
}

.store-skeleton__line {
  width: min(560px, 82%);
  height: 14px;
}

.store-skeleton__line.is-eyebrow {
  width: 120px;
  height: 13px;
}

.store-skeleton__line.is-title {
  width: min(620px, 86%);
  height: clamp(42px, 5vw, 72px);
  border-radius: 14px;
}

.store-skeleton__line.is-short {
  width: min(380px, 56%);
}

.store-skeleton__media {
  min-height: 220px;
  border-radius: 9px;
}

.store-skeleton__button {
  width: 170px;
  height: 46px;
}

.store-skeleton__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-skeleton__grid.is-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-skeleton__card {
  min-height: 240px;
  padding: 18px;
}

.store-skeleton__card .store-skeleton__media {
  min-height: 150px;
}

.store-skeleton__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 22px;
  align-items: start;
}

.store-skeleton__rows {
  display: grid;
  gap: 16px;
}

.store-skeleton__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 247, .82);
  box-shadow: 0 14px 36px rgba(139, 30, 63, .055);
}

.store-skeleton__row .store-skeleton__media {
  min-height: 158px;
}

.store-skeleton__toolbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 247, .82);
}

.store-skeleton__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-skeleton__pill {
  width: 92px;
  height: 38px;
}

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

.store-skeleton__form .store-skeleton__line {
  width: 100%;
  height: 48px;
  border-radius: 8px;
}

.store-skeleton__form .is-wide {
  grid-column: 1 / -1;
  height: 110px;
}

@keyframes storefrontSkeletonShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-skeleton__panel,
  .store-skeleton__card,
  .store-skeleton__line,
  .store-skeleton__media,
  .store-skeleton__button,
  .store-skeleton__pill {
    animation: none;
  }
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  background: var(--burgundy);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.store-toast {
  width: min(420px, calc(100vw - 32px));
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: #2d2628;
  background: rgba(255, 255, 255, .98);
  border: 1px solid #eadbd7;
  border-inline-start: 5px solid var(--burgundy);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(139, 30, 63, .16);
  animation: toast-enter .28s ease both;
}

.store-toast.is-hiding {
  animation: toast-leave .42s ease both;
}

.store-toast-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #f7e9ec;
  border: 1px solid #eadbd7;
  border-radius: 999px;
}

.store-toast-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.store-toast-error {
  border-inline-start-color: #b42332;
}

.store-toast-error .store-toast-icon {
  color: #b42332;
  background: #fff1f3;
}

.store-toast-error .store-toast-copy strong {
  color: #b42332;
}

.store-toast-copy {
  display: grid;
  gap: 4px;
}

.store-toast-copy strong {
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 800;
}

.store-toast-copy span {
  color: #6f6266;
  font-size: 13px;
  line-height: 1.7;
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-leave {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #fff;
  background: var(--burgundy);
  font-size: 12px;
}
.announcement span { display: inline-flex; align-items: center; gap: 8px; }
.announcement svg { width: 17px; height: 17px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.store-nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: 245px 1fr minmax(260px, 380px) 150px;
  gap: 22px;
  align-items: center;
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy);
}
.mini-flower {
  width: 44px;
  height: 44px;
}
.mini-flower path { fill: none; stroke: currentColor; }
.nav-logo strong,
.footer-brand strong {
  display: block;
  color: #2a2426;
  font-family: Georgia, "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1;
}
.nav-logo span,
.footer-brand span {
  display: block;
  margin-top: 5px;
  color: #695c60;
  font-family: "Playfair Display", serif;
  font-size: 9px;
  letter-spacing: 5px;
}

html[lang="ar"] .nav-logo strong,
html[lang="ar"] .footer-brand strong {
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

html[lang="ar"] .nav-logo span,
html[lang="ar"] .footer-brand span {
  margin-top: 2px;
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #5e5256;
  font-size: 13px;
  white-space: nowrap;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-brand-link {
  color: inherit;
}
.nav-link-flower {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.nav-link-flower path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--burgundy);
  font-weight: 700;
}
.nav-search { position: relative; display: block; }
.nav-search input {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 16px;
  color: #6e6267;
  background: #fff;
  border: 1px solid #e2cfce;
  border-radius: 5px;
  outline: none;
}
.nav-search svg {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 18px;
  height: 18px;
  color: #9d8b90;
}
.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}
.carousel-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-actions button,
.nav-actions a,
.footer-icons button,
.wishlist,
.carousel-arrows button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.nav-actions button:hover,
.nav-actions a:hover,
.footer-icons button:hover,
.wishlist:hover,
.carousel-arrows button:hover {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.cart-icon span {
  position: absolute;
  top: -5px;
  left: -4px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  font-size: 10px;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu summary:hover,
.account-menu[open] summary {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.account-menu-panel {
  position: absolute;
  inset-block-start: calc(100% + 12px);
  inset-inline-end: 0;
  z-index: 90;
  width: 220px;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(139, 30, 63, .14);
}

.account-menu-panel::before {
  content: "";
  position: absolute;
  inset-block-start: -7px;
  inset-inline-end: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-block-start: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
  transform: rotate(45deg);
}

.account-menu-name {
  overflow: hidden;
  padding: 4px 8px 9px;
  color: #6f6266;
  border-bottom: 1px solid #f1e5e2;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-panel a,
.account-menu-panel button {
  width: 100%;
  height: auto;
  min-height: 42px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 10px;
  color: #4d4246;
  background: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.account-menu-panel a:hover,
.account-menu-panel button:hover {
  color: var(--burgundy);
  background: #f7e9ec;
}

.account-menu-panel svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-slider {
  position: relative;
  min-height: clamp(420px, 52vh, 520px);
  overflow: hidden;
  background: var(--blush);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    var(--hero-overlay-background, radial-gradient(circle at 80% 48%, rgba(247,233,236,.12), transparent 34%), linear-gradient(90deg, rgba(43,7,19,.28), rgba(43,7,19,.16) 34%, rgba(43,7,19,.58)));
}
.hero-slide.dark-copy::after {
  background:
    var(--hero-overlay-background, radial-gradient(circle at 78% 48%, rgba(43,7,19,.18), transparent 36%), linear-gradient(90deg, rgba(43,7,19,.58), rgba(43,7,19,.25) 42%, rgba(43,7,19,.68)));
}
.hero-copy {
  position: absolute;
  z-index: 2;
  right: max(56px, calc((100vw - 1480px) / 2));
  top: 50%;
  width: min(500px, 42vw);
  transform: translateY(-50%);
}
.eyebrow {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.12;
  text-shadow: 0 16px 42px rgba(43,7,19,.62);
}
.hero-copy p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.85;
  text-shadow: 0 10px 30px rgba(43,7,19,.58);
}
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}
.btn.primary { color: #fff; background: var(--burgundy); }
.btn.primary:hover { background: var(--burgundy-dark); }
.btn.secondary { color: var(--burgundy); background: #fff; border: 1px solid var(--rose); }
.btn.light { color: var(--burgundy); background: rgba(255,255,255,.88); }
.slider-controls {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.slider-controls button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(139, 30, 63, .34);
}
.slider-controls button.is-active { width: 34px; background: var(--burgundy); }

.section {
  padding: 86px max(32px, calc((100vw - 1480px) / 2));
}
.section:nth-of-type(odd) { background: #fff; }
.section:nth-of-type(even) { background: #fffaf8; }
.categories {
  padding-bottom: 42px;
}
.products-section {
  padding-top: 42px;
  padding-bottom: 38px;
}
.products-section .section-head {
  text-align: right;
}
.section-head {
  margin-bottom: 34px;
  text-align: center;
}
.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: start;
}
.section-head h2 {
  margin: 8px 0 0;
  color: #2d2628;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.25;
}
.products-section .section-head h2 {
  margin-top: 0;
  font-size: clamp(26px, 2.35vw, 38px);
  white-space: nowrap;
}
.section-head p {
  max-width: 640px;
  margin: 14px auto 0;
  color: #75696c;
  font-size: 15px;
  line-height: 1.9;
}
.category-strip {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr) 1.18fr;
  grid-auto-rows: 176px;
  gap: 16px;
}
.category-card {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(247,233,236,.56)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(139, 30, 63, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.category-card.featured,
.category-card.wide {
  grid-row: span 2;
}
.category-card.dark {
  background: var(--burgundy);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 28%, rgba(255,250,248,.95) 78%),
    radial-gradient(circle at 80% 18%, rgba(212,175,55,.15), transparent 24%);
  pointer-events: none;
}
.category-card.dark::before {
  background: linear-gradient(180deg, rgba(82,8,30,.05) 24%, rgba(82,8,30,.92) 82%);
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 30, 63, .25);
  box-shadow: 0 28px 56px rgba(139, 30, 63, .14);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}
.category-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.02);
}
.category-card div {
  position: absolute;
  z-index: 2;
  right: 18px;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
}
.category-card small {
  color: var(--burgundy);
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.category-card span {
  color: #2d2628;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.category-card b {
  color: #7d7175;
  font-size: 12px;
  font-weight: 500;
}
.category-card.dark small,
.category-card.dark span,
.category-card.dark b {
  color: #fff;
}
.category-card i {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .24s ease, transform .24s ease, background .24s ease, color .24s ease;
  backdrop-filter: blur(10px);
}
.category-card:hover i {
  opacity: 1;
  transform: translateX(0);
}
.category-card i:hover {
  color: #fff;
  background: var(--burgundy);
}
.category-card i svg {
  width: 18px;
  height: 18px;
}

.product-carousel {
  display: flex;
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  scroll-behavior: smooth;
}
.product-carousel.is-moving .product-card {
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-cards-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-card-v3 {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(139, 30, 63, .09);
  isolation: isolate;
}

.home-cards-v3.is-animated .home-card-v3 {
  animation: editorialFloat 5.5s ease-in-out infinite;
}

.home-cards-v3.is-animated .home-card-v3:nth-child(2) {
  animation-delay: .65s;
}

.home-cards-v3.is-animated .home-card-v3:nth-child(3) {
  animation-delay: 1.2s;
}

.home-card-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.5) 45%, transparent 56% 100%);
  transform: translateX(110%);
}

.home-cards-v3.is-animated .home-card-v3::after {
  animation: cardSheen 4.8s ease-in-out infinite;
}

.home-card-v3 img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

.home-card-v3:hover img {
  transform: scale(1.06);
}

.home-card-v3 > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 26px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,250,251,.8));
}

.home-card-v3 span {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
}

.home-card-v3 h3 {
  margin: 8px 0 10px;
  color: #2f2729;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.35;
}

.home-card-v3 p {
  margin: 0;
  color: #6f6467;
  font-size: 13px;
  line-height: 1.9;
}

.home-card-v3 .price {
  min-height: 34px;
  margin: 16px 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.home-card-v3 .price small {
  color: #9c8a8e;
  text-decoration: line-through;
}

.home-card-v3 .sale-price strong {
  color: var(--burgundy);
}

.home-card-v3 .cart {
  width: 180px;
  margin-top: 0;
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.home-card-v3 .cart span,
.home-card-v3 .cart svg {
  color: #fff;
}

@keyframes editorialFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes cardSheen {
  0%, 42% { transform: translateX(110%); opacity: 0; }
  55% { opacity: .8; }
  78%, 100% { transform: translateX(-110%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-cards-v3.is-animated .home-card-v3,
  .home-cards-v3.is-animated .home-card-v3::after {
    animation: none;
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 90px) / 6);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  background: rgba(255,255,255,.92);
  border: 1px solid #eadbd7;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(139, 30, 63, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 30, 63, .22);
  box-shadow: 0 18px 38px rgba(139, 30, 63, .12);
}
.product-card img {
  width: calc(100% - 18px);
  height: 148px;
  min-height: 148px;
  display: block;
  object-fit: cover;
  margin: 9px;
  border-radius: 7px;
  background: var(--paper);
}
.product-card .wishlist {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: #a99399;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(234, 219, 215, .9);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.product-card .wishlist:hover {
  color: var(--burgundy);
  background: #fff;
}

.product-card .wishlist-form {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 3;
  margin: 0;
}

.product-card .wishlist-form .wishlist {
  position: static;
}
.tag {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  min-width: 56px;
  min-height: 27px;
  display: inline-grid;
  place-items: center;
  padding: 5px 12px;
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(83, 35, 46, .1);
}
.tag.gold { background: var(--gold); }
.tag.rose { background: #d89aa8; }
.tag.burg { background: var(--burgundy); }
.tag.muted { color: #8e8285; background: #f5f0ed; border: 1px solid var(--line); }
.product-card > div {
  min-height: 205px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7px 18px 15px;
  text-align: center;
}
.product-card h3 {
  margin: 0 0 6px;
  overflow: hidden;
  color: #2f2729;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card p { margin: 0; color: #8b8082; font-size: 11px; }
.product-card .metal { color: #9b8d90; }
.product-card .desc {
  min-height: 42px;
  margin: 10px 0 0;
  color: #6f6467;
  font-size: 11px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .price {
  min-height: 42px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-card strong { display: block; color: #1f1c1d; font-size: 14px; font-weight: 700; }
.product-card .price small {
  color: #b7a6a9;
  font-size: 11px;
  text-decoration: line-through;
}
.product-card .sale-price strong { color: var(--burgundy); }
.cart {
  width: 100%;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  color: #fff;
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(139, 30, 63, .14);
}
.cart svg { width: 17px; height: 17px; }
.cart:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.cart.outline {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 0 8px 18px rgba(139, 30, 63, .14);
}
.cart.outline:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}
.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 9px;
}

.card-actions form {
  display: contents;
}

.arrow-btn {
  width: 38px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.arrow-btn:hover {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.best-selling {
  padding-top: 42px;
  background: var(--paper);
}
.best-selling .section-head {
  text-align: start;
}
.best-selling .section-head h2 {
  margin-top: 0;
  font-size: clamp(26px, 2.35vw, 38px);
}
.best-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.best-product-v2 {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(139, 30, 63, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.best-product-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(139,30,63,.24);
  box-shadow: 0 22px 44px rgba(139, 30, 63, .13);
}
.best-media-v2 {
  position: relative;
  height: 245px;
  margin: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}
.best-media-v2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease, transform .7s ease;
}
.best-media-v2 .alt-img {
  opacity: 0;
  animation: bestImageSwap 7s ease-in-out infinite;
}
.best-media-v2 .main-img {
  animation: bestImagePulse 7s ease-in-out infinite;
}
.best-product-v2:hover .alt-img {
  opacity: 1;
  animation-play-state: paused;
  transform: scale(1.06);
}
.best-product-v2:hover .main-img {
  opacity: 0;
  animation-play-state: paused;
}
.best-media-v2 .wishlist {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}
.best-info-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 20px 18px;
  text-align: center;
}
.best-info-v2 h3 {
  margin: 0 0 8px;
  color: #2d2628;
  font-size: 17px;
  line-height: 1.35;
}
.best-info-v2 p {
  min-height: 44px;
  margin: 0;
  color: #6f6467;
  font-size: 12px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-line {
  min-height: 38px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  direction: ltr;
}
.price-line small {
  color: #b7a6a9;
  font-size: 12px;
  text-decoration: line-through;
}
.price-line strong {
  color: var(--burgundy);
  font-size: 16px;
}
.best-info-v2 .card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 10px;
}
.best-info-v2 .cart {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(139, 30, 63, .14);
}
.best-info-v2 .cart:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}
.best-info-v2 .cart svg,
.best-info-v2 .arrow-btn svg {
  width: 17px;
  height: 17px;
}
.best-info-v2 .arrow-btn {
  width: 40px;
  min-height: 38px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.best-info-v2 .arrow-btn:hover {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

@keyframes bestImageSwap {
  0%, 43% { opacity: 0; transform: scale(1); }
  52%, 88% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes bestImagePulse {
  0%, 45%, 100% { transform: scale(1); }
  70% { transform: scale(1.035); }
}

.recommended {
  padding-top: 42px;
  background: #fff;
}
.recommended .section-head {
  margin-bottom: 28px;
  text-align: start;
}
.recommended .section-head h2 {
  margin-top: 0;
  font-size: clamp(26px, 2.35vw, 38px);
}
.recommended-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.recommended-products .product-card {
  flex-basis: auto;
}

.promo-full {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding: 80px max(32px, calc((100vw - 1480px) / 2));
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
}
.promo-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}
.promo-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91,11,35,.08), rgba(91,11,35,.9) 62%);
}
.promo-full div {
  position: relative;
  z-index: 1;
  width: min(540px, 48vw);
}
.promo-full .eyebrow { color: #f4d7df; }
.promo-full h2 { margin: 10px 0 14px; font-size: 46px; line-height: 1.25; }
.promo-full p { color: #f0cfd8; line-height: 2; }

.feature-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  background: #fff;
}
.feature-icons article {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.feature-icons svg { width: 34px; height: 34px; color: var(--burgundy); }
.feature-icons h3 { margin: 8px 0 0; font-size: 15px; }
.feature-icons p { margin: 0; color: #75696c; font-size: 12px; }

.gifts {
  padding-top: 42px;
  background: #fffaf8;
}
.gifts .section-head {
  margin-bottom: 28px;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gift-grid article {
  overflow: hidden;
  min-height: 380px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.gift-grid img { width: 100%; height: 270px; object-fit: cover; }
.gift-grid h3, .gift-grid p { margin-inline: 22px; }
.gift-grid p { color: #7d7175; }

.social {
  padding-top: 42px;
}
.social .section-head {
  margin-bottom: 28px;
}
.social .section-head h2 {
  margin-top: 0;
  font-size: clamp(26px, 2.35vw, 38px);
}
.social-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .8fr 1.2fr;
  gap: 14px;
  align-items: stretch;
}
.social-grid img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}
.social-grid img:nth-child(2), .social-grid img:nth-child(4) { height: 310px; margin-top: 40px; }

.newsletter {
  margin: 60px max(32px, calc((100vw - 1480px) / 2)) 96px;
  padding: 54px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, var(--blush));
  box-shadow: var(--shadow);
}
.newsletter h2 {
  max-width: 720px;
  margin: 10px auto 26px;
  font-size: 36px;
  line-height: 1.35;
}
.newsletter form {
  display: grid;
  grid-template-columns: minmax(260px, 460px) auto;
  justify-content: center;
  gap: 10px;
}
.newsletter input {
  height: 44px;
  padding: 0 16px;
  border: 1px solid #e2cfce;
  border-radius: 5px;
  outline: none;
}

.footer-shell {
  padding: 54px max(28px, calc((100vw - 1480px) / 2));
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 30, 63, .05), transparent 28%),
    #fff;
}
.store-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1.25fr;
  gap: 44px;
  padding: 46px 50px;
  color: #f7eaee;
  background:
    linear-gradient(135deg, rgba(104, 14, 43, .96), rgba(139, 30, 63, .94)),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.14), transparent 28%);
  border-radius: 9px;
  box-shadow: 0 18px 42px rgba(139, 30, 63, .16);
}
.footer-brand strong { color: #fff; }
.footer-brand span,
.footer-brand p,
.footer-links a,
.footer-newsletter p { color: #f0cfd8; }
.footer-brand .mini-flower {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  color: #f5d6df;
}
.footer-brand {
  display: grid;
  justify-items: start;
  align-content: start;
}
.footer-brand strong {
  font-size: 30px;
  letter-spacing: 9px;
}
.footer-brand p,
.footer-newsletter p {
  margin: 18px 0 0;
  max-width: 330px;
  font-size: 13px;
  line-height: 1.9;
}
.footer-links,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-links h3,
.footer-newsletter h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}
.footer-links a { font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-newsletter label {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 8px;
  margin-top: 14px;
}
.footer-newsletter input {
  height: 40px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 5px;
}
.footer-newsletter input::placeholder { color: #f0cfd8; }
.footer-newsletter button {
  height: 40px;
  color: var(--burgundy);
  background: #fff;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
}
.footer-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-icons button {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
}
.footer-icons button:hover {
  color: var(--burgundy);
  background: #fff;
  border-color: #fff;
}
.language-toggle {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  min-width: 118px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 8px 0 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: var(--burgundy);
  box-shadow: 0 18px 38px rgba(139, 30, 63, .22);
  text-decoration: none;
}
.language-toggle small {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.language-toggle b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
}

html[dir="ltr"] body { direction: ltr; }
html[dir="ltr"] .announcement,
html[dir="ltr"] .store-nav,
html[dir="ltr"] .hero-copy,
html[dir="ltr"] .section-head,
html[dir="ltr"] .product-card,
html[dir="ltr"] .best-product-v2,
html[dir="ltr"] .promo-full,
html[dir="ltr"] .gifts,
html[dir="ltr"] .story-strip,
html[dir="ltr"] .store-footer {
  direction: ltr;
  text-align: left;
}
html[dir="ltr"] .nav-search svg {
  right: 14px;
  left: auto;
}
html[dir="ltr"] .nav-search input {
  padding-right: 46px;
  padding-left: 16px;
}
html[dir="ltr"] .btn svg,
html[dir="ltr"] .arrow-btn svg,
html[dir="ltr"] .category-card i svg {
  transform: scaleX(-1);
}
html[dir="ltr"] .language-toggle {
  right: auto;
  left: 28px;
}

.floating-language-stack {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.floating-language-stack .language-toggle {
  position: static;
  right: auto;
  bottom: auto;
}

html[dir="ltr"] .floating-language-stack {
  right: auto;
  left: 28px;
}

html[dir="ltr"] .products-section .section-head {
  text-align: left;
}

@media (max-width: 1180px) {
  .store-nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-search { display: none; }
  .hero-copy { width: min(540px, calc(100% - 64px)); }
  .store-skeleton__hero,
  .store-skeleton__layout {
    grid-template-columns: 1fr;
  }
  .store-skeleton__grid,
  .store-skeleton__grid.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-skeleton-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 24px; }
  .home-skeleton-media { min-height: 330px; }
  .home-skeleton-categories,
  .home-skeleton-products { grid-template-columns: repeat(3, 1fr); }
  .category-strip, .feature-icons { grid-template-columns: repeat(3, 1fr); }
  .product-card { flex-basis: calc((100% - 36px) / 3); }
  .home-cards-v3 { grid-template-columns: 1fr; }
  .home-card-v3 { min-height: 260px; }
  .category-card.featured,
  .category-card.wide { grid-row: span 1; }
  .store-footer { grid-template-columns: 1fr; }
  .recommended-products { grid-template-columns: repeat(3, 1fr); }
  .best-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-grid, .story-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .store-toast {
    width: auto;
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .floating-language-stack {
    right: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }

  html[dir="ltr"] .floating-language-stack {
    right: auto;
    left: 18px;
  }

  .store-toast-icon {
    width: 38px;
    height: 38px;
  }

  .announcement { flex-direction: column; gap: 6px; padding: 10px; }
  .section { padding: 56px 18px; }
  .store-skeleton {
    width: min(100% - 36px, 1480px);
    margin-bottom: 48px;
  }
  .store-skeleton__grid,
  .store-skeleton__grid.is-four,
  .store-skeleton__row,
  .store-skeleton__form {
    grid-template-columns: 1fr;
  }
  .store-skeleton__toolbar {
    display: grid;
    justify-items: stretch;
  }
  .store-skeleton__pills {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .home-skeleton { gap: 38px; padding-bottom: 48px; }
  .home-skeleton-hero,
  .home-skeleton-section { width: min(100% - 36px, 1480px); }
  .home-skeleton-media { min-height: 240px; }
  .home-skeleton-categories,
  .home-skeleton-products { grid-template-columns: 1fr; }
  .hero-slider { min-height: 430px; }
  .hero-copy { right: 22px; }
  .hero-copy h1 { font-size: 32px; }
  .category-strip, .home-cards-v3, .best-grid, .recommended-products, .feature-icons, .gift-grid, .story-cards, .social-grid, .newsletter form { grid-template-columns: 1fr; }
  .home-card-v3 { grid-template-columns: 1fr; }
  .home-card-v3 img { min-height: 230px; }
  .home-card-v3 .cart { width: 100%; }
  .product-card { flex-basis: 100%; }
  .category-strip { grid-auto-rows: 210px; }
  .social-grid img, .social-grid img:nth-child(2), .social-grid img:nth-child(4) { height: 310px; margin-top: 0; }
  .promo-full div { width: auto; }
  .promo-full h2, .newsletter h2 { font-size: 30px; }
  .footer-shell { padding: 32px 18px; }
  .store-footer { padding: 34px 26px 92px; }
  .language-toggle { right: 18px; bottom: 18px; }
  html[dir="ltr"] .language-toggle { left: 18px; right: auto; }
}
