:root {
  --cream: #fffaf7;
  --paper: #fffdfb;
  --blush: #f6dfdf;
  --rose: #d98591;
  --rose-deep: #a65365;
  --mauve: #7f5967;
  --green: #164e45;
  --green-soft: #dbe9e4;
  --gold: #c39a48;
  --ink: #2c2528;
  --muted: #756a6f;
  --line: rgba(44, 37, 40, 0.12);
  --shadow: 0 24px 70px rgba(92, 64, 74, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--green); color: white; padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.announcement {
  min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 11px;
  padding: 7px 16px; text-align: center; font-size: 12px; font-weight: 750; letter-spacing: .08em;
  text-transform: uppercase; background: var(--green); color: #fff;
}
.announcement .dot { color: #e8c675; }
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 250, 247, .88);
  border-bottom: 1px solid rgba(44, 37, 40, .06); backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 185px; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 7px 24px rgba(22, 78, 69, .16); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; color: var(--green); }
.brand small { margin-top: 5px; color: var(--rose-deep); font-size: 11px; text-transform: uppercase; letter-spacing: .22em; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { font-size: 14px; font-weight: 700; color: #51484c; transition: color .2s ease; }
.main-nav > a:hover { color: var(--rose-deep); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 99px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; cursor: pointer;
  min-height: 50px; padding: 13px 23px; border-radius: 999px; color: white; background: var(--rose-deep);
  font-weight: 800; box-shadow: 0 13px 30px rgba(166, 83, 101, .22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 35px rgba(166, 83, 101, .28); background: #97495b; }
.button-small { min-height: 42px; padding: 10px 18px; font-size: 13px; }
.button-outline { background: transparent; color: var(--green); border: 1px solid rgba(22, 78, 69, .28); box-shadow: none; }
.button-outline:hover { background: var(--green); color: white; box-shadow: none; }
.button-light { background: #fff; color: var(--green); box-shadow: 0 15px 35px rgba(15, 63, 57, .2); }
.button-light:hover { background: #fff7f4; }
.button-full { width: 100%; }
.text-button { background: none; border: 0; padding: 10px 0; cursor: pointer; color: var(--green); font-weight: 850; }
.text-button span { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.text-button:hover span { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 76px 0 86px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(166, 83, 101, .12) 1px, transparent 1px); background-size: 22px 22px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 65%, transparent);
  opacity: .42;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .55; pointer-events: none; }
.hero-blob-one { width: 380px; height: 380px; background: #f6d9d8; right: -100px; top: 80px; }
.hero-blob-two { width: 260px; height: 260px; background: #ddebe7; left: -140px; bottom: -60px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 14px; color: var(--rose-deep); font-size: 12px; line-height: 1.2; letter-spacing: .18em; text-transform: uppercase; font-weight: 900; }
.hero h1, .section-heading h2, .size-copy h2, .story-copy h2, .contact-card h2, .modal-header h2 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: .98;
}
.hero h1 { margin: 0; font-size: clamp(54px, 7vw, 88px); max-width: 700px; }
.hero h1 em { color: var(--rose-deep); font-weight: 500; }
.hero-text { max-width: 610px; margin: 28px 0 26px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.hero-points { display: flex; gap: 30px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-points div { display: grid; gap: 2px; }
.hero-points strong { color: var(--green); font-size: 20px; }
.hero-points span { color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; }
.hero-card { position: relative; max-width: 490px; margin-left: auto; }
.hero-card::before { content: ""; position: absolute; inset: 26px -24px -24px 24px; border-radius: 46px; background: var(--blush); transform: rotate(3deg); }
.hero-card > img { position: relative; width: 100%; height: 620px; object-fit: cover; border-radius: 46px 46px 130px 46px; box-shadow: var(--shadow); }
.floating-card { position: absolute; z-index: 2; display: grid; gap: 3px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 16px 40px rgba(54,38,45,.15); }
.floating-card span { color: var(--muted); font-size: 11px; }
.floating-card strong { color: var(--green); font-size: 14px; }
.price-card { left: -40px; bottom: 50px; padding: 15px 19px; border-radius: 18px; }
.color-card { right: -25px; top: 48px; padding: 14px 16px; border-radius: 18px; }
.swatches { display: flex; gap: 5px; }
.swatches i { width: 12px; height: 12px; border-radius: 50%; background: #b94c5c; }
.swatches i:nth-child(2) { background: #18544b; }
.swatches i:nth-child(3) { background: #d7a11f; }
.swatches i:nth-child(4) { background: #2d7693; }

.mini-features { border-block: 1px solid var(--line); background: rgba(255,255,255,.58); }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-row article { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 105px; padding: 24px; border-right: 1px solid var(--line); }
.feature-row article:last-child { border-right: 0; }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blush); color: var(--rose-deep); font-size: 19px; }
.feature-row strong, .feature-row small { display: block; }
.feature-row strong { font-size: 14px; }
.feature-row small { color: var(--muted); font-size: 12px; }

.section { padding: 104px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 34px; }
.section-heading h2, .size-copy h2, .story-copy h2, .contact-card h2 { margin: 0; font-size: clamp(42px, 5.6vw, 66px); }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.filter-row { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.filter { border: 1px solid var(--line); background: white; color: var(--muted); border-radius: 999px; padding: 10px 17px; cursor: pointer; font-size: 13px; font-weight: 800; }
.filter.active, .filter:hover { border-color: var(--green); background: var(--green); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid rgba(52, 42, 46, .08); border-radius: 28px; background: var(--paper); box-shadow: 0 12px 35px rgba(74, 53, 61, .07); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(74, 53, 61, .13); }
.product-card.hidden { display: none; }
.product-media { position: relative; overflow: hidden; aspect-ratio: 4/4.4; background: #eee; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-badge { position: absolute; top: 16px; left: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.93); color: var(--rose-deep); font-size: 11px; font-weight: 900; box-shadow: 0 8px 22px rgba(0,0,0,.1); }
.product-content { padding: 22px; }
.product-topline { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.product-content h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; color: var(--green); font-size: 25px; line-height: 1.1; }
.product-quality { white-space: nowrap; padding: 6px 9px; border-radius: 9px; background: var(--green-soft); color: var(--green); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.product-description { min-height: 50px; margin: 12px 0 18px; color: var(--muted); font-size: 14px; }
.product-meta { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-meta small { display: block; color: var(--muted); font-size: 11px; }
.product-meta strong { display: block; color: var(--ink); }
.product-price { text-align: right; }
.product-price strong { color: var(--rose-deep); font-size: 20px; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 18px; }
.product-actions .button { min-height: 44px; padding: 10px 17px; font-size: 13px; box-shadow: none; }
.color-dots { display: flex; align-items: center; gap: 5px; padding: 0 4px; }
.color-dots i { width: 13px; height: 13px; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.loading-card { grid-column: 1/-1; padding: 50px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 24px; }
.price-note { max-width: 820px; margin: 28px auto 0; text-align: center; color: var(--muted); font-size: 13px; }

.size-section { background: #f4e8e7; }
.size-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 72px; }
.size-copy p:not(.eyebrow) { color: var(--muted); margin: 22px 0 28px; }
.size-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: center; }
.size-cards article { min-height: 310px; padding: 26px 22px; border-radius: 100px 100px 35px 35px; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.8); display: flex; flex-direction: column; justify-content: flex-end; text-align: center; box-shadow: 0 20px 50px rgba(88,55,66,.1); }
.size-cards article.featured { min-height: 365px; color: white; background: var(--green); transform: translateY(-10px); }
.size-cards span { margin-bottom: auto; color: var(--rose-deep); font-size: 12px; font-weight: 900; }
.size-cards .featured span { color: #f5c5c8; }
.size-cards strong { font-family: Georgia, "Times New Roman", serif; font-size: 27px; }
.size-cards b { margin-top: 8px; font-size: 15px; }
.size-cards small { margin-top: 8px; color: var(--muted); }
.size-cards .featured small { color: rgba(255,255,255,.72); }

.story-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; }
.story-image { position: relative; }
.story-image img { width: 100%; height: 650px; object-fit: cover; border-radius: 36px 110px 36px 36px; box-shadow: var(--shadow); }
.story-stamp { position: absolute; right: -26px; bottom: 40px; width: 130px; height: 130px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: var(--gold); color: var(--green); border: 8px solid var(--cream); box-shadow: 0 12px 30px rgba(0,0,0,.14); transform: rotate(8deg); }
.story-stamp span { font-family: Georgia, "Times New Roman", serif; font-size: 35px; font-weight: 900; line-height: 1; }
.story-stamp small { font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.quote { margin-top: 34px; padding: 25px 28px; border-left: 4px solid var(--rose); background: var(--blush); border-radius: 0 20px 20px 0; font-family: Georgia, "Times New Roman", serif; color: var(--mauve); font-size: 22px; font-style: italic; }

.contact-section { padding-top: 20px; }
.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 58px 64px; border-radius: 40px; color: white; background: var(--green); box-shadow: 0 28px 70px rgba(22,78,69,.25); position: relative; overflow: hidden; }
.contact-card::after { content: "♡"; position: absolute; right: 210px; top: -65px; font-size: 190px; color: rgba(255,255,255,.055); transform: rotate(-14deg); }
.contact-card .eyebrow { color: #efbdc5; }
.contact-card h2 { font-size: clamp(40px, 5vw, 62px); }
.contact-card p:last-child { margin-bottom: 0; color: rgba(255,255,255,.72); }
.contact-card > * { position: relative; z-index: 1; }

.footer { margin-top: 80px; padding: 60px 0 24px; background: #2c2428; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 52px; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 74px; height: 74px; border-radius: 50%; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 23px; }
.footer p { margin: 6px 0 0; color: rgba(255,255,255,.6); font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid > div > strong { color: #f2bcc5; margin-bottom: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid a, .footer-link { color: rgba(255,255,255,.72); font-size: 13px; }
.footer-link { padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.footer-grid a:hover, .footer-link:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 12px; }

.order-modal { width: min(720px, calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; border: 0; border-radius: 30px; background: var(--paper); color: var(--ink); box-shadow: 0 35px 100px rgba(28,18,22,.36); overflow: auto; }
.order-modal::backdrop { background: rgba(35,27,31,.64); backdrop-filter: blur(7px); }
.modal-shell { position: relative; padding: 38px; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer; background: var(--blush); color: var(--rose-deep); font-size: 25px; line-height: 1; }
.modal-header { padding-right: 42px; }
.modal-header h2 { margin: 0; font-size: 44px; }
.modal-header > p:last-child { color: var(--muted); margin-bottom: 24px; }
#order-form { display: grid; gap: 15px; }
#order-form label { display: grid; gap: 7px; color: #51474b; font-size: 12px; font-weight: 800; }
#order-form input, #order-form select, #order-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
#order-form input:focus, #order-form select:focus, #order-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(217,133,145,.14); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.selected-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; border-radius: 16px; background: var(--green-soft); }
.selected-summary div { padding: 7px 9px; }
.selected-summary small { display: block; color: var(--muted); font-size: 10px; }
.selected-summary strong { display: block; color: var(--green); font-size: 13px; }
.order-result { display: grid; gap: 11px; padding-top: 10px; }
.order-result textarea { background: #f8f4f2 !important; color: #4b4145; font-size: 13px; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.result-hint { margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 1000; transform: translate(-50%, 20px); padding: 12px 18px; border-radius: 999px; background: var(--green); color: white; font-size: 13px; font-weight: 800; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .main-nav { position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; display: none; padding: 20px; border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 14px; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-card { margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .size-grid, .story-grid { grid-template-columns: 1fr; }
  .size-copy { text-align: center; }
  .size-copy p { max-width: 650px; margin-inline: auto !important; }
  .story-grid { gap: 50px; }
  .story-image { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2/4; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .announcement { font-size: 9px; gap: 6px; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 19px; }
  .hero { padding: 52px 0 68px; }
  .hero h1 { font-size: clamp(48px, 15vw, 67px); }
  .hero-text { font-size: 16px; }
  .hero-points { gap: 17px; }
  .hero-points strong { font-size: 16px; }
  .hero-card { max-width: 92%; }
  .hero-card > img { height: 500px; border-radius: 32px 32px 90px 32px; }
  .hero-card::before { inset: 16px -12px -14px 15px; }
  .price-card { left: -12px; bottom: 34px; }
  .color-card { right: -12px; top: 35px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row article { justify-content: flex-start; min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-row article:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading { display: block; }
  .section-heading h2, .size-copy h2, .story-copy h2 { font-size: 45px; }
  .section-heading > p { margin-top: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-description { min-height: 0; }
  .size-cards { grid-template-columns: 1fr; }
  .size-cards article, .size-cards article.featured { min-height: 220px; border-radius: 80px 80px 28px 28px; transform: none; }
  .story-image img { height: 520px; }
  .story-stamp { right: -5px; bottom: 25px; width: 110px; height: 110px; }
  .contact-card { display: block; padding: 40px 28px; }
  .contact-card .button { margin-top: 22px; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-grid > div:last-child { grid-column: 1/-1; }
  .form-two, .result-actions { grid-template-columns: 1fr; }
  .selected-summary { grid-template-columns: 1fr; }
  .modal-shell { padding: 30px 20px 24px; }
  .modal-header h2 { font-size: 38px; }
  .footer-bottom { display: grid; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.nav-side { display: flex; align-items: center; gap: 16px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(44, 37, 40, .08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.language-switcher select {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  outline: none;
  cursor: pointer;
}
.language-switcher select option { color: var(--ink); }

html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] button {
  text-align: right;
}
html[dir="rtl"] .brand,
html[dir="rtl"] .nav-wrap,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .product-meta,
html[dir="rtl"] .product-topline,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .result-actions,
html[dir="rtl"] .nav-side {
  direction: rtl;
}
html[dir="rtl"] .hero-card { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .price-card { left: auto; right: -40px; }
html[dir="rtl"] .color-card { right: auto; left: -25px; }
html[dir="rtl"] .product-badge { left: auto; right: 16px; }
html[dir="rtl"] .story-stamp { right: auto; left: -26px; }
html[dir="rtl"] .quote { border-left: 0; border-right: 4px solid var(--rose); border-radius: 20px 0 0 20px; }
html[dir="rtl"] .modal-close { right: auto; left: 18px; }
html[dir="rtl"] .modal-header { padding-right: 0; padding-left: 42px; }
html[dir="rtl"] .footer-link { text-align: right; }
html[dir="rtl"] .contact-card::after { right: auto; left: 210px; transform: rotate(14deg); }
html[dir="rtl"] .text-button span { margin-left: 0; margin-right: 6px; }
html[dir="rtl"] .text-button:hover span { transform: translateX(-4px); }
html[dir="rtl"] .skip-link { left: auto; right: 16px; }
html[dir="rtl"] .loading-card,
html[dir="rtl"] .product-content h3,
html[dir="rtl"] .product-description,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .size-copy,
html[dir="rtl"] .story-copy,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .footer-grid > div,
html[dir="rtl"] .selected-summary div,
html[dir="rtl"] #order-form label {
  text-align: right;
}
html[dir="rtl"] .footer-bottom { direction: rtl; }

@media (max-width: 980px) {
  .nav-side { margin-inline-start: auto; }
}

@media (max-width: 720px) {
  .nav-side { gap: 10px; }
  .language-switcher { padding: 7px 10px; font-size: 11px; }
  .language-switcher span { display: none; }
  html[dir="rtl"] .price-card { right: -12px; }
  html[dir="rtl"] .color-card { left: -12px; }
  html[dir="rtl"] .story-stamp { left: -5px; }
  html[dir="rtl"] .contact-card::after { left: 150px; }
}
