:root {
  --navy: #06102a;
  --midnight: #0b1739;
  --ink: #101728;
  --silver: #e9edf3;
  --soft: #f7f6f2;
  --gold: #c8a15a;
  --muted: #8d96aa;
  --line: rgba(233, 237, 243, 0.16);
  --shadow: 0 24px 70px rgba(6, 16, 42, 0.22);
  --radius: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 86px;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body[dir="rtl"],
html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at center, rgba(200, 161, 90, 0.12), transparent 34%),
    linear-gradient(135deg, #0b1427 0%, #050b18 100%);
  color: var(--silver);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-card {
  width: min(78vw, 360px);
  padding: 10px;
  border: 1px solid rgba(233, 237, 243, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  animation: logoPulse 1.8s ease-in-out infinite;
}

.loader img {
  width: 100%;
  aspect-ratio: 1.33;
  object-fit: contain;
  border-radius: 18px;
}

.loader p {
  margin: 12px 0 0;
  color: var(--silver);
  font-size: clamp(1.7rem, 7vw, 2.65rem);
  font-weight: 850;
  letter-spacing: 0.18em;
}

.loader span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(70vw, 280px);
  padding-top: 14px;
  color: rgba(233, 237, 243, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.loader span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.4s ease-in-out infinite;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.86; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1.015); }
}

@keyframes loaderLine {
  0%, 100% { opacity: 0.35; transform: scaleX(0.45); }
  50% { opacity: 1; transform: scaleX(1); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: max(12px, env(safe-area-inset-top)) 18px 12px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(6, 16, 42, 0.54), rgba(6, 16, 42, 0));
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 16, 42, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand img {
  width: 36px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.brand span,
.footer-brand strong {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-toggle,
.cart-chip,
.nav-button {
  border: 1px solid rgba(233, 237, 243, 0.24);
  background: rgba(6, 16, 42, 0.24);
  color: #fff;
  border-radius: 999px;
  min-height: 36px;
}

.lang-toggle {
  padding: 0 12px;
  font-size: 0.7rem;
  white-space: nowrap;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 7px;
}

.cart-icon {
  display: none;
}

.cart-chip strong,
.mobile-bottom strong,
.floating-cart strong {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
}

.floating-cart {
  position: fixed;
  right: 18px;
  bottom: max(86px, calc(76px + env(safe-area-inset-bottom)));
  z-index: 44;
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(233, 237, 243, 0.18);
  border-radius: 50%;
  background: rgba(6, 16, 42, 0.88);
  color: var(--silver);
  box-shadow: 0 18px 40px rgba(6, 16, 42, 0.24);
  backdrop-filter: blur(16px);
  font-weight: 850;
}

[dir="rtl"] .floating-cart {
  right: auto;
  left: 16px;
  padding: 0;
}

.floating-cart svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cart span {
  display: none;
}

.floating-cart strong {
  position: absolute;
  top: -5px;
  right: -5px;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 18%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 42, 0.08) 0%, rgba(6, 16, 42, 0.28) 45%, rgba(6, 16, 42, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 16, 42, 0.5), rgba(6, 16, 42, 0.04) 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  padding: 122px 22px 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.editorial h2,
.instagram h2,
.drawer-head h2,
.modal-card h2 {
  margin: 10px 0 0;
  line-height: 0.96;
  font-weight: 850;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 11.5vw, 5.2rem);
  letter-spacing: 0;
}

[dir="rtl"] .hero h1 {
  line-height: 1.12;
}

.hero p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(247, 246, 242, 0.86);
  font-size: 0.98rem;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:active,
.product-card:active {
  transform: scale(0.98);
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(200, 161, 90, 0.18);
}

.button.secondary {
  border-color: rgba(233, 237, 243, 0.34);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.07);
}

.delivery-badge {
  display: inline-flex;
  margin-top: 22px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  color: var(--silver);
  background: transparent;
  font-size: 0.82rem;
}

[dir="rtl"] .delivery-badge {
  padding: 0 14px 0 0;
  border-left: 0;
  border-right: 2px solid var(--gold);
}

.section {
  padding: 72px 18px;
}

.section-heading {
  width: min(100%, 980px);
  margin: 0 auto 28px;
}

.section-heading h2,
.editorial h2,
.instagram h2 {
  font-size: clamp(2rem, 10vw, 4.5rem);
}

.section-heading p,
.editorial p,
.instagram p {
  margin: 12px 0 0;
  color: #5d6678;
  font-size: 1rem;
}

.product-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(6, 16, 42, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 50px rgba(6, 16, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  width: 100%;
  aspect-ratio: 1.08;
  display: grid;
  place-items: center;
  border: 0;
  padding: 16px;
  background: linear-gradient(135deg, #f7f6f2, #eceff5);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-info .price {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.city-story {
  margin: 12px 0 0;
  color: #626a78;
  font-size: 0.9rem;
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  margin: 12px 0 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 23, 57, 0.07);
  color: #5d6678;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-info .button {
  min-height: 46px;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.product-actions .button {
  width: 100%;
  min-height: 44px;
}

.product-actions .button.secondary {
  background: #fff;
  color: #183466;
  border-color: rgba(6, 16, 42, 0.14);
  box-shadow: none;
}

.editorial,
.instagram,
.footer {
  background: var(--navy);
  color: var(--silver);
}

.editorial {
  padding: 72px 18px;
}

.editorial-copy,
.editorial-gallery {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.editorial p,
.instagram p,
.footer p {
  color: rgba(233, 237, 243, 0.72);
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
}

.editorial-gallery img:nth-child(2) {
  grid-row: span 2;
}

.size-card {
  width: min(100%, 980px);
  margin: 0 auto;
  display: block;
  padding: 10px;
  border: 1px solid rgba(6, 16, 42, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(6, 16, 42, 0.08);
}

.size-card img {
  width: 100%;
  border-radius: calc(var(--radius) - 7px);
}

.size-card span {
  display: block;
  padding: 12px 4px 2px;
  color: #5d6678;
  font-size: 0.86rem;
  font-weight: 750;
}

.comfort-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.comfort-grid article {
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(6, 16, 42, 0.08);
}

.comfort-grid img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 7px);
  background: #fff;
}

.delivery {
  background: #fff;
}

.delivery-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.delivery-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(6, 16, 42, 0.08);
  border-radius: var(--radius);
  color: #273044;
  background: var(--soft);
  font-weight: 760;
}

.instagram {
  margin: 0;
  padding: 72px 18px;
  display: grid;
  gap: 26px;
  position: relative;
}

.instagram::before {
  content: "";
  width: 74px;
  height: 2px;
  background: var(--gold);
}

.footer {
  padding: 54px 18px 112px;
}

.footer-brand,
.footer-grid,
.footer-actions {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.footer-brand img {
  width: 62px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.footer-brand p,
.footer-grid p {
  margin: 4px 0 0;
}

.footer-grid {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.footer-actions {
  margin-top: 24px;
}

.mobile-bottom {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  min-height: 56px;
  padding: 5px 8px;
  border: 1px solid rgba(233, 237, 243, 0.14);
  border-radius: 16px;
  background: rgba(6, 16, 42, 0.9);
  color: rgba(233, 237, 243, 0.82);
  box-shadow: 0 16px 38px rgba(6, 16, 42, 0.22);
  backdrop-filter: blur(12px);
}

.mobile-bottom a,
.mobile-bottom button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 1px;
  min-width: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  font-size: 0.64rem;
}

.mobile-bottom svg {
  width: 20px;
  height: 20px;
  color: rgba(200, 161, 90, 0.9);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.mobile-bottom small {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-bottom .active::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.mobile-bottom .active svg {
  color: var(--gold);
}

.mobile-bottom strong {
  position: absolute;
  top: 1px;
  right: 5px;
}

[dir="rtl"] .mobile-bottom strong {
  right: auto;
  left: 7px;
}

.final-contact {
  padding: 18px 18px 104px;
  background: var(--navy);
  text-align: center;
}

.final-contact .button {
  width: min(100%, 360px);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(6, 16, 42, 0.62);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--soft);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  transition: transform 0.34s ease;
  overflow-y: auto;
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-105%);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.drawer-head h2,
.modal-card h2 {
  font-size: 2rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 16, 42, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
}

.cart-line img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 12px;
  background: #f1f2f5;
}

.cart-line h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-line p {
  margin: 3px 0 8px;
  color: #5d6678;
  font-weight: 800;
}

.line-actions,
.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.line-actions button,
.qty-row button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(6, 16, 42, 0.12);
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
}

.cart-empty {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  color: #5d6678;
}

.cart-summary {
  margin: 14px 0;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--silver);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
}

.cart-summary .total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 12px;
  color: #fff;
}

.cart-summary p {
  margin: 10px 0 0;
  color: rgba(233, 237, 243, 0.72);
  font-size: 0.9rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #273044;
  font-weight: 800;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 16, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 161, 90, 0.13);
}

.checkout-form .error {
  min-height: 16px;
  color: #b64040;
  font-size: 0.78rem;
  font-weight: 750;
}

.preferred-size {
  margin: 0;
  color: #5d6678;
  font-size: 0.88rem;
}

.checkout-button {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 16, 42, 0.72);
  backdrop-filter: blur(5px);
}

.modal.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 940px);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

[dir="rtl"] .modal-close {
  right: auto;
  left: 12px;
}

.product-modal-card {
  display: grid;
}

.product-modal-card > img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: linear-gradient(135deg, #f7f6f2, #eceff5);
  padding: 18px;
}

.modal-copy {
  padding: 22px;
}

.modal-copy .price {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.2rem;
}

.modal-story {
  margin-bottom: 18px;
}

.notice {
  color: #5d6678;
  font-size: 0.92rem;
}

.image-modal-card {
  width: min(100%, 1080px);
  background: var(--soft);
  padding: 12px;
}

.image-modal-card img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 102px;
  z-index: 120;
  width: min(calc(100% - 28px), 440px);
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--silver);
  box-shadow: 0 18px 44px rgba(6, 16, 42, 0.24);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: center;
  font-weight: 800;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.fly-to-cart {
  position: fixed;
  z-index: 140;
  object-fit: contain;
  padding: 6px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 16, 42, 0.22);
  pointer-events: none;
  animation: flyToCart 0.68s cubic-bezier(0.2, 0.78, 0.24, 1) forwards;
}

@keyframes flyToCart {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  72% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--fly-x), var(--fly-y), 0) scale(0.18);
  }
}

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

.section-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .product-grid,
  .comfort-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section,
  .editorial,
  .instagram,
  .footer {
    padding-left: 34px;
    padding-right: 34px;
  }

  .product-modal-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-modal-card > img {
    height: 100%;
    max-height: none;
  }
}

@media (min-width: 960px) {
  .site-header {
    padding-left: 34px;
    padding-right: 34px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 760;
  }

  .nav-button {
    padding: 0 15px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero {
    min-height: 94vh;
  }

  .hero-image {
    object-position: center 30%;
  }

  .hero-content {
    padding-left: 7vw;
    padding-bottom: 110px;
  }

  .editorial {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 42px;
    align-items: center;
  }

  .editorial-copy,
  .editorial-gallery {
    width: 100%;
  }

  .instagram {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-left: max(34px, calc((100vw - 1180px) / 2));
    padding-right: max(34px, calc((100vw - 1180px) / 2));
  }

  .mobile-bottom {
    display: none;
  }

  .floating-cart {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .footer {
    padding-bottom: 34px;
  }

  .final-contact {
    padding-bottom: 42px;
  }
}

/* Subtle micro animations. */
.product-card {
  animation: productIn 0.55s ease both;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(6, 16, 42, 0.12);
}

.button,
.mobile-bottom a,
.mobile-bottom button,
.qty-row button {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.mobile-bottom a:active,
.mobile-bottom button:active,
.qty-row button:active {
  transform: translateY(1px) scale(0.99);
}

.modal.open .modal-card {
  animation: modalIn 0.24s ease both;
}

@keyframes productIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Premium product quick view. */
.product-modal {
  padding: 16px;
}

.product-modal-card {
  width: min(100%, 980px);
  max-height: min(90vh, 820px);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 16, 42, 0.08);
  box-shadow: 0 28px 80px rgba(6, 16, 42, 0.24);
}

.product-modal-card > img {
  min-height: 300px;
  max-height: 430px;
  padding: 18px;
  object-fit: contain;
  background: #f3f0ea;
}

.product-modal-card .modal-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.product-modal-card .eyebrow {
  font-size: 0.64rem;
}

.product-modal-card h2 {
  margin: 0;
  color: #183466;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 0.95;
}

.product-modal-card .price {
  margin: 0;
  color: #183466;
  font-size: 1.15rem;
}

.product-modal-card .modal-story {
  margin: 0;
  padding-bottom: 4px;
}

.product-modal-card .qty-row {
  width: fit-content;
  min-height: 44px;
  padding: 5px;
  gap: 12px;
  border: 1px solid rgba(6, 16, 42, 0.12);
  border-radius: 999px;
  background: #f7f6f2;
}

.product-modal-card .qty-row button {
  width: 34px;
  height: 34px;
  background: #fff;
}

.product-modal-card .qty-row strong {
  min-width: 24px;
  text-align: center;
  color: #183466;
}

.product-modal-card .notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(24, 52, 102, 0.06);
  color: #626a78;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 2px;
}

.quick-actions .button {
  width: 100%;
  min-height: 50px;
}

.quick-actions .button.secondary {
  background: #fff;
  color: #183466;
  border-color: rgba(6, 16, 42, 0.16);
}

@media (min-width: 680px) {
  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }

}

/* Keep quick-view purchase actions reachable on mobile. */
.product-modal-card {
  overflow: auto !important;
}

.product-modal-card .modal-copy {
  padding-bottom: 18px;
}

.quick-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin: 4px -24px -24px;
  padding: 12px 24px max(16px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), #fff 34%);
  border-top: 1px solid rgba(6, 16, 42, 0.08);
}

@media (max-width: 520px) {
  .product-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .product-modal-card {
    max-height: 86svh;
    border-radius: 22px 22px 0 0;
  }

  .product-modal-card > img {
    min-height: 230px;
    max-height: 330px;
    padding: 12px;
  }

  .product-modal-card .modal-copy {
    padding: 20px;
  }

  .product-modal-card .notice {
    font-size: 0.88rem;
  }

  .quick-actions {
    margin: 2px -20px -20px;
    padding: 12px 20px max(16px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 379px) {
  .brand span,
  .cart-chip span {
    display: none;
  }

  .lang-toggle {
    font-size: 0.68rem;
    padding-inline: 9px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header .cart-chip {
    display: none;
  }

  .floating-cart {
    display: inline-flex;
  }

  .cart-chip {
    width: 42px;
  }

  .cart-chip [data-i18n="cartShort"] {
    display: none;
  }

  .cart-icon {
    display: none;
  }

  .product-info {
    padding: 16px;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .product-info .tag {
    margin: 12px 0 10px;
    max-width: 100%;
    font-size: 0.72rem;
  }

  .product-info .button {
    width: 100%;
  }
}

/* Cleaner storefront direction inspired by premium pickup/menu sites. */
body {
  background: #f5efe6;
  color: #11203d;
}

.site-header {
  background: rgba(247, 246, 242, 0.94);
  color: var(--navy);
  border-bottom: 1px solid rgba(6, 16, 42, 0.08);
  box-shadow: none;
}

.site-header.scrolled {
  background: rgba(247, 246, 242, 0.96);
  box-shadow: 0 10px 28px rgba(6, 16, 42, 0.08);
}

.brand img {
  background: #fff;
  box-shadow: 0 4px 14px rgba(6, 16, 42, 0.08);
}

.brand span {
  color: #183466;
}

.lang-toggle,
.cart-chip,
.nav-button {
  color: #183466;
  background: #fff;
  border-color: rgba(6, 16, 42, 0.16);
  box-shadow: 0 6px 18px rgba(6, 16, 42, 0.05);
}

.desktop-nav {
  color: #183466;
}

.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 138px 22px 52px;
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 161, 90, 0.13), transparent 34%),
    #f5efe6;
  color: #183466;
}

.hero picture {
  position: relative;
  inset: auto;
  order: 2;
  width: 100%;
  height: auto;
  padding: 14px;
  border: 1px solid rgba(6, 16, 42, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(6, 16, 42, 0.12);
}

.hero-image {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: 440px;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

.hero-shade {
  display: none;
}

.hero-content {
  order: 1;
  width: 100%;
  max-width: 680px;
  padding: 0;
}

.eyebrow {
  color: #b88733;
}

.hero h1 {
  max-width: 620px;
  margin-top: 18px;
  color: #183466;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 12vw, 4.6rem);
  font-weight: 800;
  line-height: 0.9;
}

.hero p {
  max-width: 620px;
  color: #596275;
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  border-radius: 999px;
}

.button.primary {
  background: #183466;
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 52, 102, 0.18);
}

.button.secondary {
  background: #fff;
  color: #183466;
  border-color: rgba(6, 16, 42, 0.16);
}

.delivery-badge {
  color: #183466;
  font-weight: 800;
}

.floating-cart {
  display: none !important;
}

.mobile-bottom {
  left: 20px;
  right: 20px;
  min-height: 62px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #626a78;
  border: 1px solid rgba(6, 16, 42, 0.12);
  box-shadow: 0 18px 40px rgba(6, 16, 42, 0.16);
}

.mobile-bottom a,
.mobile-bottom button {
  border-radius: 999px;
  color: #626a78;
  font-weight: 850;
}

.mobile-bottom svg {
  color: currentColor;
  width: 19px;
  height: 19px;
}

.mobile-bottom small {
  font-size: 0.73rem;
  font-weight: 850;
}

.mobile-bottom .active {
  background: #183466;
  color: #fff;
}

.mobile-bottom .active svg {
  color: #fff;
}

.mobile-bottom .active::after {
  display: none;
}

.mobile-bottom strong {
  top: 3px;
  right: 4px;
  background: var(--gold);
}

.section {
  background: #f5efe6;
}

.product-card,
.size-card,
.comfort-grid article,
.delivery-list p {
  border-color: rgba(6, 16, 42, 0.1);
  box-shadow: 0 18px 42px rgba(6, 16, 42, 0.08);
}

.product-card,
.size-card,
.comfort-grid article {
  border-radius: 22px;
}

.product-media {
  background: #f3f0ea;
}

@media (min-width: 960px) {
  .hero {
    min-height: 86vh;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
    align-items: center;
    padding: 140px max(34px, calc((100vw - 1180px) / 2)) 76px;
  }

  .hero picture {
    order: 2;
  }

  .hero-content {
    padding: 0;
  }

  .hero-image {
    max-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final mobile header direction: no full blue bar, just floating controls. */
.site-header,
.site-header.scrolled {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header {
  align-items: flex-start;
  padding: max(16px, env(safe-area-inset-top)) 22px 0 !important;
  pointer-events: none;
}

.site-header .brand,
.site-header .header-actions {
  pointer-events: auto;
}

.site-header .brand {
  gap: 10px;
}

.site-header .brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: cover;
}

.site-header .brand span {
  color: #183466;
  font-size: 1.02rem;
  line-height: 44px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-header .lang-toggle {
  min-height: 42px;
  padding: 0 18px;
  color: #183466;
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(6, 16, 42, 0.14) !important;
  box-shadow: 0 10px 28px rgba(6, 16, 42, 0.08);
  backdrop-filter: blur(12px);
}

.site-header .cart-chip {
  display: none !important;
}

@media (max-width: 520px) {
  .site-header {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .site-header .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header .brand span {
    font-size: 0.96rem;
    line-height: 42px;
  }

  .site-header .lang-toggle {
    min-height: 40px;
    padding: 0 15px;
  }
}

/* Bottom sections cleanup: lighter, calmer, less template-like. */
.instagram {
  margin: 0;
  padding: 58px 22px;
  display: block;
  background: #f5efe6 !important;
  color: #183466;
}

.instagram::before {
  width: 48px;
  height: 2px;
  margin-bottom: 20px;
  background: #b88733;
}

.instagram .eyebrow {
  color: #b88733;
}

.instagram h2 {
  max-width: 520px;
  color: #183466;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 3.35rem);
  line-height: 0.96;
}

.instagram p {
  color: #6b7280;
  font-size: 1.05rem;
}

.instagram .button {
  width: auto;
  min-width: 190px;
  margin-top: 22px;
}

.footer {
  padding: 48px 22px 22px;
  background: #fff !important;
  color: #183466;
  border-top: 1px solid rgba(6, 16, 42, 0.08);
}

.footer p,
.footer-grid p {
  color: #626a78;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: transparent;
  object-fit: cover;
}

.footer-brand strong {
  color: #183466;
}

.footer-grid {
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(6, 16, 42, 0.08);
}

.footer-grid p {
  padding: 13px 0;
  border-bottom: 1px solid rgba(6, 16, 42, 0.08);
}

.footer-actions {
  gap: 10px;
  margin-top: 22px;
}

.footer-actions .button {
  flex: 1;
  min-width: 0;
}

.final-contact {
  padding: 18px 22px 106px;
  background: #fff;
}

.final-contact .button {
  width: 100%;
  max-width: none;
  min-height: 50px;
  background: #183466;
  color: #fff;
  box-shadow: none;
}

.floating-cart,
.floating-cart[style] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.mobile-bottom {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #626a78 !important;
  border-color: rgba(6, 16, 42, 0.12) !important;
}

.mobile-bottom .active {
  background: #183466 !important;
  color: #fff !important;
}

@media (min-width: 960px) {
  .instagram {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-left: max(34px, calc((100vw - 1180px) / 2));
    padding-right: max(34px, calc((100vw - 1180px) / 2));
  }

  .footer {
    padding-left: max(34px, calc((100vw - 1180px) / 2));
    padding-right: max(34px, calc((100vw - 1180px) / 2));
  }

  .final-contact {
    padding-bottom: 42px;
  }

}
