@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Kufi+Arabic:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --petroleum: #014a56;
  --petroleum-dark: #00343d;
  --petroleum-soft: #0b6572;
  --white: #ffffff;
  --ivory: #fbf8f1;
  --cream: #f5efe3;
  --beige: #e9ddca;
  --gold: #c8a96a;
  --gold-light: #e6d3a7;
  --gray: #667477;
  --line: rgba(1, 74, 86, 0.12);
  --shadow-sm: 0 12px 30px rgba(1, 52, 61, 0.08);
  --shadow-lg: 0 30px 70px rgba(1, 52, 61, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shell: min(1180px, calc(100% - 40px));
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", Arial, sans-serif;
  --transition: 280ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--petroleum-dark);
  background: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: "Noto Kufi Arabic", Arial, sans-serif; }
body.cart-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.05; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { font-family: "Noto Kufi Arabic", Arial, sans-serif; line-height: 1.45; }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
.eyebrow.light { color: var(--gold-light); }
.section-heading { max-width: 670px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .about-copy h2, .cta-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
html[dir="rtl"] .section-heading h2, html[dir="rtl"] .about-copy h2, html[dir="rtl"] .cta-card h2 { letter-spacing: 0; }
.section-heading > p:last-child { color: var(--gray); font-size: 1.05rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--petroleum); box-shadow: 0 12px 24px rgba(1, 74, 86, 0.22); }
.button-primary:hover { background: var(--petroleum-dark); box-shadow: 0 16px 28px rgba(1, 74, 86, 0.28); }
.button-ghost { border-color: var(--line); color: var(--petroleum); background: rgba(255,255,255,0.55); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: var(--gold); background: var(--white); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(251, 248, 241, 0.88);
  box-shadow: 0 8px 30px rgba(1, 52, 61, 0.06);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; height: 86px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; flex: 0 0 auto; }
.brand-logo { width: 64px; height: 64px; object-fit: contain; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a { position: relative; font-size: 0.9rem; font-weight: 500; }
.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right var(--transition), left var(--transition);
}
.main-nav a:hover::after { right: 0; left: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-toggle, .icon-button {
  display: inline-grid;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--petroleum);
  background: rgba(255,255,255,0.58);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.language-toggle { width: 44px; font-size: 0.72rem; font-weight: 600; }
.icon-button { position: relative; width: 42px; }
.icon-button:hover, .language-toggle:hover { border-color: var(--gold); background: var(--white); transform: translateY(-2px); }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
}
.menu-toggle { display: none; gap: 3px; }
.menu-toggle span { display: block; width: 17px; height: 1.5px; background: currentColor; transition: var(--transition); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  background: linear-gradient(135deg, var(--ivory) 0%, #f8f3e8 52%, #eef4f2 100%);
  overflow: hidden;
}
.hero-inner { display: grid; align-items: center; grid-template-columns: 0.9fr 1.1fr; gap: 65px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 4px; font-size: clamp(5.3rem, 11vw, 9rem); font-weight: 600; letter-spacing: -0.065em; }
html[dir="rtl"] .hero-copy h1 { font-family: var(--font-heading); letter-spacing: -0.065em; }
.hero-slogan { margin-bottom: 25px; color: var(--gold); font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.5rem); font-style: italic; }
html[dir="rtl"] .hero-slogan { font-family: "Noto Kufi Arabic", Arial, sans-serif; font-size: 1.35rem; font-style: normal; }
.hero-description { max-width: 520px; margin-bottom: 34px; color: var(--gray); font-size: 1.08rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 48% 48% 26px 26px;
  background: rgba(255,255,255,0.36);
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(14px);
}
.hero-image-frame img { width: 100%; min-height: 520px; border-radius: 48% 48% 18px 18px; object-fit: cover; }
.hero-seal {
  position: absolute;
  right: -24px;
  bottom: 38px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(1,74,86,0.8);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  backdrop-filter: blur(10px);
}
html[dir="rtl"] .hero-seal { right: auto; left: -24px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { top: 8%; right: -8%; width: 360px; height: 360px; background: rgba(200,169,106,0.13); }
.hero-orb-two { bottom: -16%; left: -8%; width: 420px; height: 420px; background: rgba(1,74,86,0.08); }

.values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  padding: 32px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(251,248,241,0.75));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover { border-color: rgba(200,169,106,0.55); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.value-icon { display: grid; width: 48px; height: 48px; margin-bottom: 27px; place-items: center; border-radius: 50%; color: var(--gold); background: var(--cream); font-size: 1.1rem; }
.value-card h3 { margin-bottom: 12px; font-size: 1.65rem; font-weight: 600; }
.value-card p { margin-bottom: 0; color: var(--gray); font-size: 0.92rem; }

.about { background: var(--cream); overflow: hidden; }
.about-inner { display: grid; align-items: center; grid-template-columns: 0.85fr 1.15fr; gap: 100px; }
.about-art {
  position: relative;
  min-height: 490px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 46% 46% var(--radius-lg) var(--radius-lg);
  background: linear-gradient(150deg, var(--petroleum), #0c6470);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-monogram { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.9); font-family: var(--font-heading); font-size: 8rem; }
.about-ring { position: absolute; border: 1px solid rgba(230,211,167,0.35); border-radius: 50%; }
.ring-one { right: -70px; bottom: -50px; width: 290px; height: 290px; }
.ring-two { top: -90px; left: -90px; width: 350px; height: 350px; }
.about-badge { position: absolute; right: 24px; bottom: 24px; padding: 9px 17px; border: 1px solid rgba(255,255,255,0.24); border-radius: 100px; color: var(--white); background: rgba(255,255,255,0.1); font-size: 0.75rem; backdrop-filter: blur(10px); }
.about-copy > p:not(.eyebrow) { color: var(--gray); font-size: 1.04rem; }
.about-copy blockquote { margin: 30px 0 22px; padding-inline-start: 22px; border-inline-start: 2px solid var(--gold); color: var(--petroleum); font-family: var(--font-heading); font-size: 1.75rem; font-style: italic; line-height: 1.3; }
html[dir="rtl"] .about-copy blockquote { font-family: "Noto Kufi Arabic", Arial, sans-serif; font-size: 1.2rem; font-style: normal; line-height: 1.8; }
.signature { color: var(--gold); font-family: var(--font-heading); font-size: 2.1rem; font-style: italic; }

.products { background: var(--ivory); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.product-image-wrap { position: relative; padding: 13px; overflow: hidden; }
.product-image-wrap::after { position: absolute; inset: auto 15% 12px; height: 20px; border-radius: 50%; background: rgba(1,52,61,0.1); content: ""; filter: blur(13px); }
.product-image { width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; object-fit: cover; transition: transform 600ms ease; }
.product-card:hover .product-image { transform: scale(1.035); }
.product-content { display: flex; flex: 1; flex-direction: column; padding: 17px 25px 27px; }
.product-content h3 { margin-bottom: 11px; font-size: 1.75rem; font-weight: 600; }
.product-description { flex: 1; margin-bottom: 20px; color: var(--gray); font-size: 0.92rem; }
.product-price { display: inline-block; margin-bottom: 20px; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
html[dir="rtl"] .product-price { letter-spacing: 0; }
.product-actions { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8px; }
.product-actions .button { min-height: 46px; padding: 9px 14px; font-size: 0.78rem; text-align: center; }

.safety { background: var(--white); }
.safety-inner { display: grid; align-items: start; grid-template-columns: 0.72fr 1.28fr; gap: 80px; }
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.safety-item { display: flex; align-items: flex-start; gap: 13px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--ivory); color: var(--gray); font-size: 0.88rem; transition: border-color var(--transition), background var(--transition); }
.safety-item:hover { border-color: var(--gold-light); background: var(--cream); }
.safety-mark { flex: 0 0 auto; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: var(--petroleum); background: rgba(1,74,86,0.08); font-size: 0.72rem; }
.safety-item p { margin: 0; }

.cta { padding-top: 40px; background: var(--white); }
.cta-card {
  position: relative;
  padding: 80px clamp(25px, 8vw, 100px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,0.14), transparent 32%), linear-gradient(135deg, var(--petroleum-dark), var(--petroleum-soft));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-card::after { position: absolute; right: -100px; bottom: -180px; width: 400px; height: 400px; border: 1px solid rgba(230,211,167,0.24); border-radius: 50%; content: ""; }
.cta-card h2 { position: relative; z-index: 1; max-width: 680px; margin-bottom: 17px; }
.cta-card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 560px; margin-bottom: 30px; color: rgba(255,255,255,0.72); }
.cta-actions { position: relative; z-index: 1; }
.button-light { color: var(--petroleum-dark); background: var(--white); }
.button-outline-light { border-color: rgba(255,255,255,0.32); color: var(--white); }
.button-light:hover { background: var(--cream); }
.button-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.site-footer { padding-top: 100px; color: rgba(255,255,255,0.7); background: #002f37; }
.footer-inner { display: grid; grid-template-columns: 1.35fr 1fr 0.7fr; gap: 70px; padding-bottom: 65px; }
.footer-logo { width: 74px; height: 74px; margin-bottom: 17px; border-radius: 50%; object-fit: contain; }
.footer-brand p { max-width: 360px; }
.footer-slogan { margin-bottom: 9px; color: var(--gold-light); font-family: var(--font-heading); font-size: 1.55rem; }
.footer-column h3 { margin-bottom: 22px; color: var(--white); font-size: 1.45rem; }
.footer-column a { display: block; margin-bottom: 12px; font-size: 0.88rem; transition: color var(--transition); overflow-wrap: anywhere; }
.footer-column a:hover { color: var(--gold-light); }
.social-links { display: flex; flex-wrap: wrap; gap: 13px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.09); font-size: 0.78rem; }
.footer-bottom p { margin: 0; }

.cart-overlay { position: fixed; z-index: 80; inset: 0; visibility: hidden; background: rgba(0,24,29,0.45); opacity: 0; transition: opacity var(--transition), visibility var(--transition); backdrop-filter: blur(5px); }
.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100dvh;
  flex-direction: column;
  background: var(--ivory);
  box-shadow: -20px 0 55px rgba(0,24,29,0.18);
  transform: translateX(105%);
  transition: transform 380ms cubic-bezier(.22,.8,.3,1);
}
html[dir="rtl"] .cart-drawer { right: auto; left: 0; box-shadow: 20px 0 55px rgba(0,24,29,0.18); transform: translateX(-105%); }
.cart-open .cart-overlay { visibility: visible; opacity: 1; }
.cart-open .cart-drawer, html[dir="rtl"] .cart-open .cart-drawer { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 28px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin-bottom: 4px; font-size: 2rem; }
.cart-header span { color: var(--gray); font-size: 0.75rem; }
.cart-close { flex: 0 0 auto; font-size: 1.5rem; }
.cart-body { flex: 1; padding: 22px 28px; overflow-y: auto; }
.empty-cart { display: grid; min-height: 100%; place-content: center; text-align: center; }
.empty-cart-symbol { display: grid; width: 70px; height: 70px; margin: 0 auto 22px; place-items: center; border-radius: 50%; color: var(--gold); background: var(--cream); font-size: 1.6rem; }
.empty-cart h3 { margin-bottom: 9px; font-size: 1.8rem; }
.empty-cart p { max-width: 260px; margin: 0 auto 22px; color: var(--gray); font-size: 0.9rem; }
.cart-item { display: grid; grid-template-columns: 82px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-image { width: 82px; height: 96px; border-radius: 12px; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-info h3 { margin-bottom: 4px; font-size: 1.25rem; }
.cart-item-price { margin-bottom: 11px; color: var(--gold); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.quantity-control { display: flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: 100px; }
.quantity-control button { display: grid; width: 27px; height: 27px; place-items: center; border: 0; border-radius: 50%; color: var(--petroleum); background: transparent; cursor: pointer; }
.quantity-control button:hover { background: var(--cream); }
.quantity-control span { min-width: 20px; text-align: center; font-size: 0.78rem; }
.remove-button { padding: 0; border: 0; color: var(--gray); background: transparent; font-size: 0.72rem; text-decoration: underline; cursor: pointer; }
.cart-footer { padding: 22px 28px 28px; border-top: 1px solid var(--line); background: var(--white); }
.cart-footer.hidden { display: none; }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cart-total strong { color: var(--gold); font-size: 0.85rem; }
.cart-footer p { margin-bottom: 17px; color: var(--gray); font-size: 0.76rem; }
.checkout-button { width: 100%; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .hero-inner { gap: 35px; }
  .hero-image-frame img { min-height: 440px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 55px; }
  .product-grid { gap: 15px; }
  .product-content { padding: 14px 18px 22px; }
  .product-actions { grid-template-columns: 1fr; }
  .safety-inner { gap: 40px; }
}

@media (max-width: 820px) {
  .header-inner { height: 76px; }
  .brand-logo { width: 56px; height: 56px; }
  .menu-toggle { display: inline-grid; }
  .main-nav {
    position: fixed;
    z-index: 49;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    visibility: hidden;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(251,248,241,0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    transition: var(--transition);
    backdrop-filter: blur(18px);
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { padding: 10px 12px; }
  .hero { padding-top: 125px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero-copy h1 { font-size: clamp(5rem, 20vw, 8rem); }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-art { min-height: 390px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 8px); margin-inline: auto; }
  .safety-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about-copy h2, .cta-card h2 { font-size: clamp(2.3rem, 12vw, 3.2rem); }
  .eyebrow { margin-bottom: 12px; font-size: 0.65rem; }
  .language-toggle, .icon-button { width: 39px; height: 39px; }
  .header-actions { gap: 5px; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-copy h1 { font-size: clamp(4.6rem, 24vw, 6.4rem); }
  .hero-slogan { font-size: 1.65rem; }
  .hero-description { font-size: 0.98rem; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .hero-image-frame { border-radius: 44% 44% 20px 20px; }
  .hero-image-frame img { min-height: 330px; border-radius: 44% 44% 14px 14px; }
  .hero-seal { right: -6px; bottom: 20px; width: 68px; height: 68px; }
  html[dir="rtl"] .hero-seal { right: auto; left: -6px; }
  .values-grid, .product-grid, .safety-grid, .footer-inner { grid-template-columns: 1fr; }
  .value-card { padding: 27px 23px; }
  .about-inner { gap: 40px; }
  .about-art { min-height: 330px; }
  .about-monogram { font-size: 6.5rem; }
  .about-copy blockquote { font-size: 1.5rem; }
  .product-card:last-child { grid-column: auto; width: auto; }
  .product-actions { grid-template-columns: 1fr 1fr; }
  .cta { padding-top: 10px; }
  .cta-card { padding: 55px 23px; border-radius: var(--radius-md); }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-top: 72px; }
  .footer-inner { gap: 35px; padding-bottom: 40px; }
  .cart-header, .cart-body, .cart-footer { padding-right: 18px; padding-left: 18px; }
}

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

/* Luxury campaign refinement */
:root {
  --gold-deep: #a9874f;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow-float: 0 35px 90px rgba(0, 45, 53, 0.18);
  --ease-luxury: cubic-bezier(.2, .75, .25, 1);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(200, 169, 106, 0.08), transparent 26%),
    var(--ivory);
  transition: opacity 180ms ease, filter 180ms ease;
}
body.language-changing { opacity: 0.72; filter: blur(2px); }
.section { isolation: isolate; }
.section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1180px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 106, 0.24), transparent);
  content: "";
  transform: translateX(-50%);
}
.section-heading h2, .about-copy h2, .cta-card h2 { text-wrap: balance; }
.section-heading > p:last-child, .hero-description, .about-copy > p { text-wrap: pretty; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered .eyebrow::after { width: 28px; height: 1px; background: currentColor; content: ""; }

.button {
  position: relative;
  gap: 10px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 350ms var(--ease-luxury), box-shadow 350ms var(--ease-luxury), border-color 350ms ease, color 350ms ease;
}
.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 10%, rgba(255,255,255,0.23) 45%, transparent 75%);
  content: "";
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-luxury);
}
.button::after {
  display: inline-block;
  content: "→";
  font-size: 1rem;
  line-height: 1;
  transition: transform 300ms var(--ease-luxury);
}
html[dir="rtl"] .button::after { content: "←"; }
.button:hover::before { transform: translateX(120%); }
.button:hover::after { transform: translateX(4px); }
html[dir="rtl"] .button:hover::after { transform: translateX(-4px); }
.button:active { transform: translateY(-1px) scale(0.985); }
.button-primary {
  background: linear-gradient(120deg, var(--petroleum-dark), var(--petroleum) 52%, var(--petroleum-soft));
  background-size: 180% 100%;
  box-shadow: 0 14px 30px rgba(1,74,86,0.24), inset 0 1px rgba(255,255,255,0.18);
}
.button-primary:hover { background-position: 100% 0; }
.button.added { background: linear-gradient(120deg, var(--gold-deep), var(--gold)); }

.site-header { padding: 8px 0; }
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,248,241,0.64), rgba(251,248,241,0));
  content: "";
  opacity: 0.8;
  transition: opacity 350ms ease;
}
.site-header.scrolled {
  padding: 0;
  background: rgba(251, 248, 241, 0.82);
  box-shadow: 0 12px 45px rgba(0, 45, 53, 0.08);
  backdrop-filter: blur(24px) saturate(130%);
}
.site-header.scrolled::before { opacity: 0; }
.brand-logo { filter: drop-shadow(0 7px 12px rgba(1,74,86,0.08)); transition: transform 500ms var(--ease-luxury); }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.04); }
.main-nav a { color: rgba(0,52,61,0.76); transition: color 280ms ease; }
.main-nav a::after { height: 2px; border-radius: 100px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }
.main-nav a:hover, .main-nav a.active { color: var(--petroleum-dark); }
.main-nav a.active::after { right: 0; left: 0; }
.language-toggle, .icon-button {
  box-shadow: inset 0 1px rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}
.cart-trigger::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 300ms ease, transform 300ms ease;
}
.cart-trigger:hover::after { opacity: 1; transform: scale(1); }

.hero {
  min-height: 105vh;
  background:
    radial-gradient(circle at 72% 35%, rgba(255,255,255,0.92) 0 12%, transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(200,169,106,0.2), transparent 24%),
    radial-gradient(circle at 10% 78%, rgba(1,74,86,0.12), transparent 30%),
    linear-gradient(135deg, #fcfaf5 0%, #f6efe1 49%, #e8f1ef 100%);
}
.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  background-image: linear-gradient(rgba(1,74,86,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(1,74,86,0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  opacity: 0.48;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  transform: none;
}
.hero-grain {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: radial-gradient(rgba(0,52,61,0.12) 0.55px, transparent 0.7px);
  background-size: 5px 5px;
  opacity: 0.09;
  pointer-events: none;
}
.hero-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}
.hero-aurora-one {
  top: 8%;
  right: 12%;
  width: 390px;
  height: 390px;
  background: rgba(200, 169, 106, 0.26);
  animation: auroraDriftOne 14s ease-in-out infinite alternate;
}
.hero-aurora-two {
  bottom: 2%;
  left: 4%;
  width: 440px;
  height: 440px;
  background: rgba(1, 74, 86, 0.16);
  animation: auroraDriftTwo 17s ease-in-out infinite alternate;
}
.hero-particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(200, 169, 106, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(230, 211, 167, 0.45);
  opacity: 0;
  animation: particleRise 13s linear infinite;
}
.hero-particles span:nth-child(1) { left: 8%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 23%; width: 3px; height: 3px; animation-delay: 3s; animation-duration: 15s; }
.hero-particles span:nth-child(3) { left: 42%; animation-delay: 7s; animation-duration: 17s; }
.hero-particles span:nth-child(4) { left: 61%; width: 7px; height: 7px; animation-delay: 1.5s; animation-duration: 18s; }
.hero-particles span:nth-child(5) { left: 79%; width: 3px; height: 3px; animation-delay: 9s; animation-duration: 14s; }
.hero-particles span:nth-child(6) { left: 92%; animation-delay: 5s; animation-duration: 16s; }
.hero-inner { position: relative; z-index: 2; }
.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: -90px;
  left: -110px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(200,169,106,0.18);
  border-radius: 50%;
  content: "";
}
html[dir="rtl"] .hero-copy::before { right: -110px; left: auto; }
.hero-copy h1 {
  color: transparent;
  background: linear-gradient(135deg, var(--petroleum-dark) 15%, var(--petroleum) 58%, #287985);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 12px 25px rgba(1,74,86,0.08));
}
.hero-slogan { text-shadow: 0 8px 20px rgba(169,135,79,0.13); }
.hero-visual {
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
  transition: transform 120ms linear;
}
.hero-visual::before {
  position: absolute;
  z-index: -2;
  inset: -6% -5% -7% 6%;
  border-radius: 50% 50% 35% 35%;
  background: linear-gradient(145deg, rgba(200,169,106,0.28), rgba(255,255,255,0.18) 45%, rgba(1,74,86,0.18));
  content: "";
  filter: blur(4px);
  transform: rotate(5deg);
}
.hero-image-frame {
  padding: 10px;
  border-color: rgba(255,255,255,0.92);
  background: linear-gradient(145deg, rgba(255,255,255,0.75), rgba(255,255,255,0.25));
  box-shadow: 0 45px 110px rgba(0,45,53,0.2), inset 0 1px rgba(255,255,255,0.95);
  animation: campaignFloat 8s var(--ease-luxury) infinite;
}
.hero-image-frame::before {
  position: absolute;
  z-index: 1;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.hero-image-frame img { filter: saturate(0.92) contrast(1.02); }
.hero-seal {
  border: 1px solid rgba(230,211,167,0.75);
  background: linear-gradient(145deg, rgba(1,74,86,0.94), rgba(0,52,61,0.83));
  box-shadow: 0 16px 38px rgba(0,45,53,0.26), inset 0 0 0 5px rgba(255,255,255,0.08);
  animation: sealPulse 4s ease-in-out infinite;
}
.hero-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(200,169,106,0.25);
  border-radius: 50%;
  pointer-events: none;
}
.hero-line-one { top: 15%; right: 5%; width: 180px; height: 180px; animation: slowSpin 18s linear infinite; }
.hero-line-two { bottom: 11%; left: 5%; width: 115px; height: 115px; border-style: dashed; animation: slowSpin 14s linear infinite reverse; }
.hero-spark { position: absolute; z-index: 3; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 22px 7px rgba(230,211,167,0.38); animation: spark 3s ease-in-out infinite; }
.spark-one { top: 10%; right: 4%; }
.spark-two { bottom: 18%; left: 1%; animation-delay: 1.4s; }
.botanical { position: absolute; z-index: 3; width: 75px; height: 140px; border-left: 1px solid rgba(1,74,86,0.3); border-radius: 50%; opacity: 0.8; }
.botanical::before, .botanical::after { position: absolute; width: 35px; height: 17px; border: 1px solid rgba(1,74,86,0.26); border-radius: 100% 0 100% 0; content: ""; }
.botanical::before { top: 35px; left: -33px; transform: rotate(25deg); }
.botanical::after { top: 72px; left: 1px; transform: rotate(155deg); }
.botanical-one { top: 3%; left: -8%; transform: rotate(-20deg); }
.botanical-two { right: -7%; bottom: 3%; transform: rotate(160deg); }

.values {
  background:
    radial-gradient(circle at 50% 0, rgba(200,169,106,0.08), transparent 28%),
    var(--white);
}
.value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(145deg, rgba(200,169,106,0.5), rgba(1,74,86,0.08), transparent) border-box;
  box-shadow: 0 20px 50px rgba(0,52,61,0.07);
}
.value-card::after {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(200,169,106,0.1);
  content: "";
  transition: transform 600ms var(--ease-luxury), background 600ms ease;
}
.value-card:hover::after { background: rgba(200,169,106,0.16); transform: scale(1.55); }
.value-icon {
  position: relative;
  border: 1px solid rgba(200,169,106,0.25);
  box-shadow: 0 10px 26px rgba(200,169,106,0.16);
  transition: transform 450ms var(--ease-luxury), background 450ms ease;
}
.value-card:hover .value-icon { background: var(--petroleum); color: var(--gold-light); transform: rotate(-8deg) scale(1.08); }
.card-glow { position: absolute; inset: auto 15% -30px; height: 35px; border-radius: 50%; background: rgba(1,74,86,0.13); filter: blur(25px); opacity: 0; transition: opacity 400ms ease; }
.value-card:hover .card-glow { opacity: 1; }

.about {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.36), transparent 42%),
    radial-gradient(circle at 92% 20%, rgba(1,74,86,0.09), transparent 28%),
    var(--cream);
}
.about::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(1,74,86,0.13) 0.6px, transparent 0.7px);
  background-size: 13px 13px;
  content: "";
  opacity: 0.12;
}
.about-glow { position: absolute; top: 12%; left: -8%; width: 360px; height: 360px; border-radius: 50%; background: rgba(200,169,106,0.16); filter: blur(80px); }
.about-art {
  border-radius: 48% 48% 32px 32px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.16), transparent 20%),
    linear-gradient(155deg, var(--petroleum-dark), var(--petroleum-soft));
  box-shadow: 0 42px 95px rgba(0,45,53,0.22);
}
.about-art::after { position: absolute; inset: 18px; border: 1px solid rgba(230,211,167,0.22); border-radius: inherit; content: ""; }
.about-monogram { text-shadow: 0 18px 35px rgba(0,0,0,0.12); }
.about-copy {
  position: relative;
  padding: 52px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.42);
  box-shadow: 0 25px 70px rgba(0,52,61,0.08);
  backdrop-filter: blur(13px);
}
.about-copy blockquote {
  position: relative;
  padding: 25px 25px 25px 38px;
  border: 1px solid rgba(200,169,106,0.26);
  border-inline-start: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255,255,255,0.58);
  box-shadow: 0 13px 32px rgba(0,52,61,0.06);
}
html[dir="rtl"] .about-copy blockquote { padding: 25px 38px 25px 25px; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

.products {
  background:
    radial-gradient(circle at 8% 10%, rgba(1,74,86,0.07), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(200,169,106,0.1), transparent 27%),
    var(--ivory);
}
.product-grid { gap: 28px; }
.product-card {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  background: linear-gradient(rgba(255,255,255,0.76), rgba(255,255,255,0.66)) padding-box, linear-gradient(145deg, rgba(255,255,255,0.95), rgba(200,169,106,0.42), rgba(1,74,86,0.14)) border-box;
  box-shadow: 0 22px 55px rgba(0,52,61,0.09), inset 0 1px rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
}
.product-card:hover { box-shadow: 0 38px 80px rgba(0,52,61,0.16); transform: translateY(-12px); }
.product-shine {
  position: absolute;
  z-index: 4;
  top: -35%;
  left: -85%;
  width: 55%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
  opacity: 0;
  pointer-events: none;
  transform: rotate(18deg);
  transition: left 850ms var(--ease-luxury), opacity 250ms ease;
}
.product-card:hover .product-shine { left: 135%; opacity: 0.85; }
.product-image-wrap {
  margin: 10px;
  padding: 0;
  border-radius: 19px;
  background: var(--cream);
  overflow: hidden;
}
.product-image-wrap::after { z-index: 2; }
.product-image { border-radius: 19px; transition: transform 850ms var(--ease-luxury), filter 500ms ease; }
.product-card:hover .product-image { filter: saturate(1.05); transform: scale(1.065) translateY(-3px); }
.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 100px;
  color: var(--petroleum-dark);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 20px rgba(0,52,61,0.08);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
html[dir="rtl"] .product-badge { right: 14px; left: auto; letter-spacing: 0; }
.product-price { display: flex; align-items: center; gap: 9px; }
.product-price::before { width: 17px; height: 1px; background: var(--gold); content: ""; }

.safety {
  background:
    linear-gradient(180deg, var(--white), #f9f7f1);
}
.safety-item {
  position: relative;
  border-color: rgba(1,74,86,0.09);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 10px 28px rgba(0,52,61,0.045);
  overflow: hidden;
  transition: transform 380ms var(--ease-luxury), border-color 380ms ease, box-shadow 380ms ease, background 380ms ease;
}
.safety-item::after { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: linear-gradient(var(--gold), var(--petroleum)); content: ""; transform: scaleY(0); transition: transform 380ms var(--ease-luxury); }
html[dir="rtl"] .safety-item::after { right: 0; left: auto; }
.safety-item:hover { border-color: rgba(200,169,106,0.28); background: var(--white); box-shadow: 0 18px 38px rgba(0,52,61,0.08); transform: translateY(-4px); }
.safety-item:hover::after { transform: scaleY(1); }
.safety-mark { border: 1px solid rgba(1,74,86,0.11); transition: transform 350ms var(--ease-luxury), background 350ms ease, color 350ms ease; }
.safety-item:hover .safety-mark { color: var(--gold-light); background: var(--petroleum); transform: scale(1.08); }

.cta { background: linear-gradient(180deg, #f9f7f1, var(--white)); }
.cta-card {
  padding-block: 100px;
  background:
    radial-gradient(circle at 75% 28%, rgba(255,255,255,0.15), transparent 18%),
    radial-gradient(circle at 15% 100%, rgba(200,169,106,0.18), transparent 29%),
    linear-gradient(130deg, #002f37, var(--petroleum) 62%, #0a6875);
  box-shadow: 0 40px 100px rgba(0,45,53,0.23), inset 0 1px rgba(255,255,255,0.15);
}
.cta-card::before { position: absolute; inset: 12px; border: 1px solid rgba(230,211,167,0.22); border-radius: calc(var(--radius-lg) - 8px); content: ""; pointer-events: none; }
.cta-orbit { position: absolute; border: 1px solid rgba(230,211,167,0.2); border-radius: 50%; }
.cta-orbit-one { top: -170px; right: -80px; width: 390px; height: 390px; }
.cta-orbit-two { right: 80px; bottom: -190px; width: 300px; height: 300px; border-style: dashed; }
.cta-star { position: absolute; top: 48px; right: 65px; color: var(--gold-light); font-size: 1.4rem; animation: spark 3s ease-in-out infinite; }
html[dir="rtl"] .cta-star { right: auto; left: 65px; }
.button-light { box-shadow: 0 14px 30px rgba(0,0,0,0.14); }
.button-outline-light { backdrop-filter: blur(10px); }

.cart-overlay { background: rgba(0,31,37,0.48); backdrop-filter: blur(10px) saturate(80%); }
.cart-drawer {
  border-left: 1px solid rgba(255,255,255,0.65);
  background:
    radial-gradient(circle at 100% 0, rgba(200,169,106,0.16), transparent 22%),
    rgba(251,248,241,0.94);
  box-shadow: -30px 0 90px rgba(0,24,29,0.22);
  backdrop-filter: blur(24px);
  transition-duration: 480ms;
  transition-timing-function: var(--ease-luxury);
}
html[dir="rtl"] .cart-drawer { border-right: 1px solid rgba(255,255,255,0.65); border-left: 0; }
.cart-header { background: rgba(255,255,255,0.42); backdrop-filter: blur(14px); }
.cart-item {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(1,74,86,0.09);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 25px rgba(0,52,61,0.05);
  animation: cartItemIn 420ms var(--ease-luxury) both;
}
.cart-item-image { box-shadow: 0 8px 20px rgba(0,52,61,0.12); }
.quantity-control { background: var(--white); box-shadow: inset 0 1px 3px rgba(0,52,61,0.05); }
.quantity-control button { transition: transform 200ms ease, background 200ms ease, color 200ms ease; }
.quantity-control button:hover { color: var(--white); background: var(--petroleum); transform: scale(1.08); }
.empty-cart-symbol { box-shadow: 0 0 0 10px rgba(200,169,106,0.08); animation: emptyFloat 4s ease-in-out infinite; }
.cart-count { box-shadow: 0 4px 12px rgba(169,135,79,0.38); }
.cart-trigger.cart-bump { animation: cartBump 600ms var(--ease-luxury); }
.cart-count.badge-pulse { animation: badgePulse 700ms ease; }

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 850ms var(--ease-luxury), transform 850ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

@keyframes campaignFloat { 0%, 100% { transform: translate3d(0,0,0) rotate(-0.35deg); } 50% { transform: translate3d(0,-14px,0) rotate(0.35deg); } }
@keyframes sealPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes spark { 0%, 100% { opacity: 0.45; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.35); } }
@keyframes cartBump { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.16) rotate(-8deg); } 70% { transform: scale(0.96) rotate(3deg); } }
@keyframes badgePulse { 0% { box-shadow: 0 0 0 0 rgba(200,169,106,0.6); } 100% { box-shadow: 0 0 0 13px rgba(200,169,106,0); } }
@keyframes cartItemIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes emptyFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes auroraDriftOne {
  0% { transform: translate3d(0, 0, 0) scale(0.92); }
  50% { transform: translate3d(-70px, 45px, 0) scale(1.1); }
  100% { transform: translate3d(25px, 80px, 0) scale(0.98); }
}
@keyframes auroraDriftTwo {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(85px, -35px, 0) scale(0.9); }
  100% { transform: translate3d(145px, -75px, 0) scale(1.08); }
}
@keyframes particleRise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.6); }
  15% { opacity: 0.8; }
  70% { opacity: 0.45; }
  100% { opacity: 0; transform: translate3d(35px, -95vh, 0) scale(1.25); }
}

@media (max-width: 1024px) {
  .hero { min-height: 100vh; }
  .hero-inner { grid-template-columns: 0.95fr 1.05fr; }
  .about-copy { padding: 38px; }
  .product-grid { gap: 18px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0; }
  .main-nav { backdrop-filter: blur(26px) saturate(130%); }
  .main-nav a { opacity: 0; transform: translateY(-5px); transition: opacity 300ms ease, transform 300ms ease; }
  .main-nav.open a { opacity: 1; transform: translateY(0); }
  .main-nav.open a:nth-child(2) { transition-delay: 45ms; }
  .main-nav.open a:nth-child(3) { transition-delay: 90ms; }
  .main-nav.open a:nth-child(4) { transition-delay: 135ms; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy::before { left: 50%; transform: translateX(-50%); }
  html[dir="rtl"] .hero-copy::before { right: auto; left: 50%; }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { transform: none; }
  .hero-line, .botanical-two { display: none; }
  .hero-aurora { opacity: 0.3; filter: blur(85px); }
  .hero-particles span:nth-child(even) { display: none; }
  .about-copy { padding: 34px; }
  .cta-card { padding-block: 75px; }
}

@media (max-width: 480px) {
  :root { --shell: min(100% - 24px, 1180px); }
  .section { padding: 68px 0; }
  .hero { padding-top: 112px; }
  .hero-copy h1 { font-size: clamp(4.2rem, 24vw, 5.8rem); }
  .hero-copy::before, .botanical { display: none; }
  .hero-aurora-one { right: -45%; width: 300px; height: 300px; }
  .hero-aurora-two { bottom: 15%; left: -55%; width: 340px; height: 340px; }
  .hero-image-frame { padding: 7px; box-shadow: 0 30px 70px rgba(0,45,53,0.17); }
  .section-heading h2, .about-copy h2, .cta-card h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .values-grid { gap: 12px; }
  .value-card { padding: 25px 21px; }
  .about-copy { padding: 27px 21px; border-radius: var(--radius-md); }
  .about-copy blockquote { padding: 20px; }
  html[dir="rtl"] .about-copy blockquote { padding: 20px; }
  .product-grid { gap: 16px; }
  .product-content { padding: 15px 20px 24px; }
  .product-actions { grid-template-columns: 1fr; }
  .safety-grid { gap: 9px; }
  .safety-item { padding: 17px; }
  .cta-card { padding: 58px 22px; }
  .cta-orbit-one { width: 270px; height: 270px; }
  .cta-star { top: 30px; right: 32px; }
  html[dir="rtl"] .cta-star { right: auto; left: 32px; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-image { width: 72px; height: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
