:root {
  --bg: #0e1116;
  --bg-soft: #171b23;
  --card: #1f2530;
  --text: #f6f7fb;
  --muted: #b6bdcc;
  --accent: #ff5a1f;
  --accent-2: #ff8744;
  --danger: #ff3d2e;
  --line: #2e3644;
  --btn-secondary-border: #58709a;
  --btn-secondary-text: #f4f7ff;
  --btn-secondary-bg: linear-gradient(145deg, rgba(35, 49, 71, 0.97), rgba(20, 31, 47, 0.97));
  --btn-secondary-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(8, 13, 22, 0.28);
  --btn-secondary-hover-border: #7f9ac2;
  --btn-secondary-hover-bg: linear-gradient(145deg, rgba(47, 63, 90, 0.98), rgba(28, 41, 62, 0.98));
  --btn-secondary-hover-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(8, 13, 22, 0.34),
    0 0 20px rgba(111, 137, 173, 0.24);
  --mobile-nav-panel:
    linear-gradient(160deg, rgba(15, 21, 31, 0.97), rgba(10, 15, 24, 0.96)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 102, 58, 0.12), transparent 68%);
  --mobile-nav-border: rgba(118, 138, 170, 0.28);
  --mobile-nav-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --mobile-nav-item-border: rgba(92, 112, 142, 0.34);
  --mobile-nav-item-text: #eef3ff;
  --mobile-nav-item-bg: linear-gradient(145deg, rgba(34, 46, 67, 0.82), rgba(21, 31, 47, 0.82));
  --mobile-nav-item-hover-border: rgba(128, 152, 188, 0.58);
  --mobile-nav-item-hover-bg: linear-gradient(145deg, rgba(42, 57, 82, 0.88), rgba(25, 37, 56, 0.88));
  --mobile-nav-item-active-border: rgba(255, 118, 72, 0.58);
  --mobile-nav-item-active-bg:
    linear-gradient(145deg, rgba(45, 58, 81, 0.9), rgba(25, 36, 55, 0.9)),
    radial-gradient(80% 90% at 100% 50%, rgba(255, 108, 62, 0.2), transparent 72%);
  --mobile-nav-item-active-ring: 0 0 0 1px rgba(255, 118, 72, 0.18);
  --box-border: rgba(255, 255, 255, 0.13);
  --box-bg:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 120, 75, 0.12), transparent 70%);
  --box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --box-hover-border: rgba(255, 140, 96, 0.48);
  --box-hover-shadow:
    0 16px 30px rgba(0, 0, 0, 0.26),
    0 0 16px rgba(255, 106, 57, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --container: min(1120px, 92vw);
  --header-h: 90px;
}

/* Global focus styles for accessibility */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip link styles */
.skip {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip:focus {
  top: 10px;
}

html[data-theme="light"] {
  --bg: #f6f8fc;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --text: #2d3c51;
  --muted: #5a6a7f;
  --line: #d7deea;
  --btn-secondary-border: #a9bdd9;
  --btn-secondary-text: #26405f;
  --btn-secondary-bg: linear-gradient(145deg, #ffffff, #edf3fb);
  --btn-secondary-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 16px rgba(35, 56, 86, 0.1);
  --btn-secondary-hover-border: #8ea8cc;
  --btn-secondary-hover-bg: linear-gradient(145deg, #ffffff, #e4edf9);
  --btn-secondary-hover-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 11px 22px rgba(29, 46, 72, 0.17);
  --mobile-nav-panel:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 102, 58, 0.08), transparent 68%);
  --mobile-nav-border: #c8d4e6;
  --mobile-nav-shadow:
    0 18px 36px rgba(23, 39, 61, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  --mobile-nav-item-border: #c5d2e5;
  --mobile-nav-item-text: #1f324d;
  --mobile-nav-item-bg: linear-gradient(145deg, #ffffff, #edf3fb);
  --mobile-nav-item-hover-border: #9db3cf;
  --mobile-nav-item-hover-bg: linear-gradient(145deg, #ffffff, #e6eef9);
  --mobile-nav-item-active-border: rgba(235, 108, 66, 0.62);
  --mobile-nav-item-active-bg:
    linear-gradient(145deg, #fff8f5, #eef3fb),
    radial-gradient(80% 90% at 100% 50%, rgba(255, 108, 62, 0.14), transparent 72%);
  --mobile-nav-item-active-ring: 0 0 0 1px rgba(255, 118, 72, 0.16);
  --box-border: #cdd8e8;
  --box-bg:
    linear-gradient(165deg, rgba(255, 255, 255, 0.985), rgba(246, 250, 255, 0.96)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 120, 75, 0.08), transparent 70%);
  --box-shadow:
    0 10px 20px rgba(25, 43, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --box-hover-border: #b8c9de;
  --box-hover-shadow:
    0 14px 26px rgba(25, 43, 68, 0.14),
    0 0 14px rgba(255, 122, 74, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  --shadow: 0 10px 26px rgba(10, 28, 56, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(1200px 550px at 85% -10%, rgba(255, 90, 31, 0.18), transparent 60%),
    radial-gradient(900px 460px at -10% -10%, rgba(255, 61, 46, 0.15), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="light"] body {
  background:
    radial-gradient(1200px 550px at 85% -10%, rgba(255, 90, 31, 0.13), transparent 60%),
    radial-gradient(900px 460px at -10% -10%, rgba(255, 61, 46, 0.1), transparent 60%),
    var(--bg);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-small {
  padding: 62px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

html[data-theme="light"] .section::before {
  background: linear-gradient(90deg, transparent, rgba(20, 35, 58, 0.12), transparent);
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand,
.nav-links a,
.menu-btn,
.btn,
.btn-outline,
.section-kicker {
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  color: var(--muted);
}

.topbar {
  background: linear-gradient(90deg, var(--accent), var(--danger));
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(8px);
  background: rgba(14, 17, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] header {
  background: rgba(246, 248, 252, 0.9);
  border-bottom: 1px solid rgba(20, 35, 58, 0.1);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand .brand-text {
  display: none;
}

.brand .brand-text span {
  color: var(--accent-2);
}

.brand-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
  transform: none;
}

.brand-logo-wrap {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  flex: 0 0 auto;
}

.menu-btn {
  display: none;
  background: linear-gradient(120deg, var(--accent), var(--danger));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255, 90, 31, 0.25);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  font-size: 1.08rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  flex: 0 0 auto;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.58);
  background: rgba(255, 90, 31, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #e8ecf7;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

html[data-theme="light"] .nav-links a {
  color: #31465f;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--danger));
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta-link {
  border: 1px solid rgba(255, 121, 74, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(120deg, rgba(255, 90, 31, 0.2), rgba(255, 61, 46, 0.14));
  color: #fff2ea;
  font-weight: 700;
}

.nav-links .nav-admin-link {
  display: none;
}

.nav-links .nav-cta-link::after {
  display: none;
}

.nav-links .nav-cta-link:hover,
.nav-links .nav-cta-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 136, 96, 0.62);
  background: linear-gradient(120deg, rgba(255, 90, 31, 0.28), rgba(255, 61, 46, 0.2));
}

html[data-theme="light"] .nav-links .nav-cta-link {
  color: #92391f;
  border-color: rgba(213, 101, 69, 0.45);
  background: linear-gradient(120deg, rgba(255, 146, 108, 0.26), rgba(255, 188, 161, 0.22));
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.admin-mobile-visible {
  display: none;
  padding: 9px 12px;
  font-size: 0.82rem;
  min-height: 40px;
}

.btn {
  background: linear-gradient(120deg, var(--accent), var(--danger));
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 90, 31, 0.25);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 90, 31, 0.35);
}

.btn-outline {
  border: 1px solid var(--btn-secondary-border);
  color: var(--btn-secondary-text);
  background: var(--btn-secondary-bg);
  box-shadow: var(--btn-secondary-shadow);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  border-color: var(--btn-secondary-hover-border);
  background: var(--btn-secondary-hover-bg);
  box-shadow: var(--btn-secondary-hover-shadow);
}

html[data-theme="light"] .btn-outline {
  font-weight: 800;
  letter-spacing: 0.01em;
  border-width: 1.5px;
}

html[data-theme="light"] .hero-ctas .btn-outline,
html[data-theme="light"] .cta-actions .btn-outline {
  padding-inline: 26px;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 14px;
  color: #ffe6dd;
  background: rgba(255, 90, 31, 0.12);
  margin-bottom: 18px;
}

.hero p {
  max-width: 56ch;
  margin-bottom: 26px;
}

.hero h1 strong {
  background: linear-gradient(90deg, #ffd2c2, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .hero h1 strong {
  background: linear-gradient(90deg, #ff5a1f, #d7362b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-item {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--box-shadow);
}

.meta-item strong {
  color: #fff;
  font-size: 1.02rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-showcase {
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero-showcase-frame {
  border-radius: 28px;
  padding: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.22), rgba(255, 78, 42, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 118, 72, 0.31),
    0 0 68px rgba(255, 78, 42, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  position: relative;
}

.hero-showcase-frame::before {
  content: "";
  position: absolute;
  inset: -8px -10px -10px -8px;
  border-radius: 34px;
  background: radial-gradient(70% 65% at 50% 70%, rgba(255, 94, 49, 0.27), transparent 72%);
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

.hero-showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

.hero-main-img {
  width: 100%;
  max-width: 640px;
  border-radius: 22px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-info-card {
  position: absolute;
  right: -18px;
  bottom: 18px;
  max-width: 320px;
  z-index: 3;
  background: rgba(17, 22, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 13px 15px;
  backdrop-filter: blur(7px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

html[data-theme="light"] .hero-info-card {
  background: rgba(255, 255, 255, 0.87);
  border-color: rgba(17, 38, 65, 0.2);
}

.hero-info-card strong {
  display: block;
  margin-bottom: 4px;
  color: #ffe2d6;
}

.hero-info-card p {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.hero-info-card span {
  font-size: 0.82rem;
  color: #ffbc9f;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  background: linear-gradient(140deg, rgba(255, 90, 31, 0.35), rgba(255, 61, 46, 0.15));
  filter: blur(30px);
  z-index: -1;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--box-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.home-page .featured-grid .card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255, 132, 78, 0.5);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 31, 0.14);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.section-title {
  margin-bottom: 30px;
  max-width: 70ch;
}

.home-page .section-title h2 {
  letter-spacing: -0.028em;
  margin-bottom: 10px;
}

.home-page .section-title > p:not(.section-kicker) {
  max-width: 56ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero {
  padding-top: 42px;
  padding-bottom: 34px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
  color: #c9d1df;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: #ffd6c6;
}

.breadcrumbs span {
  opacity: 0.65;
}

.section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb99d;
  margin-bottom: 10px;
  font-weight: 700;
}

.menu-controls {
  display: grid;
  gap: 12px;
  grid-template-columns: 220px 1fr;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
  grid-column: 1 / -1;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #e9edf8;
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  border-color: rgba(255, 90, 31, 0.5);
  background: rgba(255, 90, 31, 0.18);
  color: #fff;
}

.search,
.select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.98rem;
  padding: 12px 14px;
}

.admin-hidden {
  display: none !important;
}

.offer-admin {
  margin-bottom: 24px;
  border: 1px solid rgba(255, 134, 94, 0.34);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.18), transparent 68%);
  padding: 26px;
}

.offer-admin-head {
  margin-bottom: 10px;
}

.offer-admin-head h3 {
  margin-bottom: 4px;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.offer-admin-head p {
  margin-bottom: 0;
  font-size: 1rem;
}

.offer-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-admin-grid label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
}

.offer-admin-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-admin-actions .btn,
.offer-admin-actions .btn-outline {
  min-width: 220px;
}

.offer-admin-status {
  margin-top: 10px;
  color: #c5f0cf;
  font-weight: 600;
  font-size: 1rem;
}

.offer-admin-status.error {
  color: #ffc8bf;
}

.offer-admin-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.offer-admin-list p {
  margin: 0;
  font-size: 0.98rem;
}

.offer-list-item {
  border: 1px solid rgba(255, 140, 101, 0.3);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.offer-list-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.offer-list-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.offer-list-item-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.offer-list-item-meta {
  margin-top: 8px;
  font-size: 0.86rem;
}

.offer-list-item-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-list-item-actions .btn,
.offer-list-item-actions .btn-outline {
  min-width: 180px;
}

.offers-section .container {
  position: relative;
  border: 1px solid rgba(255, 132, 90, 0.3);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(140% 110% at 100% 0%, rgba(255, 124, 74, 0.24), transparent 72%),
    radial-gradient(80% 100% at 0% 100%, rgba(255, 86, 45, 0.1), transparent 72%),
    rgba(17, 23, 34, 0.76);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(255, 108, 63, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.offers-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.offers-section .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.offers-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.offers-proof-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 178, 146, 0.42);
  color: #ffddd0;
  background: rgba(255, 107, 60, 0.12);
}

.offers-zone {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.offer-empty-card {
  text-align: center;
  padding: 34px 24px;
  border: 1px dashed rgba(255, 151, 113, 0.34);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(24, 31, 44, 0.7);
}

.offer-empty-card h3 {
  margin-bottom: 8px;
}

.offer-empty-card p {
  margin: 0 auto 14px;
  max-width: 62ch;
}

.offer-empty-premium {
  border-style: solid;
  border-color: rgba(255, 163, 128, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(120% 100% at 100% 0%, rgba(255, 130, 86, 0.16), transparent 70%),
    rgba(20, 28, 42, 0.72);
}

.offer-empty-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.72rem;
  color: #ffc3ad;
}

.offer-empty-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  max-width: 680px;
}

.offer-empty-points span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 186, 160, 0.34);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffe9df;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-zone-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-zone-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 1px solid rgba(255, 141, 103, 0.4);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(16, 23, 35, 0.88);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.offer-zone-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.offer-zone-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 16, 26, 0.62), rgba(10, 16, 26, 0.02) 58%);
}

.offer-zone-media img {
  border-radius: 0;
  margin-bottom: 0;
  aspect-ratio: 4 / 2.9;
  object-fit: cover;
  border: 0;
  width: 100%;
}

.offer-zone-media-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-zone-media-overlay .product-offer-badge {
  min-width: 126px;
  padding: 12px 20px;
  font-size: 1.45rem;
  letter-spacing: 0.015em;
  box-shadow:
    0 14px 28px rgba(255, 92, 35, 0.42),
    0 0 18px rgba(255, 118, 72, 0.24);
}

.offer-zone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.offer-zone-state {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffefe8;
  border: 1px solid rgba(255, 163, 130, 0.38);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 103, 51, 0.22);
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.32);
}

.offer-zone-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.offer-zone-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-zone-kicker {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffbfaa;
  font-weight: 800;
}

.offer-zone-hint {
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f9e5dc;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}

.offer-zone-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
}

.offer-zone-copy {
  margin: 0;
  font-size: 0.92rem;
}

.offer-zone-note {
  margin: 0;
  font-size: 0.84rem;
  color: #ffd7ca;
}

.offer-zone-stock {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffe9df;
  border: 1px solid rgba(255, 196, 173, 0.4);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 118, 72, 0.12);
}

.offer-zone-stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff9f7a;
  box-shadow: 0 0 0 4px rgba(255, 159, 122, 0.2);
}

.offer-zone-period,
.offer-zone-countdown {
  margin-top: 0;
  font-size: 0.9rem;
}

.offer-zone-period {
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 189, 166, 0.5);
  background:
    linear-gradient(140deg, rgba(255, 111, 69, 0.22), rgba(255, 152, 117, 0.1)),
    rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff1ea;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.offer-zone-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffe7df;
  border: 1px solid rgba(255, 189, 166, 0.46);
  border-radius: 14px;
  padding: 9px 12px;
  background:
    linear-gradient(140deg, rgba(255, 112, 69, 0.24), rgba(255, 166, 129, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.offer-zone-countdown .offer-clock {
  width: 24px;
  height: 24px;
}

.offer-zone-countdown-label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffe6dd;
  font-weight: 800;
}

.offer-zone-countdown-value {
  font-size: 1.05rem;
  letter-spacing: 0.015em;
  font-weight: 800;
  color: #fff;
}

.offer-zone-card .menu-call-btn {
  margin-top: 4px;
  width: 100%;
  min-height: 44px;
}

.offer-zone-card.is-active {
  border-color: rgba(255, 153, 113, 0.54);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(255, 110, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.offer-zone-card.is-upcoming {
  border-color: rgba(132, 170, 216, 0.38);
}

.offer-zone-card.is-upcoming .offer-zone-hint {
  border-color: rgba(137, 173, 215, 0.44);
  color: #d9eaff;
  background: rgba(62, 104, 166, 0.25);
}

html[data-theme="light"] .offers-section .container {
  border-color: #e8b9a8;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.95)),
    radial-gradient(140% 110% at 100% 0%, rgba(255, 115, 64, 0.15), transparent 72%);
  box-shadow:
    0 18px 34px rgba(18, 34, 56, 0.12),
    0 0 24px rgba(255, 118, 72, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .offer-empty-card {
  border-color: #e8c3b4;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94)),
    rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .offers-proof-pill {
  color: #904228;
  border-color: #efc0ae;
  background: rgba(255, 168, 132, 0.22);
}

html[data-theme="light"] .offer-empty-card h3,
html[data-theme="light"] .offer-zone-card h3 {
  color: #253a56;
}

html[data-theme="light"] .offer-empty-kicker {
  color: #9a4024;
}

html[data-theme="light"] .offer-empty-points span {
  color: #5f7189;
  border-color: #d8e1ee;
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .offer-empty-card p,
html[data-theme="light"] .offer-zone-copy,
html[data-theme="light"] .offer-zone-countdown {
  color: #596d87;
}

html[data-theme="light"] .offer-zone-card {
  border-color: #edc2b1;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95)),
    rgba(255, 255, 255, 0.84);
}

html[data-theme="light"] .offer-zone-media::after {
  background: linear-gradient(to top, rgba(13, 25, 41, 0.58), rgba(13, 25, 41, 0.06) 60%);
}

html[data-theme="light"] .offer-zone-state {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(16, 27, 44, 0.58);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] .offer-zone-kicker {
  color: #aa4a2d;
}

html[data-theme="light"] .offer-zone-hint {
  color: #6a4738;
  border-color: #d4ddea;
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .offer-zone-note {
  color: #935843;
}

html[data-theme="light"] .offer-zone-stock {
  color: #8a432a;
  border-color: #efc2b2;
  background: rgba(255, 173, 140, 0.22);
}

html[data-theme="light"] .offer-zone-stock-dot {
  background: #f1784b;
  box-shadow: 0 0 0 4px rgba(241, 120, 75, 0.2);
}

html[data-theme="light"] .offer-zone-period {
  border-color: #efb8a4;
  background:
    linear-gradient(140deg, rgba(255, 150, 114, 0.28), rgba(255, 226, 210, 0.52)),
    rgba(255, 255, 255, 0.94);
  color: #8e3f27;
}

html[data-theme="light"] .offer-zone-countdown {
  border-color: #efc0af;
  background:
    linear-gradient(140deg, rgba(255, 160, 127, 0.3), rgba(255, 231, 218, 0.6)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 20px rgba(33, 50, 74, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .offer-zone-countdown-label {
  color: #8b452c;
}

html[data-theme="light"] .offer-zone-countdown-value {
  color: #223b59;
}

html[data-theme="light"] .offer-zone-media-overlay .product-offer-badge {
  box-shadow:
    0 12px 24px rgba(245, 123, 88, 0.3),
    0 0 16px rgba(245, 123, 88, 0.22);
}

html[data-theme="light"] .offer-zone-card.is-active {
  border-color: #e7ad96;
}

html[data-theme="light"] .offer-zone-card.is-upcoming {
  border-color: #c7d7ec;
}

html[data-theme="light"] .offer-zone-card.is-upcoming .offer-zone-hint {
  border-color: #c6d8ee;
  color: #355678;
  background: rgba(227, 237, 250, 0.95);
}

.product-offer-box {
  margin-top: 14px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 141, 103, 0.4);
  border-radius: 16px;
  padding: 13px 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(16, 23, 35, 0.88);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-offer-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.product-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-width: 99px;
  padding: 8px 15px;
  font-size: 1.13rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--danger));
  box-shadow: 0 12px 24px rgba(255, 92, 35, 0.4);
}

.product-offer-state {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffddd0;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.07);
}

.product-offer-title {
  margin: 10px 0 0;
  color: #fff1ea;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-offer-period,
.product-offer-countdown {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: #ffece4;
}

.product-offer-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.offer-count-label {
  color: #ffe7df;
  font-weight: 700;
}

.offer-count-value {
  color: #fff;
  font-weight: 800;
}

.menu-item.has-offer {
  border-color: rgba(255, 153, 113, 0.54);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(255, 110, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-item.offer-upcoming {
  border-color: rgba(133, 172, 219, 0.42);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(95, 155, 225, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.menu-item.offer-upcoming .product-offer-state {
  color: #dcecff;
  border-color: rgba(136, 172, 216, 0.5);
  background: rgba(72, 112, 171, 0.26);
}

.offer-clock {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.offer-clock::before,
.offer-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: bottom center;
  background: currentColor;
  border-radius: 2px;
}

.offer-clock::before {
  width: 2px;
  height: 6px;
  transform: translate(-50%, -95%) rotate(0deg);
}

.offer-clock::after {
  width: 2px;
  height: 5px;
  transform: translate(-50%, -95%) rotate(55deg);
}

html[data-theme="light"] .offer-admin {
  border-color: #f0b9a3;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.12), transparent 68%);
}

html[data-theme="light"] .offer-admin-status {
  color: #2d7e46;
}

html[data-theme="light"] .offer-admin-status.error {
  color: #b44b35;
}

html[data-theme="light"] .offer-list-item {
  border-color: #efc5b5;
  background: rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .product-offer-box {
  border-color: #edc2b1;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95)),
    rgba(255, 255, 255, 0.84);
}

html[data-theme="light"] .menu-item.has-offer {
  border-color: #e7ad96;
  box-shadow:
    0 16px 30px rgba(18, 34, 56, 0.14),
    0 0 22px rgba(255, 118, 72, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .menu-item.offer-upcoming {
  border-color: #c7d7ec;
  box-shadow:
    0 14px 24px rgba(24, 40, 63, 0.11),
    0 0 18px rgba(120, 166, 224, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .menu-item.offer-upcoming .product-offer-state {
  color: #355678;
  border-color: #bfd3ec;
  background: rgba(225, 236, 250, 0.95);
}

html[data-theme="light"] .offer-count-label {
  color: #5b6f88;
}

html[data-theme="light"] .offer-count-value {
  color: #223b59;
}

html[data-theme="light"] .product-offer-state,
html[data-theme="light"] .product-offer-title,
html[data-theme="light"] .product-offer-period,
html[data-theme="light"] .product-offer-countdown {
  color: #8d4129;
}

.menu-item img {
  border-radius: 22px;
  margin-bottom: 14px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.07));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(255, 110, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item h3 {
  margin-bottom: 6px;
}

.menu-item p {
  min-height: 72px;
}

.menu-meta {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin: 4px 0 10px;
  min-height: auto;
  font-weight: 800;
  text-transform: uppercase;
}

/* Menu page polish */
.menu-page .menu-controls {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(110% 80% at 100% 0%, rgba(255, 110, 62, 0.12), transparent 68%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-page .chip {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #f3f6ff;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.menu-page .chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.menu-page .chip.active {
  border-color: rgba(255, 110, 62, 0.7);
  background:
    linear-gradient(140deg, rgba(255, 96, 48, 0.24), rgba(255, 132, 78, 0.32));
  box-shadow:
    0 8px 18px rgba(255, 110, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-page .menu-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 110, 62, 0.12), transparent 70%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

.menu-page .menu-item img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(100% 80% at 100% 0%, rgba(255, 110, 62, 0.18), transparent 70%);
}

.menu-page .menu-item h3 {
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  letter-spacing: -0.01em;
  color: var(--accent);
}

.menu-page .price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  border: none;
  background: linear-gradient(135deg, #ff6e3e 0%, #ff9158 60%, #ffae70 100%);
  color: #0c0f17;
  box-shadow:
    0 12px 20px rgba(255, 110, 62, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.menu-page .menu-meta {
  border-left: 2px solid rgba(255, 110, 62, 0.45);
  padding-left: 10px;
}

.menu-page .menu-item .menu-call-btn {
  margin-top: auto;
  font-weight: 800;
}

.menu-page .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 14px;
}

@media (min-width: 981px) {
  .menu-page .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .menu-page .menu-controls {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .menu-page .menu-item {
    padding: 18px;
  }

  .menu-page .menu-item img {
    aspect-ratio: 3/2;
    margin-bottom: 12px;
  }

  .menu-page .price-tag {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .menu-page .menu-meta {
    margin-top: 2px;
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .menu-page .menu-call-btn {
    font-size: 0.92rem;
    padding: 10px 12px;
  }
}

@media (max-width: 520px) {
  .menu-page .grid-3 {
    grid-template-columns: 1fr;
  }

  .menu-page .menu-controls {
    gap: 10px;
  }

  .menu-page .chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .menu-page .price-tag {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow:
      0 10px 18px rgba(255, 110, 62, 0.26),
      0 0 0 2px rgba(255, 255, 255, 0.14);
  }

  .menu-page .menu-item {
    padding: 16px;
  }
}

/* Mobile-first pill stack inspired by provided reference */
@media (max-width: 640px) {
  body.drawer-lock {
    overflow: hidden;
  }

  .menu-page .menu-filters-mobile {
    display: block;
    margin-bottom: 12px;
  }

  .filter-toggle {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 13px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
      radial-gradient(90% 70% at 100% 0%, rgba(255, 120, 75, 0.14), transparent 72%);
    color: #f6f8ff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  }

  .menu-page .menu-controls {
    position: fixed;
    inset: auto 16px 16px 16px;
    z-index: 40;
    max-height: 78vh;
    overflow-y: auto;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    backdrop-filter: blur(12px);
  }

  .menu-page .menu-controls.drawer-open {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-page .filter-close {
    margin-top: 6px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 11px;
    background: rgba(12, 14, 20, 0.9);
    color: #f4f7ff;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .menu-page .menu-controls {
    background:
      linear-gradient(180deg, rgba(28, 34, 44, 0.78), rgba(16, 20, 28, 0.9)),
      radial-gradient(90% 70% at 100% 0%, rgba(255, 120, 75, 0.18), transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow:
      0 16px 28px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 14px;
    gap: 12px;
  }

  .menu-page .filter-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0;
  }

  .menu-page .chip {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 18px rgba(0, 0, 0, 0.22);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
  }

  .menu-page .chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .menu-page .chip.active {
    border-color: rgba(255, 140, 96, 0.9);
    background: linear-gradient(145deg, #ff6e3e 0%, #ff8d52 55%, #ffb072 100%);
    color: #0c0f17;
    box-shadow:
      0 14px 26px rgba(255, 110, 62, 0.32),
      0 0 0 2px rgba(255, 255, 255, 0.12);
  }

  .menu-page .select,
  .menu-page .search {
    border-radius: 14px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 19, 27, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 10px 20px rgba(0, 0, 0, 0.2);
    color: #f4f6ff;
    font-size: 0.98rem;
  }
}

.download-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  flex-wrap: wrap;
}

.download-row .btn {
  min-width: 220px;
}

.download-row .download-hint {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.download-menu-btn {
  border-color: rgba(255, 255, 255, 0.24);
}

.print-only {
  display: none;
}

.print-hidden {
  display: block;
}

.print-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 18px;
}

.print-brand img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.print-brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.print-brand-right {
  text-align: right;
  font-size: 0.95rem;
}

.price-tag {
  margin-top: 10px;
  display: inline-block;
  border: 1px solid rgba(255, 90, 31, 0.45);
  color: #ffd9cc;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.88rem;
}

.price-tag[data-price-tag] {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.02rem, 1.4vw, 1.32rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff4eb;
  border: 2px solid rgba(255, 214, 191, 0.95);
  background: linear-gradient(135deg, #ff5a1f 0%, #ff7a22 52%, #ff9438 100%);
  box-shadow:
    0 10px 22px rgba(255, 90, 31, 0.45),
    0 0 0 3px rgba(255, 126, 64, 0.25);
  padding: 8px 16px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
  margin-top: 8px;
  margin-bottom: 10px;
}

.home-page .price-tag:not([data-price-tag]) {
  margin-top: 2px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  border-color: rgba(255, 165, 128, 0.45);
  color: #ffe6dc;
  background: rgba(255, 90, 31, 0.11);
}

.menu-call-btn {
  margin-top: 12px;
  padding: 9px 14px;
  font-size: 0.9rem;
  width: 100%;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    size: A4;
    margin: 8mm;
  }

  body {
    background: #0e1116 !important;
    color: #f6f7fb;
  }

  /* ascundem tot ce nu ține de listarea produselor */
  .topbar,
  header,
  .offers-section,
  .page-hero,
  .menu-filters-mobile,
  .menu-controls,
  .menu-call-btn,
  .menu-call-btn.btn,
  .desktop-callout,
  .mobile-bar,
  .cookie-banner,
  .download-row,
  .filter-close,
  .filter-toggle,
  .menu-controls .filter-chips,
  .menu-controls .select,
  .menu-controls .search,
  .offers-section,
  .menu-filters-mobile,
  .menu-controls,
  .offers-zone {
    display: none !important;
  }

  .print-only {
    display: block;
  }

  .print-hidden {
    display: none !important;
  }

  /* asigurăm că secțiunea de meniu rămâne vizibilă */
  .menu-section {
    display: block !important;
  }

  .menu-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .menu-section .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .menu-section .grid-3 .menu-item {
    display: flex;
    flex-direction: column;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 12px;
  }

  /* forțăm vizibilitatea elementelor cu animație */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .section {
    padding: 32px 0;
  }

  .section-small {
    padding: 26px 0;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .container {
    width: auto;
    margin: 0;
    padding: 0 16mm;
  }

  /* Afișăm doar produsele (și brand/footer). Secțiunile SEO și CTA dispar la print. */
  .menu-page .section-small {
    display: none !important;
  }

  .menu-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  footer {
    page-break-before: always;
  }
}

.steps .card {
  counter-increment: step;
  position: relative;
}

.steps .card::after {
  content: counter(step);
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
}

.home-page .steps .card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.12), transparent 68%);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-page .steps .card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 159, 124, 0.95), rgba(255, 88, 37, 0.95));
  opacity: 0.78;
}

.home-page .steps .card::after {
  color: rgba(255, 122, 79, 0.22);
}

.home-page .steps .card h3 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.home-page .steps .card p {
  color: #c8d2e3;
}

.home-page .steps .card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 96, 0.48);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 106, 57, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

html[data-theme="light"] .home-page .steps .card {
  border-color: #ccd8e8;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.09), transparent 68%);
  box-shadow:
    0 12px 22px rgba(25, 43, 68, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .home-page .steps .card::after {
  color: rgba(210, 102, 64, 0.22);
}

html[data-theme="light"] .home-page .steps .card p {
  color: #556984;
}

html[data-theme="light"] .home-page .steps .card:hover {
  border-color: #b8c8dd;
  box-shadow:
    0 16px 28px rgba(25, 43, 68, 0.13),
    0 0 16px rgba(255, 122, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.reviews .card {
  min-height: 180px;
}

.stars {
  color: #ffb347;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 14px;
}

.gallery-item {
  margin-bottom: 14px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  padding: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(255, 110, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -8px -8px -10px -8px;
  border-radius: 28px;
  background: radial-gradient(76% 70% at 50% 70%, rgba(255, 94, 49, 0.24), transparent 72%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.gallery-item img {
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.faq-item {
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: none;
  font-weight: 700;
  padding: 16px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a p {
  padding: 0 16px 16px;
}

.hours {
  display: grid;
  gap: 10px;
}

.hours li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  padding-bottom: 8px;
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  min-height: 350px;
  border-radius: var(--radius);
}

.legal {
  display: grid;
  gap: 14px;
}

.legal article {
  padding: 18px;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
}

.legal ul {
  margin-left: 18px;
}

.compliance-head {
  position: relative;
  border: 1px solid var(--box-border);
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--box-bg);
  box-shadow: var(--box-shadow);
}

.compliance-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8d67, #ff5a1f);
}

.declaratie-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.declaratie-overview p {
  margin: 0;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid var(--box-border);
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  color: var(--muted);
}

.declaratie-overview strong {
  color: var(--text);
}

.compliance-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 14px;
}

.compliance-meta li {
  list-style: none;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
}

.compliance-head-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
}

.table-wrap {
  border: 1px solid var(--box-border);
  border-radius: 20px;
  overflow: auto;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.compliance-table th,
.compliance-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.compliance-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #ffd6c6;
  background: linear-gradient(120deg, rgba(255, 90, 31, 0.18), rgba(255, 136, 102, 0.1));
}

.compliance-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.01);
}

.compliance-table td:nth-child(1) {
  font-weight: 700;
  color: var(--text);
}

.compliance-table td:nth-child(2) {
  color: #ffc8b5;
}

.compliance-table td:nth-child(3) {
  color: #bfe5ff;
}

.compliance-table td:nth-child(4) {
  color: #c5efce;
}

.symbol-table {
  width: 100%;
  border-collapse: collapse;
}

.symbol-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.compliance-legend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.legend-item {
  border: 1px solid var(--box-border);
  border-radius: 12px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  padding: 12px 13px;
}

.legend-item p {
  margin: 0;
}

.legend-symbol {
  font-size: 1.2rem;
  margin-bottom: 6px !important;
}

.compliance-note {
  margin-top: 14px;
  color: var(--muted);
}

.cta-strip {
  background: linear-gradient(100deg, rgba(255, 90, 31, 0.18), rgba(255, 61, 46, 0.1));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-strip h2 {
  margin-bottom: 8px;
}

.home-page .cta-strip {
  background: transparent;
  border-block: 0;
}

.home-page .cta-strip .container {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 30px 34px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.24), transparent 68%),
    rgba(19, 25, 37, 0.7);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-page .cta-strip .container::before {
  content: "";
  position: absolute;
  inset: auto -12% -45% -12%;
  height: 62%;
  background: radial-gradient(60% 100% at 50% 50%, rgba(255, 92, 50, 0.2), transparent 72%);
  pointer-events: none;
}

.home-page .cta-copy {
  max-width: 60ch;
}

.home-page .cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.home-page .cta-actions .btn,
.home-page .cta-actions .btn-outline {
  min-width: 210px;
}

html[data-theme="light"] .home-page .cta-strip .container {
  border-color: #d5deea;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(120% 90% at 100% 0%, rgba(255, 119, 71, 0.12), transparent 68%);
  box-shadow:
    0 16px 30px rgba(31, 49, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.faq-page .faq-cta {
  margin-top: 20px;
  background: transparent;
  border-block: 0;
}

.faq-page .faq-cta .container {
  border: 1px solid var(--box-border);
  border-radius: 22px;
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.2), transparent 68%),
    rgba(19, 25, 37, 0.72);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-page .faq-cta-grid {
  align-items: center;
  gap: 16px 22px;
}

.faq-page .faq-cta-copy h2 {
  margin-bottom: 8px;
}

.faq-page .faq-cta-copy p {
  max-width: 50ch;
}

.faq-page .faq-cta-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-page .faq-cta-actions .btn,
.faq-page .faq-cta-actions .btn-outline {
  min-width: 190px;
}

html[data-theme="light"] .faq-page .faq-cta .container {
  border-color: #d5deea;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.1), transparent 68%);
  box-shadow:
    0 14px 26px rgba(31, 49, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gallery-page .gallery-cta {
  margin-top: 20px;
  background: transparent;
  border-block: 0;
}

.gallery-page .gallery-cta .container {
  border: 1px solid var(--box-border);
  border-radius: 22px;
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.2), transparent 68%),
    rgba(19, 25, 37, 0.72);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-page .gallery-cta-grid {
  align-items: center;
  gap: 16px 22px;
}

.gallery-page .gallery-cta-copy h2 {
  margin-bottom: 8px;
}

.gallery-page .gallery-cta-copy p {
  max-width: 50ch;
}

.gallery-page .gallery-cta-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-page .gallery-cta-actions .btn,
.gallery-page .gallery-cta-actions .btn-outline {
  min-width: 190px;
}

html[data-theme="light"] .gallery-page .gallery-cta .container {
  border-color: #d5deea;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.1), transparent 68%);
  box-shadow:
    0 14px 26px rgba(31, 49, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.despre-page .despre-cta {
  margin-top: 8px;
  background: transparent;
  border-block: 0;
}

.despre-page .about-lead-extra {
  margin-top: 10px;
}

.despre-page .about-hero-ctas {
  margin-top: 20px;
}

.despre-page .about-hero-showcase {
  min-height: 530px;
}

.despre-page .about-hero-showcase .hero-main-img {
  max-width: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.despre-page .despre-cta .container {
  border: 1px solid var(--box-border);
  border-radius: 22px;
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.2), transparent 68%),
    rgba(19, 25, 37, 0.72);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.despre-page .despre-cta-grid {
  align-items: center;
  gap: 16px 22px;
}

.despre-page .despre-cta-copy h2 {
  margin-bottom: 8px;
}

.despre-page .despre-cta-copy p {
  max-width: 50ch;
}

.despre-page .despre-cta-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.despre-page .despre-cta-actions .btn,
.despre-page .despre-cta-actions .btn-outline {
  min-width: 190px;
}

html[data-theme="light"] .despre-page .despre-cta .container {
  border-color: #d5deea;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(110% 90% at 100% 0%, rgba(255, 120, 75, 0.1), transparent 68%);
  box-shadow:
    0 14px 26px rgba(31, 49, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-page .contact-main-grid {
  align-items: start;
  gap: 20px;
}

.contact-page .contact-phone {
  margin-top: 10px;
}

.contact-page .contact-ctas {
  margin-top: 20px;
}

.contact-page .contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.contact-page .contact-highlights p {
  margin: 0;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  color: var(--muted);
}

.contact-page .contact-highlights strong {
  color: var(--text);
}

.contact-page .contact-hours,
.contact-page .contact-coverage {
  margin-top: 10px;
}

.contact-page .contact-note,
.contact-page .contact-coverage-row {
  margin-top: 8px;
}

.contact-page .contact-map-wrap {
  position: relative;
  padding: 2px;
}

.contact-page .contact-map-frame {
  border-radius: 24px;
  padding: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(255, 112, 64, 0.24);
}

.contact-page .contact-map-wrap iframe {
  min-height: 540px;
  border-radius: 20px;
}

.contact-page .contact-map-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 300px;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(16, 22, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.contact-page .contact-map-card strong {
  display: block;
  margin-bottom: 4px;
  color: #ffe0d2;
}

.contact-page .contact-map-card p {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.contact-page .contact-map-card span {
  font-size: 0.82rem;
  color: #ffbc9f;
}

html[data-theme="light"] .contact-page .contact-map-frame {
  border-color: #d7deeb;
  box-shadow:
    0 12px 24px rgba(23, 42, 66, 0.14),
    0 0 24px rgba(255, 106, 57, 0.15);
}

html[data-theme="light"] .contact-page .contact-map-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 53, 80, 0.2);
}

html[data-theme="light"] .contact-page .contact-map-card strong {
  color: #2e425c;
}

html[data-theme="light"] .contact-page .contact-map-card span {
  color: #9f472a;
}

.retetar-page .retetar-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.retetar-page .retetar-meta p {
  margin: 0;
  border: 1px solid var(--box-border);
  border-radius: 12px;
  padding: 12px 13px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
  color: var(--muted);
}

.retetar-page .retetar-meta strong {
  color: var(--text);
}

.retetar-page .retetar-grid {
  margin-top: 16px;
}

.retetar-page .retetar-item {
  position: relative;
  border-radius: 16px;
  padding: 18px;
}

.retetar-page .retetar-item img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.07));
}

.retetar-page .retetar-item h2 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2.3vw, 1.45rem);
}

.retetar-page .retetar-item p {
  min-height: 0;
  margin-bottom: 4px;
  line-height: 1.42;
}

.retetar-page .retetar-item .image-legal-note {
  margin-top: 0;
  margin-bottom: 8px;
  padding: 6px 8px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.retetar-page .retetar-total {
  margin-top: 4px;
  margin-bottom: 8px;
  border: 1px solid var(--box-border);
  border-radius: 10px;
  padding: 9px 10px;
  background: var(--box-bg);
  color: var(--muted);
}

.retetar-page .retetar-total strong {
  color: var(--text);
}

.retetar-page .retetar-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin: 0 0 10px;
  padding: 0;
}

.retetar-page .retetar-breakdown li {
  list-style: none;
  border: 1px solid var(--box-border);
  border-radius: 10px;
  padding: 7px 8px;
  background: var(--box-bg);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.retetar-page .retetar-item .menu-call-btn {
  margin-top: 8px;
}

.retetar-page .retetar-note-box {
  padding: 20px;
}

.retetar-page .retetar-note-action {
  margin-top: 10px;
}

.seo-block {
  border: 1px solid var(--box-border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
}

.seo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 14px;
}

.seo-list li {
  list-style: none;
  border: 1px solid var(--box-border);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--box-bg);
  color: #e9edf8;
  box-shadow: var(--box-shadow);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.quick-link {
  border: 1px solid var(--box-border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  background: var(--box-bg);
  font-weight: 700;
  box-shadow: var(--box-shadow);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.07));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(255, 110, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.legal-links a {
  border: 1px solid var(--box-border);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  background: var(--box-bg);
  font-weight: 700;
  box-shadow: var(--box-shadow);
}

.faq-mini {
  display: grid;
  gap: 10px;
}

.faq-mini .card h3 {
  margin-bottom: 6px;
}

.home-page .info-duo .grid-2 {
  align-items: start;
}

.home-page .info-duo .seo-block {
  padding: 22px;
}

.home-page .info-duo .legal-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .info-duo .legal-links a {
  padding: 12px 10px;
}

.legal-mini-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.legal-mini-links a {
  border: 1px solid var(--box-border);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  background: var(--box-bg);
  box-shadow: var(--box-shadow);
}

.home-page .faq-mini {
  gap: 14px;
}

.home-page .faq-mini .card {
  position: relative;
  padding-left: 46px;
}

.home-page .faq-mini .card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.featured-grid article img {
  border-radius: 22px;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 156, 120, 0.2), rgba(255, 78, 42, 0.07));
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(255, 110, 62, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

html[data-theme="light"] .menu-item img,
html[data-theme="light"] .featured-grid article img,
html[data-theme="light"] .thumb-grid img,
html[data-theme="light"] .gallery-item,
html[data-theme="light"] .hero-showcase-frame,
html[data-theme="light"] .retetar-page .retetar-item img {
  box-shadow:
    0 10px 20px rgba(20, 35, 58, 0.15),
    0 0 24px rgba(255, 110, 62, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-showcase {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.brand-showcase img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.cta-note {
  font-size: 0.86rem;
  color: #d7deec;
}

.image-legal-note {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #c7cedd;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.02);
}

.gallery-item figcaption.image-legal-note {
  margin-bottom: 0;
}

footer {
  position: relative;
  padding: 52px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(980px 360px at 8% 0%, rgba(255, 90, 31, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(15, 20, 30, 0.92) 0%, rgba(12, 16, 24, 0.98) 100%);
}

footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 146, 104, 0.56), transparent);
}

html[data-theme="light"] footer {
  border-top: 1px solid rgba(17, 38, 65, 0.1);
  background:
    radial-gradient(980px 360px at 8% 0%, rgba(255, 106, 64, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.94) 0%, rgba(246, 250, 255, 0.98) 100%);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

/* Requested layout: hide large footer cards and use compact link bank below */
.footer-grid {
  display: none;
}

.footer-link-bank {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 4px;
}

.footer-link-bank a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(184, 206, 238, 0.22);
  color: #ecf3ff;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-link-bank a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 144, 96, 0.56);
  color: #fff;
  background: linear-gradient(145deg, rgba(58, 73, 98, 0.92), rgba(33, 46, 66, 0.92));
}

html[data-theme="light"] .footer-link-bank a {
  color: #233e61;
  border-color: #cad7ea;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

html[data-theme="light"] .footer-link-bank a:hover {
  color: #9b4025;
  border-color: #d9a18f;
  background: linear-gradient(145deg, #fff8f3, #edf4ff);
}

.footer-grid > div {
  border: 1px solid rgba(150, 176, 215, 0.22);
  border-radius: 20px;
  padding: 20px 20px 18px;
  background:
    linear-gradient(145deg, rgba(30, 39, 56, 0.72), rgba(17, 23, 34, 0.88)),
    rgba(18, 24, 36, 0.66);
  box-shadow:
    0 18px 34px rgba(4, 8, 16, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

html[data-theme="light"] .footer-grid > div {
  border-color: #ced9e9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.95)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 16px 28px rgba(31, 52, 81, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.footer-grid > div:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 142, 97, 0.48);
  box-shadow:
    0 22px 38px rgba(4, 8, 16, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .footer-grid > div:hover {
  border-color: #e1a38f;
  box-shadow:
    0 20px 34px rgba(31, 52, 81, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-grid > div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb08c, #ff6a3f);
  opacity: 0.95;
}

.footer-grid > div:nth-child(1) {
  grid-column: span 3;
}

.footer-grid > div:nth-child(2) {
  grid-column: span 3;
}

.footer-grid > div:nth-child(3),
.footer-grid > div:nth-child(4) {
  grid-column: span 3;
}

.home-page .footer-grid > div {
  min-height: 0;
}


.footer-grid h3 {
  margin-bottom: 4px;
  font-size: 1.14rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.footer-grid p {
  margin: 0;
  color: #d2dcec;
  font-size: 0.97rem;
  line-height: 1.56;
}

html[data-theme="light"] .footer-grid p {
  color: #4e617c;
}

.home-page .footer-grid p {
  max-width: 34ch;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-links a {
  opacity: 1;
  color: #eff3fb;
  font-weight: 700;
  border: 1px solid rgba(185, 206, 238, 0.22);
  border-radius: 12px;
  padding: 10px 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  font-size: 0.92rem;
  line-height: 1.26;
  min-height: 52px;
  display: grid;
  place-items: center;
  word-break: break-word;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

html[data-theme="light"] .footer-links a {
  color: #233e61;
  border-color: #cad7ea;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

.footer-links a:hover {
  color: #fff;
  border-color: rgba(255, 146, 96, 0.56);
  background: linear-gradient(145deg, rgba(58, 73, 98, 0.92), rgba(33, 46, 66, 0.92));
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(4, 8, 16, 0.3);
}

html[data-theme="light"] .footer-links a:hover {
  color: #9b4025;
  border-color: #d9a18f;
  background: linear-gradient(145deg, #fff8f3, #edf4ff);
}

.footer-grid > div:nth-child(2) p {
  margin: 0;
}

.footer-grid > div:nth-child(2) p a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(185, 206, 238, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  color: #eff3fb;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-grid > div:nth-child(2) p a::after {
  content: "→";
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-grid > div:nth-child(2) p a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 146, 96, 0.56);
  background: linear-gradient(145deg, rgba(58, 73, 98, 0.92), rgba(33, 46, 66, 0.92));
  color: #fff;
}

html[data-theme="light"] .footer-grid > div:nth-child(2) p a {
  color: #233e61;
  border-color: #cad7ea;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

html[data-theme="light"] .footer-grid > div:nth-child(2) p a:hover {
  color: #9b4025;
  border-color: #d9a18f;
  background: linear-gradient(145deg, #fff8f3, #edf4ff);
}

.footer-links-seo a {
  font-size: 0.92rem;
}

.home-page .hero .cta-note {
  margin-bottom: 10px;
}

.home-page .trust-row .meta-item strong {
  font-size: 0.9rem;
  color: #ffe5d8;
}

.home-page .trust-row .meta-item p {
  font-size: 0.84rem;
  margin-top: 2px;
  color: #d7deec;
}

html[data-theme="light"] .home-page .trust-row .meta-item strong {
  color: #1f344f;
}

html[data-theme="light"] .home-page .trust-row .meta-item p {
  color: #4a5f79;
}

html[data-theme="light"] .home-page .price-tag:not([data-price-tag]) {
  color: #8d3a22;
  border-color: rgba(209, 115, 74, 0.46);
  background: rgba(255, 111, 62, 0.12);
}

html[data-theme="light"] .price-tag[data-price-tag] {
  color: #fff8f3;
  border-color: rgba(255, 232, 218, 0.98);
  background: linear-gradient(135deg, #ff5a1f 0%, #ff7a22 52%, #ff9438 100%);
  box-shadow:
    0 10px 20px rgba(255, 95, 41, 0.34),
    0 0 0 3px rgba(255, 126, 64, 0.18);
}

.home-page .section::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 120, 75, 0.36) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
}

html[data-theme="light"] .home-page .section::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 35, 58, 0.08) 28%,
    rgba(255, 120, 75, 0.28) 50%,
    rgba(20, 35, 58, 0.08) 72%,
    transparent 100%
  );
}

.footer-fiscal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(165, 188, 223, 0.28);
  font-size: 0.97rem;
  color: #cdd7e8;
  line-height: 1.58;
}

html[data-theme="light"] .footer-fiscal {
  border-top-color: #d4deeb;
  color: #4c607b;
}

.footer-ai-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #ffe6da;
  font-weight: 500;
  border: 1px solid rgba(255, 153, 116, 0.4);
  border-radius: 16px;
  padding: 14px 16px;
  background:
    linear-gradient(128deg, rgba(123, 50, 29, 0.46), rgba(77, 29, 15, 0.54)),
    rgba(255, 90, 31, 0.12);
  line-height: 1.6;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.footer-ai-note strong {
  color: #fff;
  font-weight: 700;
}

.footer-ai-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.legal-strip {
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(170, 194, 228, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.93rem;
  line-height: 1.58;
  color: #d9e4f7;
}

.legal-strip a {
  color: #f6f9ff;
  font-weight: 700;
  text-decoration: underline;
}

html[data-theme="light"] .legal-strip {
  border-color: #d2dced;
  background: rgba(255, 255, 255, 0.9);
  color: #304a68;
}

html[data-theme="light"] .legal-strip a {
  color: #1f3f66;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:nth-child(1),
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) {
    grid-column: span 1;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-link-bank {
    gap: 8px;
  }

  .footer-link-bank a {
    min-height: 40px;
    font-size: 0.86rem;
    padding: 8px 11px;
  }
}

.mobile-bar {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 1300;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 17, 22, 0.93);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  display: none;
  padding: 8px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

html[data-theme="light"] .mobile-bar {
  background: rgba(255, 255, 255, 0.95);
  border-color: #cfd9e8;
  box-shadow: 0 10px 22px rgba(29, 46, 72, 0.16);
}

.mobile-bar a {
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--btn-secondary-border);
  color: var(--btn-secondary-text);
  background: var(--btn-secondary-bg);
  box-shadow: var(--btn-secondary-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-bar a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  transform: translateY(-2px);
}

html[data-theme="light"] .mobile-bar a:first-child {
  background: linear-gradient(120deg, var(--accent), var(--danger));
  border-color: transparent;
  color: #fff;
}

.mobile-bar a:first-child {
  background: linear-gradient(120deg, var(--accent), var(--danger));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.28);
}

.desktop-callout {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: 14px;
  z-index: 1250;
  border-radius: 14px;
  background: rgba(15, 18, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 260px;
}

/* Hide desktop header phone CTA globally (requested) */
.nav .btn.desktop-only[href^="tel:"] {
  display: none !important;
}

html[data-theme="light"] .desktop-callout {
  background: rgba(255, 255, 255, 0.96);
  border-color: #d5deea;
}

.desktop-callout strong {
  font-size: 0.8rem;
  display: block;
  color: #ffd6c6;
}

html[data-theme="light"] .desktop-callout strong {
  color: #a1472d;
}

.desktop-callout a {
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 1500;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  bottom: 12px;
  width: min(440px, calc(100vw - 24px));
  z-index: 1400;
  background: #111620;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: none;
  box-shadow: var(--shadow);
}

html[data-theme="light"] .cookie-banner {
  background: rgba(255, 255, 255, 0.98);
  border-color: #d5deea;
}

html[data-theme="light"] .cookie-banner p {
  color: #223049;
}

html[data-theme="light"] .cta-note {
  color: #51627a;
}

html[data-theme="light"] .badge {
  color: #7a2f1f;
  border-color: rgba(181, 69, 37, 0.3);
  background: rgba(255, 90, 31, 0.12);
}

html[data-theme="light"] .meta-item strong {
  color: #2e425c;
}

html[data-theme="light"] .hero-info-card strong {
  color: #30455f;
}

html[data-theme="light"] .hero-info-card span {
  color: #a3472d;
}

html[data-theme="light"] .breadcrumbs {
  color: #5a6a80;
}

html[data-theme="light"] .breadcrumbs a {
  color: #b54525;
}

html[data-theme="light"] .section-kicker {
  color: #a5472d;
}

html[data-theme="light"] .chip {
  color: #24354f;
  background: rgba(17, 31, 49, 0.06);
}

html[data-theme="light"] .seo-list li {
  color: #24354f;
  border-color: var(--box-border);
  background: var(--box-bg);
}

html[data-theme="light"] .image-legal-note {
  color: #4f5d73;
  border-color: #d7deea;
  background: rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .price-tag {
  color: #9f3d22;
}

html[data-theme="light"] .price-tag[data-price-tag] {
  color: #fff8f3;
}

html[data-theme="light"] .hours li {
  border-bottom-color: rgba(17, 38, 65, 0.2);
}

html[data-theme="light"] .compliance-table th {
  color: #8e3621;
}

html[data-theme="light"] .declaratie-overview p {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
  border-color: #d3deed;
}

html[data-theme="light"] .compliance-head {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96)),
    var(--box-bg);
}

html[data-theme="light"] .compliance-table th,
html[data-theme="light"] .compliance-table td,
html[data-theme="light"] .symbol-table td {
  border-bottom-color: rgba(17, 38, 65, 0.14);
}

html[data-theme="light"] .compliance-table tbody tr:nth-child(odd) td {
  background: rgba(37, 59, 86, 0.03);
}

html[data-theme="light"] .compliance-table td:nth-child(2) {
  color: #8e3d25;
}

html[data-theme="light"] .compliance-table td:nth-child(3) {
  color: #2f5c7e;
}

html[data-theme="light"] .compliance-table td:nth-child(4) {
  color: #2e6442;
}

html[data-theme="light"] .footer-grid p {
  color: #4f5d73;
}

html[data-theme="light"] .footer-links a:hover {
  color: #b64524;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  transform: translateY(var(--move, 0));
  will-change: transform;
}

.skip {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
}

.skip:focus {
  top: 10px;
}

@media (min-width: 981px) {
  .nav {
    display: grid;
    grid-template-columns: auto minmax(420px, 1fr) auto auto auto;
    align-items: center;
    column-gap: 12px;
  }

  .nav-links {
    justify-self: center;
    justify-content: center;
    gap: 16px;
    min-width: 0;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .theme-toggle {
    justify-self: end;
  }

  .btn.desktop-only,
  .btn-outline.desktop-only {
    padding: 10px 14px;
    font-size: 0.84rem;
    min-height: 42px;
    white-space: nowrap;
  }

  .admin-mobile-visible {
    display: inline-flex !important;
    padding: 10px 14px;
    font-size: 0.84rem;
    min-height: 42px;
    border-radius: 999px;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .nav {
    grid-template-columns: auto minmax(280px, 1fr) auto auto auto;
    column-gap: 8px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .btn.desktop-only,
  .btn-outline.desktop-only {
    padding: 9px 11px;
    font-size: 0.78rem;
    min-height: 40px;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 82px;
  }

  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .section {
    padding: 58px 0;
  }

  .section-small {
    padding: 44px 0;
  }

  h1 {
    margin-bottom: 14px;
  }

  h2 {
    margin-bottom: 10px;
  }

  p {
    line-height: 1.55;
  }

  .topbar {
    font-size: 0.84rem;
    padding: 9px 10px;
  }

  .nav {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto auto auto;
    align-items: center;
    column-gap: 7px;
    row-gap: 0;
    padding: 6px 0;
  }

  .menu-btn,
  .theme-toggle {
    min-width: 46px;
    min-height: 46px;
    border-radius: 14px;
    border-width: 1.5px;
  }

  .brand {
    justify-self: start;
    align-items: center;
  }

  .menu-btn {
    justify-self: end;
    padding: 0 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, var(--accent), var(--danger));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 22px rgba(255, 90, 31, 0.28);
  }

  .menu-btn {
    order: 3;
  }

  .theme-toggle {
    justify-self: end;
    font-size: 1.08rem;
    background: rgba(255, 255, 255, 0.04);
    order: 4;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-main-img {
    max-width: 100%;
  }

  .hero-showcase-frame {
    padding: 4px;
    border-radius: 20px;
  }

  .hero-main-img {
    border-radius: 16px;
  }

  .hero-info-card {
    position: static;
    margin-top: 10px;
    max-width: 100%;
    border-radius: 14px;
    padding: 11px 12px;
  }

  .hero-ctas {
    margin-bottom: 18px;
    gap: 10px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    min-height: 48px;
  }

  .cta-strip .btn,
  .cta-strip .btn-outline {
    width: auto;
  }

  .home-page .cta-strip .container {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .home-page .cta-copy {
    max-width: none;
  }

  .home-page .cta-actions {
    justify-content: stretch;
    gap: 10px;
  }

  .home-page .cta-actions .btn,
  .home-page .cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .faq-page .faq-cta .container {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .faq-page .faq-cta-actions {
    gap: 10px;
  }

  .faq-page .faq-cta-actions .btn,
  .faq-page .faq-cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .gallery-page .gallery-cta .container {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .gallery-page .gallery-cta-actions {
    gap: 10px;
  }

  .gallery-page .gallery-cta-actions .btn,
  .gallery-page .gallery-cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .despre-page .despre-cta .container {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .despre-page .about-hero-showcase {
    min-height: auto;
  }

  .despre-page .about-hero-showcase .hero-showcase-frame {
    max-width: 560px;
    margin-inline: auto;
  }

  .despre-page .about-hero-showcase .hero-main-img {
    max-width: 560px;
    aspect-ratio: 4 / 4.4;
  }

  .contact-page .contact-map-wrap iframe {
    min-height: 430px;
  }

  .contact-page .contact-map-card {
    position: static;
    margin-top: 10px;
    max-width: 100%;
  }

  .despre-page .despre-cta-actions {
    gap: 10px;
  }

  .despre-page .despre-cta-actions .btn,
  .despre-page .despre-cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .meta-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .meta-item {
    padding: 12px;
  }

  .card {
    padding: 16px;
    border-radius: 14px;
  }

  .menu-controls {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .search,
  .select {
    font-size: 16px;
    padding: 11px 12px;
  }

  .offer-admin-grid {
    grid-template-columns: 1fr;
  }

  .offer-admin-actions .btn,
  .offer-admin-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .offer-list-item-grid {
    grid-template-columns: 1fr;
  }

  .offer-list-item-actions .btn,
  .offer-list-item-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .offer-zone-headline {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .offers-section .container {
    border-radius: 20px;
    padding: 24px 18px;
  }

  .offers-section .section-title {
    margin-bottom: 16px;
  }

  .offers-proof-row {
    gap: 6px;
  }

  .offers-proof-pill {
    font-size: 0.7rem;
    padding: 5px 9px;
  }

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

  .offer-zone-card {
    padding: 0;
  }

  .offer-zone-media-overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .offer-zone-kicker {
    font-size: 0.7rem;
  }

  .offer-zone-hint {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .offer-empty-card {
    padding: 24px 14px;
  }

  .offer-empty-points {
    gap: 6px;
    margin-bottom: 12px;
  }

  .offer-empty-points span {
    font-size: 0.7rem;
    padding: 5px 9px;
  }

  .menu-item p {
    min-height: 0;
    margin-bottom: 2px;
  }

  .menu-call-btn {
    margin-top: 10px;
    width: 100%;
  }

  .steps .card::after {
    font-size: 1.4rem;
    right: 10px;
    top: 8px;
  }

  .menu-item img,
  .featured-grid article img,
  .thumb-grid img,
  .gallery-item {
    padding: 2px;
    border-radius: 18px;
  }

  .gallery-grid {
    columns: 2 170px;
    column-gap: 10px;
  }

  .gallery-item img {
    border-radius: 12px;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 12px;
    right: 12px;
    max-height: calc(100vh - var(--header-h) - 24px);
    overflow-y: auto;
    z-index: 1190;
    display: grid;
    gap: 10px;
    background: var(--mobile-nav-panel);
    border: 1px solid var(--mobile-nav-border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--mobile-nav-shadow);
    backdrop-filter: blur(10px);
    transform: scale(0.98) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links a {
    border: 1px solid var(--mobile-nav-item-border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--mobile-nav-item-text);
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: var(--mobile-nav-item-bg);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .nav-links .nav-cta-link {
    padding: 12px 14px;
    text-align: center;
    background: linear-gradient(120deg, rgba(255, 90, 31, 0.26), rgba(255, 61, 46, 0.2));
    border-color: rgba(255, 121, 74, 0.52);
  }

  .nav-links .nav-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(120deg, rgba(255, 90, 31, 0.34), rgba(255, 61, 46, 0.28));
    border-color: rgba(255, 126, 78, 0.6);
    color: #fff5ee;
    font-weight: 800;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    transform: translateY(-1px);
    border-color: var(--mobile-nav-item-hover-border);
    background: var(--mobile-nav-item-hover-bg);
  }

  .nav-links a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  .nav-links a.active {
    border-color: var(--mobile-nav-item-active-border);
    background: var(--mobile-nav-item-active-bg);
    box-shadow: var(--mobile-nav-item-active-ring);
  }

  .admin-mobile-visible {
    display: inline-flex !important;
    order: 2;
    justify-self: end;
    width: auto;
    margin-top: 0;
    min-height: 38px;
    min-width: 72px;
    padding: 0 10px;
    border-radius: 11px;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    border-width: 1.5px;
    border-color: rgba(128, 147, 179, 0.5);
    background: linear-gradient(145deg, rgba(246, 250, 255, 0.96), rgba(232, 240, 250, 0.94));
    color: #1f3452;
  }

  .menu-controls,
  .seo-list,
  .compliance-meta,
  .declaratie-overview,
  .compliance-legend-grid,
  .contact-page .contact-highlights,
  .retetar-page .retetar-meta,
  .retetar-page .retetar-breakdown,
  .quick-links,
  .thumb-grid,
  .legal-links,
  .legal-mini-links {
    grid-template-columns: 1fr;
  }

  .compliance-head {
    padding: 18px;
    border-radius: 16px;
  }

  .compliance-head::before {
    left: 16px;
    width: 44px;
  }

  .table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .compliance-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .compliance-table thead {
    display: none;
  }

  .compliance-table tbody {
    display: grid;
    gap: 10px;
  }

  .compliance-table tr {
    display: grid;
    border: 1px solid var(--box-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--box-bg);
    box-shadow: var(--box-shadow);
  }

  .compliance-table td {
    display: grid;
    grid-template-columns: minmax(130px, 38%) 1fr;
    align-items: start;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    background: transparent !important;
  }

  .compliance-table td:last-child {
    border-bottom: 0;
  }

  .compliance-table td::before {
    content: attr(data-label);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.9;
  }

  .page-hero {
    padding-top: 26px;
    padding-bottom: 20px;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .menu-btn {
    display: inline-flex;
  }

  .brand-logo-wrap {
    width: auto;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
  }

  .brand-logo {
    height: 42px;
    transform: none;
    transform-origin: center center;
  }

  .desktop-only {
    display: none;
  }

  .admin-mobile-visible {
    display: inline-flex !important;
    order: 2;
    justify-self: end;
    width: auto;
    margin-top: 0;
    min-height: 38px;
    min-width: 72px;
    padding: 0 10px;
    border-radius: 11px;
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    border-width: 1.5px;
    border-color: rgba(128, 147, 179, 0.5);
    background: linear-gradient(145deg, rgba(246, 250, 255, 0.96), rgba(232, 240, 250, 0.94));
    color: #1f3452;
  }

  .mobile-bar {
    display: grid;
    left: 10px;
    right: 10px;
    bottom: 6px;
    gap: 6px;
    padding: 6px;
  }

  .mobile-bar a {
    min-height: 44px;
    display: grid;
    place-items: center;
    font-size: 0.84rem;
    padding: 8px 6px;
  }

  .footer-grid > div {
    min-height: auto;
    padding: 14px 12px 12px;
    border-radius: 14px;
    gap: 8px;
  }

  .footer-grid > div::before {
    left: 12px;
    width: 34px;
  }

  .footer-grid h3 {
    font-size: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .footer-links a {
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .footer-fiscal {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .footer-ai-note {
    font-size: 0.88rem;
    line-height: 1.45;
    padding: 11px 12px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 70px;
    width: auto;
    padding: 12px;
    border-radius: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-actions .btn,
  .cookie-actions .btn-outline {
    width: 100%;
    min-height: 42px;
  }

html[data-theme="light"] .theme-toggle {
  background: rgba(17, 31, 49, 0.05);
  border-color: #bcc9dc;
  color: #30445d;
}

  footer {
    padding-bottom: 140px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 78px;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .offers-section .container {
    border-radius: 16px;
    padding: 16px 12px;
  }

  .offers-section .section-title h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .offers-section .section-title > p:not(.section-kicker) {
    font-size: 0.98rem;
  }

  .offer-empty-card {
    padding: 20px 12px;
  }

  .offer-empty-card h3 {
    font-size: 1.55rem;
  }

  .offer-empty-kicker {
    font-size: 0.68rem;
  }

  .offer-zone-card {
    border-radius: 14px;
    padding: 0;
  }

  .offer-zone-media {
    border-radius: 12px;
  }

  .offer-zone-media img {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
    background: rgba(10, 16, 26, 0.42);
  }

  .offer-zone-grid {
    grid-template-columns: 1fr;
  }

  .offer-zone-body {
    padding: 12px;
  }

  .offer-zone-period,
  .offer-zone-countdown {
    font-size: 0.86rem;
  }

  .offer-zone-countdown {
    padding: 8px 10px;
    gap: 8px;
  }

  .offer-zone-countdown .offer-clock {
    width: 21px;
    height: 21px;
  }

  .offer-zone-countdown-label {
    font-size: 0.74rem;
  }

  .offer-zone-countdown-value {
    font-size: 0.93rem;
  }

  .offer-zone-stock {
    width: 100%;
    font-size: 0.76rem;
    border-radius: 12px;
    justify-content: center;
  }

  .offer-zone-state {
    font-size: 0.68rem;
    padding: 4px 7px;
  }

  .offer-zone-kicker {
    font-size: 0.66rem;
  }

  .offer-zone-hint {
    font-size: 0.64rem;
    padding: 3px 7px;
  }

  .offer-zone-copy {
    font-size: 0.9rem;
  }

  .topbar {
    font-size: 0.8rem;
    padding: 8px 8px;
  }

  .nav {
    grid-template-columns: minmax(96px, 1fr) auto auto auto;
    column-gap: 6px;
    padding: 5px 0;
  }

  .hero-grid {
    gap: 18px;
  }

  .badge {
    font-size: 0.86rem;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .hero p {
    margin-bottom: 18px;
  }

  .hero-showcase-frame {
    padding: 3px;
    border-radius: 16px;
  }

  .hero-main-img {
    border-radius: 13px;
  }

  .menu-btn,
  .theme-toggle {
    min-width: 44px;
    min-height: 44px;
    border-radius: 13px;
  }

  .menu-btn {
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .admin-mobile-visible {
    min-width: 64px !important;
    min-height: 36px !important;
    padding: 0 8px !important;
    border-radius: 10px !important;
    font-size: 0.72rem !important;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    padding: 10px;
    border-radius: 14px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 11px 12px;
    border-radius: 11px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-link-bank a {
    width: 100%;
    justify-content: flex-start;
  }

  .home-page .cta-strip .container {
    padding: 18px 12px;
    border-radius: 16px;
  }

  .faq-page .faq-cta .container {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .gallery-page .gallery-cta .container {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .despre-page .despre-cta .container {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .despre-page .about-hero-showcase .hero-showcase-frame {
    max-width: 430px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .despre-page .about-hero-showcase .hero-main-img {
    width: 100%;
    max-width: 430px;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center 48%;
  }

  .contact-page .contact-map-frame {
    border-radius: 18px;
    padding: 3px;
  }

  .contact-page .contact-map-wrap iframe {
    min-height: 340px;
    border-radius: 14px;
  }

  .contact-page .contact-map-card {
    padding: 10px 11px;
    border-radius: 12px;
  }

  .gallery-grid {
    columns: 1 220px;
  }

  .compliance-table td {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 11px;
  }

  .compliance-table td::before {
    font-size: 0.74rem;
  }

  .legend-item {
    padding: 10px 11px;
  }

  .desktop-callout {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .home-page .brand-logo-wrap {
    width: auto;
    height: auto;
    padding: 0;
  }

  .home-page .brand-logo {
    height: 66px;
  }

  .desktop-callout {
    display: block;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  .retetar-page,
  .retetar-page body,
  .retetar-page main,
  .retetar-page .section,
  .retetar-page .card,
  .retetar-page .retetar-item,
  .retetar-page .retetar-total,
  .retetar-page .retetar-breakdown li,
  .retetar-page .retetar-meta p {
    background: #05070b !important;
    color: #f4f7ff !important;
    box-shadow: none !important;
  }

  .retetar-page * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .retetar-page header,
  .retetar-page .desktop-callout,
  .retetar-page .mobile-bar,
  .retetar-page .cookie-banner,
  .retetar-page .btn,
  .retetar-page .btn-outline,
  .retetar-page .menu-call-btn,
  .retetar-page .menu-btn,
  .retetar-page .theme-toggle {
    display: none !important;
  }

  .retetar-page .container {
    width: 100% !important;
    max-width: none !important;
  }

  .retetar-page .retetar-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .retetar-page .retetar-item {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #2f3c52 !important;
  }

  .retetar-page .retetar-item h2,
  .retetar-page h1,
  .retetar-page h2,
  .retetar-page h3,
  .retetar-page strong,
  .retetar-page .section-kicker,
  .retetar-page .breadcrumbs a,
  .retetar-page .footer-grid h3 {
    color: #ffffff !important;
  }

  .retetar-page p,
  .retetar-page li,
  .retetar-page span,
  .retetar-page .breadcrumbs {
    color: #d8e0ef !important;
  }

  .retetar-page a {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .retetar-page footer {
    padding-bottom: 0 !important;
  }
}

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