:root {
  --navy: #0b1f3a;
  --navy-soft: #16325a;
  --navy-muted: #2a4468;
  --gold: #c9a24a;
  --gold-deep: #a6852c;
  --gold-light: #e8d5a3;
  --gold-soft: rgba(201, 162, 74, 0.14);
  --ivory: #f7f3ea;
  --cream: #fffdf8;
  --paper: #ffffff;
  --ink: #1a2332;
  --muted: #6b7280;
  --line: rgba(11, 31, 58, 0.08);
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(201, 162, 74, 0.12), transparent 50%),
    radial-gradient(900px 420px at -10% 0%, rgba(11, 31, 58, 0.06), transparent 45%),
    var(--cream);
  color: var(--ink);
  font-family: 'Vazirmatn', system-ui, sans-serif;
  line-height: 1.9;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

img { max-width: 100%; height: auto; }

a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-deep); }

.oe-main { min-height: 60vh; }

.oe-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.oe-brand {
  font-family: 'Playfair Display', 'Vazirmatn', serif;
  letter-spacing: 0.18em;
  font-weight: 700;
}

/* Header */
.oe-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.oe-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  background: rgba(255, 253, 248, 0.96);
}

.oe-ratebar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
}

.oe-ratebar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.oe-ratebar b { color: var(--gold-light); font-weight: 700; }

.oe-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.oe-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--navy);
}

.oe-logo img,
.oe-footer-logo img {
  display: block;
  height: 56px;
  width: auto;
}

.oe-footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.oe-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oe-menu a {
  position: relative;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--navy-muted);
  font-weight: 500;
}

.oe-menu a:after {
  content: '';
  position: absolute;
  right: 12px;
  left: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.oe-menu a:hover,
.oe-menu a.is-active { color: var(--navy); }
.oe-menu a:hover:after,
.oe-menu a.is-active:after { transform: scaleX(1); }

.oe-nav-actions { display: flex; align-items: center; gap: 10px; }

.oe-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}

/* Buttons */
.oe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.oe-btn:hover { transform: translateY(-2px); color: inherit; }

.oe-btn-gold {
  background: linear-gradient(180deg, #e2c36d, var(--gold) 45%, var(--gold-deep));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(201, 162, 74, 0.28);
}

.oe-btn-navy {
  background: var(--navy);
  color: #fff;
}

.oe-btn-navy:hover { color: #fff; }

.oe-btn-line {
  background: transparent;
  border-color: rgba(11, 31, 58, 0.16);
  color: var(--navy);
}

.oe-btn-full { width: 100%; }

.oe-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.oe-btn.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.oe-otp-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: #18794e;
}

.oe-otp-note.is-error { color: #b42318; }

/* Hero */
.oe-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

.oe-hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.oe-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 380px at 82% 18%, rgba(201, 162, 74, 0.14), transparent 58%),
    radial-gradient(520px 320px at 8% 88%, rgba(11, 31, 58, 0.05), transparent 55%);
}

.oe-hero-content {
  position: relative;
  z-index: 2;
}

.oe-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.oe-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 18px;
  font-weight: 800;
}

.oe-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #a6852c, #e8d5a3 40%, #c9a24a 70%, #7a5c18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.oe-hero p.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0;
}

.oe-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.oe-hero-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.oe-hero-card:before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 18px;
  pointer-events: none;
}

.oe-hero-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.oe-hero-price {
  font-size: 32px;
  margin: 8px 0 0;
}

.oe-hero-card .oe-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #18794e;
  font-weight: 700;
}

.oe-hero-card .oe-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.oe-hero-label {
  margin: 0 0 28px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.oe-hero-label:after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 14px;
  background: var(--gold);
}

.oe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.oe-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.oe-stat div {
  background: var(--ivory);
  border-radius: 16px;
  padding: 14px;
}

.oe-stat span { display: block; color: var(--muted); font-size: 12px; }
.oe-stat strong { color: var(--navy); font-size: 16px; line-height: 1.5; }

/* Sections */
.oe-section { padding: 72px 0; }
.oe-section-head { margin-bottom: 32px; }
.oe-section-head h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
}
.oe-section-head p { margin: 0; color: var(--muted); }

.oe-grid-3, .oe-grid-4, .oe-products {
  display: grid;
  gap: 20px;
}

.oe-grid-3 { grid-template-columns: repeat(3, 1fr); }
.oe-grid-4 { grid-template-columns: repeat(4, 1fr); }
.oe-products { grid-template-columns: repeat(3, 1fr); }

.oe-card, .oe-feature, .oe-product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.oe-feature, .oe-info-card, .oe-form-card, .oe-empty {
  padding: 24px;
}

.oe-feature h3, .oe-info-card h3 { color: var(--navy); margin-top: 0; }

.oe-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 22px;
  margin-bottom: 14px;
}

/* Products */
.oe-product {
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.oe-product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 74, 0.45);
}

.oe-product-media {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f3eee3, #fff);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.oe-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.oe-product:hover .oe-product-media img { transform: scale(1.06); }

.oe-product-body { padding: 18px 18px 20px; }
.oe-product-body h3 { margin: 0 0 6px; font-size: 18px; color: var(--navy); }
.oe-meta { color: var(--muted); font-size: 13px; display: flex; gap: 10px; flex-wrap: wrap; }
.oe-price { margin: 12px 0 16px; color: var(--navy); font-size: 20px; font-weight: 800; }
.oe-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.oe-badge-ok { background: #e8f6ee; color: #18794e; }
.oe-badge-off { background: #f3f4f6; color: #6b7280; }

/* Forms */
.oe-input, .oe-form-card select, textarea.oe-input {
  width: 100%;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #fff;
  border-radius: 14px;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-size: 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

textarea.oe-input { min-height: 120px; resize: vertical; }

.oe-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.16);
}

.oe-field { margin-bottom: 16px; }
.oe-field label { display: block; margin-bottom: 6px; color: var(--navy); font-weight: 600; }
.oe-error, .errorlist { color: #b42318; font-size: 13px; padding: 0; list-style: none; }

.oe-tel {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.oe-float {
  position: relative;
  margin-bottom: 16px;
}

.oe-float-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.oe-float .oe-input {
  min-height: 66px;
  padding: 26px 48px 10px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf8, #fff);
  border: 1px solid rgba(201, 162, 74, 0.28);
}

.oe-float textarea.oe-input {
  min-height: 140px;
  padding-top: 30px;
}

.oe-float-ico {
  position: absolute;
  top: 22px;
  right: 16px;
  color: var(--gold);
  font-size: 18px;
  pointer-events: none;
}

.oe-float label {
  position: absolute;
  top: 22px;
  right: 48px;
  left: 16px;
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  pointer-events: none;
  transition: top .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease);
}

.oe-float .oe-input:focus,
.oe-float .oe-input:not(:placeholder-shown) {
  border-color: var(--gold);
}

.oe-float .oe-input:focus + label,
.oe-float .oe-input:not(:placeholder-shown) + label,
.oe-float.is-otp label {
  top: 8px;
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}

.oe-float.is-error .oe-input { border-color: #d94c3f; }
.oe-float .errorlist { margin: 6px 8px 0; }

.oe-contact {
  position: relative;
  overflow: hidden;
  padding: 36px 0 80px;
}

.oe-contact .oe-hero-fx { z-index: 0; }
.oe-contact .oe-container { position: relative; z-index: 2; }

.oe-contact-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.oe-contact-head h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
}

.oe-contact-head p { color: var(--muted); margin: 0; font-size: 18px; }

.oe-contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.oe-contact-tile {
  display: block;
  padding: 22px 22px 20px;
  background: rgba(255,253,248,.86);
  border: 1px solid rgba(201, 162, 74, 0.22);
  box-shadow: var(--shadow-soft);
}

.oe-contact-tile i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}

.oe-contact-tile span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.oe-contact-tile strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--navy);
  font-size: 20px;
}

.oe-contact-tile small { color: var(--muted); }

.oe-contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.oe-salon-frame {
  background: rgba(255,253,248,.9);
  border: 1px solid rgba(201, 162, 74, 0.28);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  position: relative;
}

.oe-salon-frame:before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.2);
  pointer-events: none;
}

.oe-salon-frame h2 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 28px;
}

.oe-salon-frame > p { color: var(--muted); margin-bottom: 22px; }

.oe-salon-form { position: relative; z-index: 1; }

.oe-checkout-form-title {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 28px;
}

.oe-visit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.oe-visit-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
}

.oe-visit-list i { color: var(--gold); font-size: 18px; }
.oe-visit-list span { display: block; color: var(--muted); font-size: 12px; }
.oe-visit-list b,
.oe-visit-list a { color: var(--navy); }

.oe-map {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
  background: var(--ivory);
}

.oe-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}

.oe-otp-input {
  text-align: center;
  letter-spacing: 0.4em;
  font-size: 24px;
  font-weight: 800;
}

.oe-auth {
  width: min(520px, 100%);
  margin: 0;
}

.oe-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

/* Status */
.status-pending, .status-confirmed, .status-processing, .status-ready, .status-delivered, .status-cancelled {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.status-pending { background: #fff4d6; color: #8a6d12; }
.status-confirmed { background: #e8eef8; color: var(--navy); }
.status-processing { background: #e7f0ff; color: #1d4ed8; }
.status-ready { background: #e6f7f3; color: #0f766e; }
.status-delivered { background: #e8f6ee; color: #18794e; }
.status-cancelled { background: #fde8e8; color: #b42318; }

.oe-table { width: 100%; border-collapse: collapse; }
.oe-table th, .oe-table td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: right; }
.oe-table th { color: var(--muted); font-weight: 600; font-size: 13px; }

.oe-invoice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.oe-invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

/* Footer */
.oe-footer {
  margin-top: 80px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  padding: 56px 0 24px;
}

.oe-footer a { color: rgba(255,255,255,.82); }
.oe-footer a:hover { color: var(--gold-light); }
.oe-footer h4 { color: #fff; margin-bottom: 16px; }
.oe-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.oe-footer ul { list-style: none; padding: 0; margin: 0; }
.oe-footer li { margin-bottom: 8px; }
.oe-copy {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.oe-messages { width: min(1180px, calc(100% - 32px)); margin: 16px auto 0; }
.oe-alert {
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.oe-alert-success { background: #e8f6ee; color: #18794e; }
.oe-alert-danger, .oe-alert-error { background: #fde8e8; color: #b42318; }
.oe-alert-info { background: #e7f0ff; color: #1d4ed8; }
.oe-alert-warning { background: #fff4d6; color: #8a6d12; }

.oe-page-hero {
  padding: 48px 0 10px;
}
.oe-page-hero h1 { color: var(--navy); margin: 0 0 8px; font-size: clamp(28px, 4vw, 42px); }
.oe-page-hero p { color: var(--muted); }

.oe-legal {
  position: relative;
  overflow: hidden;
  padding: 48px 0 88px;
}

.oe-legal .oe-hero-fx { z-index: 0; }
.oe-legal .oe-container { position: relative; z-index: 2; }

.oe-legal-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.oe-legal-head h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}

.oe-legal-head p { color: var(--muted); margin: 0 0 20px; }

.oe-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.oe-legal-nav a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  color: var(--navy-muted);
  font-size: 13px;
  font-weight: 600;
}

.oe-legal-nav a.is-on,
.oe-legal-nav a:hover {
  border-color: rgba(201, 162, 74, 0.45);
  background: var(--gold-soft);
  color: var(--navy);
}

.oe-legal-card {
  width: min(820px, 100%);
  margin: 0 auto;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(201, 162, 74, 0.28);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}

.oe-legal-card:before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  pointer-events: none;
}

.oe-legal-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px 22px;
  border-bottom: 1px solid rgba(201, 162, 74, 0.16);
}

.oe-legal-item:last-child { border-bottom: 0; }

.oe-legal-item span {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.oe-legal-item h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.oe-legal-item p { color: #2b3340; margin: 0 0 10px; }
.oe-legal-item p:last-child { margin-bottom: 0; }
.oe-legal-item .oe-btn { margin-top: 12px; }

.oe-legal-item.is-focus {
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.1), transparent 70%);
}

.oe-legal-hint {
  padding: 12px 14px;
  margin: 0 0 18px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 74, 0.28);
  color: var(--navy);
  font-size: 13px;
}

.oe-legal-hint a { color: var(--gold-deep); font-weight: 700; }

@media (max-width: 760px) {
  .oe-legal-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 14px;
  }
}

.oe-article img { border-radius: 18px; }
.oe-article .content { color: #2b3340; }

.oe-journal {
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
}

.oe-journal .oe-hero-fx,
.oe-story .oe-hero-fx { z-index: 0; }

.oe-journal .oe-container,
.oe-story .oe-container { position: relative; z-index: 2; }

.oe-journal-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.oe-journal-head h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.2;
}

.oe-journal-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.oe-journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.oe-journal-tags a {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--navy-muted);
  font-size: 13px;
  font-weight: 600;
}

.oe-journal-tags a:hover,
.oe-journal-tags a.is-on {
  border-color: rgba(201, 162, 74, 0.45);
  background: var(--gold-soft);
  color: var(--navy);
}

.oe-journal-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.oe-journal-feature-media {
  min-height: 420px;
  background: linear-gradient(180deg, #f4efe4, #fff);
}

.oe-journal-feature-media img,
.oe-journal-card-media img,
.oe-story-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oe-journal-feature-media span,
.oe-journal-card-media span {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 220px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.oe-journal-feature-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oe-journal-feature-body span {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.oe-journal-feature-body h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
}

.oe-journal-feature-body p,
.oe-journal-card-body p {
  color: var(--muted);
  margin: 0 0 18px;
}

.oe-journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.oe-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.oe-journal-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.oe-journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.oe-journal-card-media {
  aspect-ratio: 1.35;
  background: linear-gradient(180deg, #f4efe4, #fff);
}

.oe-journal-card-body { padding: 20px 20px 22px; }

.oe-journal-card-body span {
  color: var(--gold-deep);
  font-size: 12px;
}

.oe-journal-card-body h3 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.oe-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--muted);
}

.oe-pager a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  color: var(--navy);
}

.oe-story { position: relative; overflow: hidden; padding: 36px 0 72px; }

.oe-story-head { margin-bottom: 28px; }

.oe-story-back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 13px;
}

.oe-story-head h1 {
  max-width: 860px;
  margin: 10px 0 16px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.3;
  font-weight: 600;
}

.oe-story-cover {
  margin: 0 0 36px;
  overflow: hidden;
  max-height: 520px;
}

.oe-story-body {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #2b3340;
  font-size: 18px;
  line-height: 2;
}

.oe-story-body h2,
.oe-story-body h3 {
  color: var(--navy);
  margin: 32px 0 12px;
}

.oe-story-body p { margin: 0 0 18px; }

.oe-story-body img {
  width: 100%;
  border-radius: 0;
  margin: 20px 0;
}

.oe-story-body blockquote {
  margin: 28px 0;
  padding: 8px 22px;
  border-right: 2px solid var(--gold);
  color: var(--navy);
  font-size: 22px;
  line-height: 1.8;
}

.oe-story-tags { justify-content: center; }

.oe-blog { padding-bottom: 72px; }

.oe-blog-hero {
  padding: 48px 0 28px;
}

.oe-blog-hero h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}

.oe-blog-hero p { color: var(--muted); margin: 0 0 16px; }

.oe-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.oe-crumb a { color: var(--navy-muted); }
.oe-crumb a:hover { color: var(--gold-deep); }

.oe-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.oe-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.oe-blog-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.oe-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.oe-blog-card-media {
  position: relative;
  aspect-ratio: 1.55;
  background: linear-gradient(180deg, #f4efe4, #fff);
}

.oe-blog-card-media img,
.oe-blog-cover img,
.oe-blog-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oe-blog-card-media span,
.oe-blog-mini-media span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--gold);
  font-weight: 700;
}

.oe-blog-card-media em {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: var(--navy);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
}

.oe-blog-card-body { padding: 18px 18px 20px; }

.oe-blog-card-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
}

.oe-blog-card-body p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
}

.oe-blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.oe-blog-side { display: grid; gap: 16px; }

.oe-blog-widget,
.oe-blog-cta,
.oe-blog-post {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.oe-blog-widget h4,
.oe-blog-cta span {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
}

.oe-blog-search { display: grid; gap: 10px; }

.oe-blog-cats,
.oe-blog-mini,
.oe-blog-latest {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oe-blog-cats a,
.oe-blog-latest li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.oe-blog-cats a.is-on,
.oe-blog-cats a:hover { color: var(--gold-deep); }

.oe-blog-cats b {
  color: var(--muted);
  font-weight: 600;
}

.oe-blog-mini li { margin-bottom: 14px; }

.oe-blog-mini a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}

.oe-blog-mini-media {
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: var(--ivory);
}

.oe-blog-mini strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
}

.oe-blog-mini small,
.oe-blog-latest small {
  color: var(--muted);
  font-size: 12px;
}

.oe-blog-latest a { display: block; padding: 0; border: 0; }
.oe-blog-latest li { display: block; }

.oe-blog-cta {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

.oe-blog-cta span { color: var(--gold-light); display: block; }
.oe-blog-cta strong { display: block; margin-bottom: 16px; font-size: 20px; }

.oe-blog-post { padding: 28px 28px 32px; }

.oe-blog-post h1 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
}

.oe-blog-cover {
  margin: 22px 0 26px;
  overflow: hidden;
  max-height: 420px;
}

.oe-blog-content {
  color: #2b3340;
  font-size: 17px;
  line-height: 2;
}

.oe-blog-content h2,
.oe-blog-content h3 { color: var(--navy); margin: 28px 0 12px; }
.oe-blog-content p { margin: 0 0 16px; }
.oe-blog-content img { width: 100%; margin: 16px 0; }

.oe-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.oe-pager a,
.oe-pager span {
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.oe-pager .is-on,
.oe-pager a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

@media (max-width: 991px) {
  .oe-journal-feature,
  .oe-journal-grid,
  .oe-blog-layout,
  .oe-blog-grid,
  .oe-contact-tiles,
  .oe-contact-layout,
  .oe-float-row { grid-template-columns: 1fr; }
  .oe-journal-feature-media { min-height: 260px; }
  .oe-journal-feature-body { padding: 24px 20px 28px; }
  .oe-blog-post { padding: 20px; }
  .oe-salon-frame { padding: 24px 18px; }
}

.quick-call-btn {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  text-align: center;
  background: linear-gradient(180deg, #e2c36d, var(--gold));
  color: var(--navy);
  padding: 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(201, 162, 74, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) forwards;
}

.reveal-d1 { animation-delay: .08s; }
.reveal-d2 { animation-delay: .16s; }
.reveal-d3 { animation-delay: .24s; }
.reveal-d4 { animation-delay: .32s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 991px) {
  .oe-hero-bottom, .oe-hero-grid, .oe-grid-3, .oe-grid-4, .oe-products, .oe-split, .oe-footer-grid {
    grid-template-columns: 1fr;
  }
  .oe-hero-rate {
    padding: 24px 0 0;
    border-right: 0;
    border-top: 1px solid rgba(201, 162, 74, 0.35);
  }
  .oe-hero { padding: 56px 0 48px; }
  .oe-hero h1 { margin-bottom: 32px; }
  .oe-checkout-grid,
  .oe-checkout-title { grid-template-columns: 1fr; display: grid; }
  .oe-checkout-piece { position: static; }
  .oe-checkout-desk { padding: 24px 20px; }
  .oe-logo img,
  .oe-footer-logo img { height: 48px; }
  .oe-burger { display: grid; place-items: center; }
  .oe-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .oe-menu.is-open { display: flex; }
  .oe-nav-actions .oe-btn-line { display: none; }
  .quick-call-btn { display: block; }
  .oe-table { display: block; overflow-x: auto; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes scanMove {
  0% { top: -10%; }
  100% { top: 95%; }
}

@keyframes wave {
  0%, 100% { height: 22%; }
  50% { height: 100%; }
}

.oe-hero-spot {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(540px 380px at 70% 30%, rgba(201, 162, 74, 0.2), transparent 55%),
    radial-gradient(900px 520px at 15% 20%, rgba(11, 31, 58, 0.08), transparent 50%);
}

.oe-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.oe-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.oe-orb-1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: 8%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 213, 163, 0.7), rgba(201, 162, 74, 0.12) 55%, transparent 70%);
}

.oe-orb-2 {
  width: 180px;
  height: 180px;
  right: 12%;
  bottom: 18%;
  background: radial-gradient(circle at 40% 40%, rgba(11, 31, 58, 0.16), transparent 70%);
}

.oe-orb-3 {
  width: 90px;
  height: 90px;
  top: 22%;
  right: 28%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.45), transparent 70%);
}

/* Auth page */
.is-auth-page .oe-main { min-height: auto; }
.is-auth-page .oe-footer { margin-top: 0; }

.oe-auth-stage {
  --mx: 30%;
  --my: 20%;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
  perspective: 1400px;
}

.oe-auth-stage .oe-hero-fx { z-index: 0; }

.oe-auth-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.oe-auth-visual {
  padding: 12px 8px;
}

.oe-auth-visual h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--navy);
  margin: 12px 0 14px;
}

.oe-auth-visual p {
  color: var(--muted);
  max-width: 440px;
  font-size: 17px;
}

.oe-auth-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.oe-auth-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.oe-auth-card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.1);
  backdrop-filter: blur(22px);
  position: relative;
}

.oe-auth-card:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.oe-auth-card h1 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.oe-auth-card .oe-btn {
  margin-top: 6px;
}

.oe-phone-preview {
  direction: ltr;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Checkout */
.oe-checkout {
  padding: 56px 0 80px;
}

.oe-checkout-head {
  margin-bottom: 36px;
}

.oe-checkout-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.oe-checkout-title h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}

.oe-steps {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}

.oe-steps li { position: relative; }
.oe-steps .is-current { color: var(--navy); font-weight: 700; }
.oe-steps .is-done { color: var(--gold-deep); }

.oe-checkout-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.oe-checkout-piece {
  position: sticky;
  top: 96px;
}

.oe-piece-card {
  background: #fffdf8;
  border: 1px solid rgba(201, 162, 74, 0.32);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.oe-piece-card:before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 74, 0.2);
  pointer-events: none;
  z-index: 2;
}

.oe-checkout-photo {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f4efe4, #fff);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.oe-checkout-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-checkout-photo em {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(11, 31, 58, 0.88);
  color: var(--gold-light);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 6px 10px;
}

.oe-checkout-meta {
  position: relative;
  z-index: 3;
  padding: 22px 22px 24px;
}

.oe-checkout-meta h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}

.oe-piece-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.oe-piece-specs div {
  padding: 12px 12px 10px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
}

.oe-piece-specs span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.oe-piece-specs b {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-top: 2px;
}

.oe-piece-specs div:last-child { grid-column: 1 / -1; }

.oe-piece-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 16px;
  padding: 18px 18px 16px;
  background: linear-gradient(90deg, #0b1f3a, #16325a);
  color: #fff;
}

.oe-piece-total span {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.oe-piece-total strong {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.oe-piece-total small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.oe-checkout-desk {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(201, 162, 74, 0.24);
  box-shadow: var(--shadow-soft);
  padding: 36px 32px;
  position: relative;
}

.oe-checkout-desk:before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.16);
  pointer-events: none;
}

.oe-checkout-desk > * { position: relative; z-index: 1; }

.oe-checkout-note {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 46ch;
}

.oe-checkout-resend { margin-top: 12px; }

@media (max-width: 991px) {
  .oe-auth-layout { grid-template-columns: 1fr; }
  .oe-auth-visual { display: none; }
  .oe-hero { min-height: auto; padding: 48px 0 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .oe-scan, .oe-wave span { animation: none; }
  .oe-slip { animation: none; transform: none; }
}

/* Order receipt */
.is-receipt-page .oe-messages { display: none; }
.is-receipt-page .oe-footer { margin-top: 0; }

.oe-receipt {
  position: relative;
  overflow: hidden;
  padding: 36px 0 72px;
  min-height: calc(100vh - 88px);
  perspective: 1400px;
}

.oe-receipt .oe-hero-fx { z-index: 0; }

.oe-receipt .oe-container { position: relative; z-index: 2; }

.oe-receipt-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.oe-receipt-toolbar h1 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
}

.oe-receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.oe-slip {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), #fffdf8 38%, #fff);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 8px;
  padding: 36px 34px 28px;
  box-shadow:
    0 30px 80px rgba(11, 31, 58, 0.12),
    inset 0 0 0 1px rgba(255,255,255,.8);
  transform-origin: top center;
  animation: slipOpen 0.9s var(--ease) both;
}

.oe-slip:before,
.oe-slip:after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.oe-slip:before {
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.35);
}

.oe-slip:after {
  inset: 14px;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.oe-slip-ornament {
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 0 0, rgba(201,162,74,.18), transparent 70%);
  pointer-events: none;
}

.oe-slip-head,
.oe-slip-item,
.oe-slip-meta,
.oe-slip-foot {
  position: relative;
  z-index: 1;
}

.oe-slip-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(201, 162, 74, 0.28);
}

.oe-slip-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.oe-slip-brand img {
  height: 58px;
  width: auto;
  display: block;
}

.oe-slip-brand span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.oe-slip-brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.oe-slip-serial {
  text-align: left;
}

.oe-slip-serial span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.oe-slip-serial b {
  display: block;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.oe-slip-serial small {
  color: var(--muted);
  font-size: 13px;
}

.oe-slip-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.oe-slip-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f4efe4, #fff);
  border: 1px solid var(--line);
}

.oe-slip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oe-slip-photo span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--gold);
  font-weight: 700;
}

.oe-slip-specs > span {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.oe-slip-specs h2 {
  margin: 4px 0 14px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
}

.oe-slip-specs dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.oe-slip-specs dt {
  color: var(--muted);
  font-size: 12px;
}

.oe-slip-specs dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.oe-slip-total {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 8px 0 24px;
  padding: 22px 24px;
  background: linear-gradient(90deg, #0b1f3a, #16325a);
  color: #fff;
}

.oe-slip-total span {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.oe-slip-total strong {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.oe-slip-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.oe-slip-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.oe-slip-meta b {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.oe-slip-meta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.oe-slip-note {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}

.oe-slip-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px dashed rgba(201, 162, 74, 0.45);
}

.oe-slip-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.oe-slip-seal {
  width: 84px;
  height: 84px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold-deep);
  transform: rotate(-12deg);
  box-shadow: inset 0 0 0 4px rgba(201, 162, 74, 0.18);
}

.oe-slip-seal span {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.oe-slip-seal small {
  display: block;
  letter-spacing: 0.18em;
  font-size: 10px;
}

@keyframes slipOpen {
  0% {
    opacity: 0;
    transform: translateY(36px) rotateX(16deg) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .oe-receipt-toolbar,
  .oe-slip-head,
  .oe-slip-item,
  .oe-slip-meta,
  .oe-slip-total,
  .oe-slip-foot {
    display: grid;
    grid-template-columns: 1fr;
    text-align: right;
  }
  .oe-slip { padding: 26px 18px 20px; }
  .oe-slip-serial { text-align: right; }
  .oe-slip-specs dl { grid-template-columns: 1fr 1fr; }
  .oe-receipt-actions { justify-content: flex-start; }
  .oe-slip-seal { justify-self: start; }
}

@media print {
  .oe-header, .oe-footer, .oe-nav-actions, .quick-call-btn, .no-print, .oe-messages, .oe-hero-fx {
    display: none !important;
  }
  body, .oe-receipt {
    background: #fff !important;
    padding: 0 !important;
    min-height: 0 !important;
  }
  .oe-slip {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    animation: none;
    transform: none;
  }
  .oe-invoice { box-shadow: none; border: 0; }
}
