/* ============================================
   VARIABLER & RESET
   ============================================ */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dim:     #8B6F2F;
  --gold-subtle:  rgba(201, 168, 76, 0.08);
  --black:        #080808;
  --dark:         #0E0E0E;
  --dark2:        #141414;
  --dark3:        #1C1C1C;
  --text:         #EDE5D4;
  --text-muted:   #7A7060;
  --text-soft:    #B8A898;
  --border:       rgba(201, 168, 76, 0.18);
  --border-soft:  rgba(255, 255, 255, 0.05);
  --cream:        #F5EDD9;
}

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

html {
  scroll-behavior: smooth;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--black); }
::-webkit-scrollbar-thumb    { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes expandW {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(0.3deg); }
}

@keyframes orbRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lineExpand {
  from { width: 0; opacity: 0; }
  to   { opacity: 1; }
}

@keyframes navbarIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn  { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes lbDrain   { from { width: 100%; } to { width: 0%; } }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

body {
  background:             var(--black);
  color:                  var(--text);
  font-family:            'Jost', sans-serif;
  font-weight:            300;
  line-height:            1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   UTMÄRKELSE-BANNER
   ============================================ */
.award-banner {
  position:        fixed;
  top: 0; left: 0; right: 0;
  z-index:         101;
  height:          36px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             8px;
  background:      linear-gradient(90deg, var(--gold-dim), var(--gold) 50%, var(--gold-dim));
  color:           var(--black);
  font-family:     'Jost', sans-serif;
  font-size:       12px;
  font-weight:     500;
  letter-spacing:  0.3px;
  text-decoration: none;
  white-space:     nowrap;
  overflow:        hidden;
  text-overflow:   ellipsis;
  padding:         0 16px;
  transition:      filter 0.25s;
}

.award-banner:hover { filter: brightness(1.08); }
.award-banner-icon   { flex-shrink: 0; }

@media (max-width: 560px) {
  .award-banner { font-size: 10.5px; padding: 0 10px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
  position:        fixed;
  top: 36px; left: 0; right: 0;
  z-index:         100;
  background:      rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom:   1px solid var(--border);
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         0 5vw;
  height:          68px;
  animation:       navbarIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#mainNav::after {
  content:    '';
  position:   absolute;
  bottom:     0; left: 5%; right: 5%;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35) 30%, rgba(201,168,76,0.35) 70%, transparent);
  pointer-events: none;
}

.nav-logo {
  font-family:    'Cormorant Garamond', serif;
  font-size:      22px;
  font-weight:    300;
  letter-spacing: 4px;
  color:          var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  transition:     opacity 0.3s;
}

.nav-logo em {
  font-style:  italic;
  font-weight: 300;
}

.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display:    flex;
  gap:        2.5rem;
  list-style: none;
}

.nav-links a {
  color:           var(--text-muted);
  text-decoration: none;
  font-size:       11px;
  font-weight:     400;
  letter-spacing:  2.5px;
  text-transform:  uppercase;
  position:        relative;
  padding-bottom:  4px;
  transition:      color 0.3s;
}

.nav-links a::after {
  content:         '';
  position:        absolute;
  bottom:          0; left: 0;
  width:           0; height: 1px;
  background:      var(--gold);
  transition:      width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display:        none;
  flex-direction: column;
  gap:            5px;
  background:     none;
  border:         none;
  cursor:         pointer;
  padding:        6px;
}

.nav-hamburger span {
  display:    block;
  width:      22px;
  height:     1px;
  background: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg);  background: var(--gold); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }

/* Mobile nav drawer */
.mobile-nav {
  display:         none;
  position:        fixed;
  top:             104px; left: 0; right: 0;
  z-index:         99;
  background:      rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom:   1px solid var(--border);
  overflow:        hidden;
  max-height:      0;
  transition:      max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  max-height: 460px;
}

.mobile-nav ul {
  list-style: none;
  padding:    1.5rem 5vw 2rem;
  display:    flex;
  flex-direction: column;
  gap:        0;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav ul li:last-child { border-bottom: none; }

.mobile-nav a {
  display:        block;
  padding:        1rem 0;
  color:          var(--text-muted);
  text-decoration: none;
  font-size:      12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition:     color 0.2s, padding-left 0.3s;
}

.mobile-nav a:hover {
  color:        var(--gold);
  padding-left: 8px;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height:      100vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        relative;
  overflow:        hidden;
  background:      var(--black);
}

.hero-bg-wrap {
  position: absolute;
  inset:    0;
  z-index:  0;
}

.hero-bg-slide {
  position:            absolute;
  inset:               0;
  background-size:     cover;
  background-position: center;
  background-repeat:   no-repeat;
  opacity:             0;
  transition:          opacity 2s ease;
}

.hero-bg-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset:    0;
  z-index:  1;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.62) 0%,
      rgba(8,8,8,0.38) 50%,
      rgba(8,8,8,0.78) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(201,168,76,0.06) 0%, transparent 45%);
}

/* Dekorativa ringar */
.hero-ornament {
  position:       absolute;
  top: 50%; left: 50%;
  transform:      translate(-50%, -50%);
  width:          640px;
  height:         640px;
  border-radius:  50%;
  border:         1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
  z-index:        2;
  animation:      floatY 8s ease-in-out infinite;
}

.hero-ornament::before {
  content:       '';
  position:      absolute;
  top: 8%; left: 8%; right: 8%; bottom: 8%;
  border-radius: 50%;
  border:        1px solid rgba(201, 168, 76, 0.05);
}

.hero-ornament::after {
  content:         '';
  position:        absolute;
  top: 50%; left: 50%;
  transform:       translate(-50%, -50%);
  width:           110%;
  height:          110%;
  border-radius:   50%;
  border:          1px dashed rgba(201, 168, 76, 0.04);
  animation:       orbRotate 40s linear infinite;
}

.hero-content {
  text-align: center;
  position:   relative;
  z-index:    3;
  padding:    0 2rem;
}

.hero-subtitle {
  font-size:      11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  2rem;
  opacity:        0.85;
  animation:      fadeInDown 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.hero-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(62px, 11vw, 120px);
  font-weight:    300;
  line-height:    0.95;
  letter-spacing: 4px;
  color:          var(--cream);
  margin-bottom:  1.75rem;
  animation:      fadeInUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}

.hero-title span {
  display:                  block;
  font-style:               italic;
  background:               linear-gradient(135deg, #C9A84C 0%, #E8C97A 45%, #C9A84C 100%);
  background-size:          200% auto;
  -webkit-background-clip:  text;
  -webkit-text-fill-color:  transparent;
  background-clip:          text;
  animation:                fadeInUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.35s both,
                            shimmerGold 4s linear 2s infinite;
}

.hero-tagline {
  font-size:      12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color:          #ffffff;
  margin-bottom:  3rem;
  text-shadow:    0 1px 8px rgba(0,0,0,0.7);
  animation:      fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}

.hero-divider {
  width:            80px;
  height:           1px;
  background:       linear-gradient(90deg, transparent, var(--gold), transparent);
  margin:           0 auto 3.5rem;
  animation:        expandW 0.8s ease 0.9s both;
  transform-origin: center;
}

.hero-info {
  display:         flex;
  gap:             0;
  justify-content: center;
  flex-wrap:       wrap;
  animation:       fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.05s both;
}

.hero-info-item {
  text-align:  center;
  padding:     0 2.5rem;
  position:    relative;
}

.hero-info-item + .hero-info-item::before {
  content:    '';
  position:   absolute;
  left:       0; top: 50%;
  transform:  translateY(-50%);
  width:      1px;
  height:     36px;
  background: rgba(201, 168, 76, 0.2);
}

.hero-info-label {
  font-size:      9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  5px;
  opacity:        0.8;
}

.hero-info-value {
  font-size:   14px;
  color:       #ffffff;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.scroll-cta {
  position:       absolute;
  bottom:         2.5rem;
  left:           50%;
  transform:      translateX(-50%);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            8px;
  font-size:      9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--text-muted);
  animation:      bounce 2.5s ease-in-out 2s infinite;
  z-index:        3;
  opacity:        0.6;
}

.scroll-cta::after {
  content:    '';
  width:      1px;
  height:     48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

/* ============================================
   SEKTIONER (gemensamt)
   ============================================ */
section {
  padding: 7rem 5vw;
}

.section-header {
  text-align:    center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display:        flex;
  align-items:    center;
  justify-content: center;
  gap:            14px;
  font-size:      10px;
  font-weight:    400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  1.25rem;
  opacity:        0.85;
}

.section-tag::before,
.section-tag::after {
  content:    '';
  width:      32px;
  height:     1px;
  background: var(--gold);
  opacity:    0.45;
}

.section-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(38px, 5.5vw, 60px);
  font-weight:    300;
  color:          var(--cream);
  letter-spacing: 1px;
  line-height:    1.1;
}

.section-line {
  width:            48px;
  height:           1px;
  background:       linear-gradient(90deg, transparent, var(--gold), transparent);
  margin:           1.75rem auto 0;
  animation:        expandW 0.6s ease both;
  transform-origin: center;
}

/* Scroll-reveal */
.reveal {
  opacity:    0;
  transform:  translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

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

/* ============================================
   ERBJUDANDEN
   ============================================ */
#offers {
  padding-bottom: 2rem;
}

.offers-carousel {
  position:    relative;
  display:     flex;
  align-items: center;
  gap:         0;
}

.offers-track {
  display:            grid;
  grid-auto-flow:     column;
  grid-auto-columns:  calc(50% - 0.5rem);
  gap:                1rem;
  overflow-x:         auto;
  scroll-behavior:    smooth;
  scrollbar-width:    none;
  -ms-overflow-style: none;
  padding:            0.5rem 0 1rem;
  flex:               1;
  min-width:          0;
  scroll-snap-type:   x mandatory;
}

.offers-track::-webkit-scrollbar { display: none; }

.offer-card {
  position:          relative;
  overflow:          hidden;
  aspect-ratio:      16 / 9;
  background:        var(--dark2);
  cursor:            default;
  box-shadow:        0 8px 40px rgba(0,0,0,0.55);
  transition:        transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  scroll-snap-align: start;
  border:            1px solid var(--border-soft);
}

.offer-card::after {
  content:    '';
  position:   absolute;
  inset:      0;
  border:     1px solid rgba(201,168,76,0);
  transition: border-color 0.4s;
  pointer-events: none;
}

.offer-card:hover {
  transform:  translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.12);
}

.offer-card:hover::after { border-color: rgba(201,168,76,0.2); }

.offer-card img,
.offer-card video {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.6s ease;
}

.offer-card:hover img,
.offer-card:hover video { transform: scale(1.04); }

.offer-card-title {
  position:    absolute;
  bottom:      0; left: 0; right: 0;
  padding:     2rem 1.5rem 1.25rem;
  background:  linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-size:   clamp(17px, 2.2vw, 24px);
  font-weight: 400;
  color:       var(--cream);
  letter-spacing: 1px;
}

.offers-arrow {
  flex-shrink:     0;
  width:           44px;
  height:          44px;
  border:          1px solid var(--border);
  background:      rgba(14,14,14,0.9);
  color:           var(--gold);
  font-size:       18px;
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      all 0.3s;
  z-index:         2;
  backdrop-filter: blur(8px);
}

.offers-arrow:hover {
  background:   rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.offers-arrow:disabled { opacity: 0.2; cursor: default; }
.offers-arrow-left  { margin-right: 0.5rem; }
.offers-arrow-right { margin-left:  0.5rem; }

/* ============================================
   MENY
   ============================================ */
#menu {
  background: var(--dark);
}

.menu-categories {
  display:         flex;
  gap:             6px;
  justify-content: center;
  flex-wrap:       wrap;
  margin-bottom:   3rem;
}

.cat-btn {
  background:     transparent;
  border:         1px solid var(--border);
  color:          var(--text-muted);
  padding:        9px 24px;
  font-family:    'Jost', sans-serif;
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     all 0.3s cubic-bezier(0.16,1,0.3,1);
  position:       relative;
  overflow:       hidden;
}

.cat-btn::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  opacity:    0;
  transition: opacity 0.3s;
}

.cat-btn.active,
.cat-btn:hover {
  border-color: var(--gold);
  color:        var(--gold);
}

.cat-btn.active::before,
.cat-btn:hover::before { opacity: 1; }

.cat-btn.active {
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.menu-grid {
  max-width: 1060px;
  margin:    0 auto;
}

.menu-category        { display: none; }
.menu-category.active { display: block; animation: fadeIn .4s ease; }

/* ============================================
   MENYKORT  (Wolt-stil)
   ============================================ */
.menu-cards-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   10px;
}

.menu-card {
  background:  var(--dark2);
  border:      1px solid var(--border-soft);
  border-left: 2px solid transparent;
  overflow:    hidden;
  transition:  border-color 0.3s, border-left-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  cursor:      default;
  animation:   cardReveal 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

.menu-card:hover {
  border-color:       rgba(201, 168, 76, 0.2);
  border-left-color:  var(--gold-dim);
  transform:          translateY(-3px);
  box-shadow:         0 12px 36px rgba(0,0,0,0.45);
}

.mc-body {
  display:     flex;
  align-items: stretch;
  min-height:  108px;
}

.mc-info {
  flex:           1;
  padding:        16px 16px 14px;
  display:        flex;
  flex-direction: column;
  gap:            4px;
  min-width:      0;
}

.mc-name {
  font-size:      15px;
  font-weight:    400;
  color:          var(--text);
  line-height:    1.3;
  letter-spacing: 0.2px;
}

.mc-name-ar {
  font-family:    'Cairo', sans-serif;
  font-size:      12px;
  font-weight:    300;
  color:          var(--gold-dim);
  letter-spacing: 0;
  opacity:        0.8;
}

.mc-desc {
  font-size:          12px;
  color:              var(--text-muted);
  line-height:        1.5;
  font-style:         italic;
  overflow:           hidden;
  display:            -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size:   21px;
  color:       var(--gold);
  margin-top:  auto;
  padding-top: 8px;
  line-height: 1;
}

.mc-price-wrap {
  display:     flex;
  align-items: center;
  gap:         8px;
  margin-top:  auto;
  padding-top: 8px;
  flex-wrap:   wrap;
}

.mc-price-strike {
  font-family:     'Cormorant Garamond', serif;
  font-size:       14px;
  color:           var(--text-muted);
  text-decoration: line-through;
  opacity:         0.7;
}

.mc-badge {
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.5px;
  color:          var(--black);
  background:     var(--gold);
  padding:        3px 8px;
}

.mc-img-wrap {
  flex-shrink:   0;
  width:         92px;
  min-width:     92px;
  height:        92px;
  align-self:    center;
  margin:        12px 12px 12px 0;
  border-radius: 12px;
  overflow:      hidden;
  position:      relative;
  cursor:        zoom-in;
}

.mc-img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.menu-card:hover .mc-img { transform: scale(1.08); }

.mc-img-hint {
  position:        absolute;
  bottom:          5px; right: 5px;
  background:      rgba(0,0,0,0.55);
  color:           var(--gold);
  font-size:       10px;
  width:           24px; height: 24px;
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  pointer-events:  none;
  opacity:         0;
  transition:      opacity 0.25s;
  backdrop-filter: blur(4px);
}

.mc-img-wrap:hover .mc-img-hint { opacity: 1; }

@media (max-width: 860px) {
  .menu-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mc-img-wrap { width: 76px; min-width: 76px; height: 76px; margin: 10px 10px 10px 0; }
  .mc-info     { padding: 12px 12px 10px; }
  .mc-name     { font-size: 14px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         900;
  background:      rgba(0,0,0,0.92);
  align-items:     center;
  justify-content: center;
  flex-direction:  column;
  gap:             1.25rem;
  cursor:          pointer;
  padding:         2rem;
  animation:       lbFadeIn 0.2s ease;
}

.lightbox-overlay.open { display: flex; }

.lightbox-img {
  max-width:   min(700px, 92vw);
  max-height:  78vh;
  object-fit:  contain;
  border:      1px solid rgba(201,168,76,0.3);
  cursor:      default;
  animation:   lbZoomIn 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow:  0 30px 100px rgba(0,0,0,0.8);
}

.lightbox-label {
  font-family:    'Cormorant Garamond', serif;
  font-size:      22px;
  font-weight:    300;
  color:          var(--gold);
  letter-spacing: 2px;
  text-align:     center;
  cursor:         default;
}

.lightbox-bar-wrap {
  width:         min(440px, 80vw);
  height:        2px;
  background:    rgba(255,255,255,0.1);
  overflow:      hidden;
  cursor:        default;
}

.lightbox-bar-fill {
  height:     100%;
  width:      100%;
  background: var(--gold);
}

/* ============================================
   OM OSS
   ============================================ */
#about {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  background:     var(--black);
}

.about-story {
  max-width:     680px;
  text-align:    center;
  margin-bottom: 4rem;
}

.about-story p {
  color:         var(--text-muted);
  line-height:   2;
  font-size:     15px;
  margin-bottom: 1.2rem;
}

.about-features {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  width:                 100%;
  margin-bottom:         4rem;
}

.about-feature {
  text-align:     center;
  padding:        2.5rem 2rem;
  background:     var(--dark2);
  border:         1px solid var(--border-soft);
  border-top:     2px solid var(--gold);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            1rem;
  transition:     transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}

.about-feature:hover {
  transform:  translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-feature-icon {
  font-size:     38px;
  margin-bottom: 0.25rem;
}

.about-feature-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      24px;
  font-weight:    300;
  color:          var(--gold);
  letter-spacing: 0.5px;
}

.about-feature-text {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.9;
}

.about-stats {
  display:         flex;
  gap:             5rem;
  padding-top:     3rem;
  border-top:      1px solid var(--border);
  justify-content: center;
}

.stat {
  text-align:   center;
  position:     relative;
  padding:      0 2rem;
}

.stat + .stat::before {
  content:    '';
  position:   absolute;
  left:       0; top: 0; bottom: 0;
  width:      1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.stat-num {
  font-family:    'Cormorant Garamond', serif;
  font-size:      52px;
  font-weight:    300;
  color:          var(--gold);
  line-height:    1;
  letter-spacing: -1px;
}

.stat-label {
  font-size:      10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-top:     8px;
  opacity:        0.8;
}

/* ============================================
   RECENSIONER
   ============================================ */
#reviews {
  background: var(--dark2);
  position:   relative;
}

#reviews::before {
  content:    '';
  position:   absolute;
  top: 0; left: 5%; right: 5%;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.reviews-summary {
  margin-top: 2.5rem;
}

.reviews-score-wrap {
  display:     inline-flex;
  align-items: center;
  gap:         1.25rem;
}

.reviews-score {
  font-family:    'Cormorant Garamond', serif;
  font-size:      60px;
  font-weight:    300;
  color:          var(--gold);
  line-height:    1;
  letter-spacing: -2px;
}

.reviews-stars {
  font-size:      22px;
  color:          var(--gold);
  letter-spacing: 4px;
  margin-bottom:  4px;
}

.reviews-count {
  font-size:      10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--text-muted);
  opacity:        0.7;
}

.reviews-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.25rem;
  max-width:             1120px;
  margin:                3.5rem auto 0;
  padding:               0 5vw;
}

.review-card {
  background:     var(--dark3);
  border:         1px solid var(--border-soft);
  padding:        2rem;
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
  transition:     border-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  position:       relative;
}

.review-card::before {
  content:     '\201C';
  position:    absolute;
  top:         1rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size:   64px;
  line-height: 1;
  color:       var(--gold);
  opacity:     0.12;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform:    translateY(-5px);
  box-shadow:   0 16px 48px rgba(0,0,0,0.5);
}

.review-header {
  display:     flex;
  align-items: center;
  gap:         12px;
}

.review-avatar {
  width:           40px; height: 40px;
  border-radius:   50%;
  background:      linear-gradient(135deg, var(--gold-dim), #5A4020);
  color:           var(--cream);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     'Cormorant Garamond', serif;
  font-size:       18px;
  font-weight:     400;
  flex-shrink:     0;
}

.review-name {
  font-size:   14px;
  color:       var(--text);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.review-date {
  font-size:      10px;
  color:          var(--text-muted);
  margin-top:     2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-stars {
  margin-left:    auto;
  color:          var(--gold);
  font-size:      13px;
  letter-spacing: 3px;
  flex-shrink:    0;
}

.review-text {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.85;
  font-style:  italic;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   KONTAKT
   ============================================ */
#contact {
  background: var(--dark);
  position:   relative;
}

.contact-blocks {
  display:         flex;
  justify-content: center;
  align-items:     stretch;
  max-width:       700px;
  margin:          0 auto;
  border:          1px solid var(--border);
  background:      var(--dark2);
}

.contact-block {
  flex:           1;
  padding:        3rem 2rem;
  text-align:     center;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            1rem;
}

.contact-sep {
  width:      1px;
  background: var(--border);
  align-self: stretch;
}

.contact-block-label {
  font-size:      9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.8;
}

.contact-block-value {
  font-size:   14px;
  color:       var(--text-muted);
  line-height: 2;
}

.map-link {
  font-family:     'Jost', sans-serif;
  font-size:       10px;
  letter-spacing:  2px;
  text-transform:  uppercase;
  color:           var(--gold);
  text-decoration: none;
  border-bottom:   1px solid transparent;
  transition:      border-color 0.2s, color 0.2s, letter-spacing 0.3s;
  opacity:         0.8;
}

.map-link:hover {
  color:          var(--gold-light);
  border-color:   var(--gold-light);
  letter-spacing: 2.5px;
  opacity:        1;
}

.fb-link {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  font-family:     'Jost', sans-serif;
  font-size:       12px;
  font-weight:     400;
  letter-spacing:  1px;
  color:           var(--text-muted);
  text-decoration: none;
  border:          1px solid var(--border-soft);
  padding:         10px 20px;
  transition:      color 0.3s, border-color 0.3s, background 0.3s;
}

.fb-link:hover {
  color:        var(--text);
  border-color: rgba(24,119,242,0.5);
  background:   rgba(24,119,242,0.07);
}

.map-embed {
  max-width:  700px;
  margin:     2.5rem auto 0;
  height:     320px;
  border:     1px solid var(--border);
  overflow:   hidden;
  filter:     grayscale(0.5) brightness(0.75) contrast(1.05);
  transition: filter 0.4s;
}

.map-embed:hover { filter: grayscale(0) brightness(1); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding:         3rem 5vw 2.5rem;
  border-top:      1px solid var(--border-soft);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  font-size:       11px;
  color:           var(--text-muted);
  letter-spacing:  1px;
  flex-wrap:       wrap;
  gap:             1rem;
  position:        relative;
  background:      var(--dark);
}

footer::before {
  content:    '';
  position:   absolute;
  top: 0; left: 5%; right: 5%;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.footer-fb {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     'Jost', sans-serif;
  font-size:       11px;
  letter-spacing:  1px;
  color:           var(--text-muted);
  text-decoration: none;
  transition:      color 0.2s;
}

.footer-fb:hover { color: var(--gold); }

.footer-admin-link {
  color:           transparent;
  font-size:       8px;
  text-decoration: none;
  transition:      color 0.3s;
  user-select:     none;
  line-height:     1;
}

.footer-admin-link:hover { color: rgba(201,168,76,0.2); }

/* ============================================
   RESPONSIV (mobil)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
  .mobile-nav     { display: block; }

  section { padding: 5rem 5vw; }

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

  .contact-blocks { flex-direction: column; }
  .contact-sep    { width: 100%; height: 1px; }

  .map-embed { height: 240px; }

  #hero { min-height: 100svh; }

  .hero-bg-slide { background-position: center center; }

  .hero-ornament {
    width:  min(90vw, 380px);
    height: min(90vw, 380px);
  }

  .hero-content { padding: 0 1.25rem; }

  .hero-subtitle {
    font-size:      10px;
    letter-spacing: 4px;
    margin-bottom:  1.25rem;
  }

  .hero-tagline {
    letter-spacing: 3px;
    margin-bottom:  2.5rem;
  }

  .hero-info {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   1.5rem 0;
  }

  .hero-info-item + .hero-info-item::before { display: none; }
  .hero-info-item { padding: 0 1rem; }

  .hero-info-label { font-size: 9px; }
  .hero-info-value { font-size: 13px; }

  .about-features { grid-template-columns: 1fr; }
  .about-stats    { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .offers-track { grid-auto-columns: calc(90% - 0.5rem); }
  .reviews-grid { padding: 0 2vw; }
}

/* ============================================
   NAVIGATION TILLÄGG
   ============================================ */
.nav-links {
  position:  absolute;
  left:      50%;
  transform: translateX(-50%);
}

.nav-cta {
  display:         inline-block;
  padding:         8px 22px;
  border:          1px solid var(--gold);
  background:      var(--gold);
  color:           var(--black);
  text-decoration: none;
  font-size:       10px;
  font-weight:     500;
  letter-spacing:  2px;
  text-transform:  uppercase;
  transition:      background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  white-space:     nowrap;
  margin-left:     1.5rem;
  flex-shrink:     0;
}

.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform:  translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* ============================================
   HERO CTA-KNAPPAR
   ============================================ */
.hero-ctas {
  display:         flex;
  gap:             1rem;
  justify-content: center;
  flex-wrap:       wrap;
  margin-top:      2.75rem;
  animation:       fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.3s both;
}

.hero-btn {
  display:         inline-block;
  padding:         14px 34px;
  font-size:       10px;
  font-weight:     400;
  letter-spacing:  2.5px;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor:          pointer;
}

.hero-btn-gold {
  background:      linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% auto;
  color:           var(--black);
  border:          none;
  font-weight:     500;
}

.hero-btn-gold:hover {
  background-position: right center;
  box-shadow:          0 10px 32px rgba(201,168,76,0.4);
  transform:           translateY(-3px);
}

.hero-btn-outline {
  border:      1px solid rgba(201,168,76,0.4);
  color:       var(--text-soft);
  background:  transparent;
}

.hero-btn-outline:hover {
  border-color: var(--gold);
  color:        var(--gold);
  transform:    translateY(-3px);
  background:   rgba(201,168,76,0.05);
}

/* ============================================
   GOLD BUTTON (återanvändbar)
   ============================================ */
.gold-btn {
  display:         inline-block;
  padding:         13px 32px;
  border:          1px solid var(--gold);
  color:           var(--gold);
  text-decoration: none;
  font-size:       10px;
  font-weight:     400;
  letter-spacing:  2.5px;
  text-transform:  uppercase;
  transition:      all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor:          pointer;
}

.gold-btn:hover {
  background: var(--gold);
  color:      var(--black);
  transform:  translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ============================================
   FEATURES BAR
   ============================================ */
#features-bar {
  padding:       0;
  background:    var(--dark2);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fbar-inner {
  display:         flex;
  align-items:     center;
  justify-content: center;
  max-width:       1200px;
  margin:          0 auto;
  padding:         0 5vw;
  flex-wrap:       wrap;
}

.fbar-item {
  display:         flex;
  align-items:     center;
  gap:             0.85rem;
  padding:         1.6rem 2rem;
  flex:            1;
  min-width:       170px;
  justify-content: center;
  transition:      background 0.3s;
}

.fbar-item:hover { background: rgba(201,168,76,0.04); }

.fbar-icon {
  font-size:   22px;
  flex-shrink: 0;
}

.fbar-title {
  font-size:      13px;
  font-weight:    400;
  color:          var(--text);
  letter-spacing: 0.3px;
}

.fbar-sub {
  font-size:  11px;
  color:      var(--text-muted);
  margin-top: 2px;
}

.fbar-sep {
  width:       1px;
  height:      40px;
  background:  var(--border);
  flex-shrink: 0;
}

/* ============================================
   SIGNATURRÄTTER
   ============================================ */
#signature {
  background: var(--dark);
}

.sig-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   1.5rem;
  max-width:             1120px;
  margin:                0 auto;
}

.sig-card {
  background:  var(--dark2);
  border:      1px solid var(--border-soft);
  overflow:    hidden;
  transition:  transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
}

.sig-card:hover {
  transform:    translateY(-7px);
  box-shadow:   0 22px 55px rgba(0,0,0,0.6);
  border-color: rgba(201,168,76,0.28);
}

.sig-img-wrap {
  aspect-ratio:    4 / 3;
  background:      linear-gradient(135deg, #1A1408 0%, #0E0C06 100%);
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
  position:        relative;
}

.sig-img-wrap img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}

.sig-card:hover .sig-img-wrap img { transform: scale(1.07); }

.sig-img-placeholder {
  font-size:   52px;
  opacity:     0.28;
  user-select: none;
}

.sig-info { padding: 1.4rem 1.5rem 1.5rem; }

.sig-name {
  font-family:    'Cormorant Garamond', serif;
  font-size:      22px;
  font-weight:    400;
  color:          var(--cream);
  letter-spacing: 0.4px;
  margin-bottom:  2px;
}

.sig-name-ar {
  font-family:   'Cairo', sans-serif;
  font-size:     12px;
  color:         var(--gold-dim);
  opacity:       0.8;
  margin-bottom: 8px;
}

.sig-desc {
  font-size:     12px;
  color:         var(--text-muted);
  line-height:   1.65;
  font-style:    italic;
  margin-bottom: 1rem;
}

.sig-price {
  font-family: 'Cormorant Garamond', serif;
  font-size:   26px;
  font-weight: 400;
  color:       var(--gold);
  line-height: 1;
}

.sig-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   LUNCHBUFFÉ
   ============================================ */
#lunch {
  background:    linear-gradient(135deg, #0D0B05 0%, #181305 50%, #0D0B05 100%);
  border-top:    1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position:      relative;
  overflow:      hidden;
}

#lunch::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 58%);
  pointer-events: none;
}

.lunch-inner {
  display:     flex;
  align-items: center;
  gap:         5rem;
  max-width:   900px;
  margin:      0 auto;
  flex-wrap:   wrap;
  position:    relative;
  z-index:     1;
}

.lunch-left  { flex: 1; min-width: 260px; }
.lunch-right { text-align: center; min-width: 200px; }

.lunch-tag {
  font-size:      10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.8;
  margin-bottom:  1rem;
}

.lunch-paused-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  background:     rgba(214, 138, 66, 0.12);
  border:         1px solid rgba(214, 138, 66, 0.45);
  color:          #e0a868;
  font-size:      12px;
  letter-spacing: 0.3px;
  padding:        7px 16px;
  border-radius:  999px;
  margin-bottom:  1.25rem;
}

.lunch-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(40px, 6vw, 64px);
  font-weight:    300;
  color:          var(--cream);
  letter-spacing: 2px;
  margin-bottom:  0.5rem;
}

.lunch-sub {
  font-size:      12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.85;
  margin-bottom:  2rem;
}

.lunch-items {
  display:        flex;
  flex-direction: column;
  gap:            0.65rem;
}

.lunch-item {
  font-size:   13px;
  color:       var(--text-muted);
  display:     flex;
  align-items: center;
  gap:         0.5rem;
}

.lunch-price-wrap {
  display:     inline-flex;
  align-items: flex-start;
  gap:         4px;
}

.lunch-price {
  font-family:             'Cormorant Garamond', serif;
  font-size:               clamp(72px, 12vw, 110px);
  font-weight:             300;
  line-height:             0.9;
  background:              linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size:         200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
  animation:               shimmerGold 4s linear 1s infinite;
}

.lunch-price-kr {
  font-family: 'Cormorant Garamond', serif;
  font-size:   28px;
  color:       var(--gold-dim);
  padding-top: 10px;
  font-weight: 300;
}

.lunch-time {
  font-size:      11px;
  letter-spacing: 3px;
  color:          var(--text-muted);
  text-transform: uppercase;
  margin-top:     0.75rem;
}

/* ============================================
   TRADITION MÖTER KVALITET
   ============================================ */
#tradition {
  background: var(--black);
}

.tradition-inner {
  display:     flex;
  gap:         5rem;
  align-items: center;
  max-width:   1100px;
  margin:      0 auto;
  flex-wrap:   wrap;
}

.tradition-left  { flex: 1; min-width: 280px; }
.tradition-right { flex: 1; min-width: 280px; }

.tradition-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(30px, 4.5vw, 50px);
  font-weight:    300;
  color:          var(--cream);
  line-height:    1.2;
  margin:         1rem 0 1.5rem;
  letter-spacing: 0.5px;
}

.tradition-text {
  font-size:   15px;
  color:       var(--text-muted);
  line-height: 2;
}

.tradition-menu-list {
  border-top: 1px solid var(--border);
}

.trad-item {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         1.1rem 0;
  border-bottom:   1px solid var(--border-soft);
  transition:      padding-left 0.3s;
}

.trad-item:hover { padding-left: 8px; }

.trad-item-name {
  font-family:    'Cormorant Garamond', serif;
  font-size:      20px;
  font-weight:    300;
  color:          var(--text);
  letter-spacing: 0.4px;
  transition:     color 0.3s;
}

.trad-item:hover .trad-item-name { color: var(--gold); }

.trad-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size:   13px;
  color:       var(--gold);
  font-weight: 300;
}

/* ============================================
   VARFÖR GÄSTER ÅTERKOMMER
   ============================================ */
#why-return {
  background: var(--dark2);
  text-align: center;
  position:   relative;
}

#why-return::before {
  content:    '';
  position:   absolute;
  top: 0; left: 5%; right: 5%;
  height:     1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.why-inner { max-width: 1100px; margin: 0 auto; }

.why-stats {
  display:         flex;
  align-items:     stretch;
  justify-content: center;
  flex-wrap:       wrap;
  margin-top:      3.5rem;
  border:          1px solid var(--border);
  background:      var(--dark3);
}

.why-stat {
  flex:            1;
  min-width:       150px;
  padding:         2.5rem 1.25rem;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             0.4rem;
  transition:      background 0.3s;
}

.why-stat:hover { background: rgba(201,168,76,0.04); }

.why-stat-icon {
  font-size:     26px;
  margin-bottom: 0.2rem;
}

.why-stat-num {
  font-family:    'Cormorant Garamond', serif;
  font-size:      40px;
  font-weight:    300;
  color:          var(--gold);
  line-height:    1;
  letter-spacing: -1px;
}

.why-stat-num span {
  font-size:      22px;
  letter-spacing: 0;
}

.why-stat-label {
  font-size:      10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color:          var(--text-muted);
  opacity:        0.85;
  line-height:    1.5;
}

.why-stat-sep {
  width:       1px;
  background:  var(--border);
  flex-shrink: 0;
  align-self:  stretch;
}

.why-cta { margin-top: 3rem; }

/* ============================================
   PAKET & PRISER
   ============================================ */
#packages {
  background: var(--dark);
}

.pkg-grid {
  display:               grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap:                   1.5rem;
  max-width:             820px;
  margin:                0 auto;
  justify-content:       center;
}

.pkg-card {
  background:      var(--dark2);
  border:          1px solid var(--border-soft);
  border-top:      2px solid transparent;
  padding:         2.5rem 1.75rem;
  text-align:      center;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             0.65rem;
  transition:      transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
  position:        relative;
  overflow:        hidden;
}

.pkg-card:hover {
  transform:    translateY(-7px);
  box-shadow:   0 22px 55px rgba(0,0,0,0.55);
  border-color: rgba(201,168,76,0.22);
  border-top-color: var(--gold-dim);
}

.pkg-card-featured {
  border-top-color: var(--gold);
}

.pkg-card-featured::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: radial-gradient(ellipse at top, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pkg-badge {
  position:       absolute;
  top:            0; right: 0;
  background:     var(--gold);
  color:          var(--black);
  font-size:      8px;
  font-weight:    500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:        4px 12px;
}

.pkg-icon {
  font-size:     36px;
  margin-bottom: 0.2rem;
}

.pkg-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      23px;
  font-weight:    400;
  color:          var(--cream);
  letter-spacing: 0.4px;
}

.pkg-sub {
  font-size:   12px;
  color:       var(--text-muted);
  line-height: 1.6;
}

.pkg-btn {
  display:         inline-block;
  margin-top:      0.85rem;
  padding:         9px 24px;
  border:          1px solid var(--border);
  color:           var(--text-muted);
  text-decoration: none;
  font-size:       10px;
  letter-spacing:  2px;
  text-transform:  uppercase;
  transition:      all 0.3s;
}

.pkg-btn:hover {
  border-color: var(--gold);
  color:        var(--gold);
  transform:    translateY(-2px);
}

/* ============================================
   UTMÄRKELSER
   ============================================ */
#awards {
  background:    linear-gradient(135deg, #090700 0%, #140F00 50%, #090700 100%);
  border-top:    1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  position:      relative;
  overflow:      hidden;
}

#awards::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: radial-gradient(ellipse at 25% 50%, rgba(201,168,76,0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.awards-inner {
  display:     flex;
  align-items: center;
  gap:         5rem;
  max-width:   1100px;
  margin:      0 auto;
  flex-wrap:   wrap;
  position:    relative;
  z-index:     1;
}

.awards-text { flex: 1; min-width: 280px; }

.awards-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(30px, 4.5vw, 50px);
  font-weight:    300;
  color:          var(--cream);
  margin:         1rem 0 1.5rem;
  letter-spacing: 0.4px;
}

.awards-sub {
  font-size:   15px;
  color:       var(--text-muted);
  line-height: 2;
}

.awards-badges {
  display:   flex;
  gap:       2rem;
  flex-wrap: wrap;
}

.award-badge {
  width:           160px;
  aspect-ratio:    3 / 4;
  border:          1px solid rgba(201,168,76,0.35);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  padding:         1.5rem 1rem;
  text-align:      center;
  background:      rgba(201,168,76,0.03);
  position:        relative;
  transition:      border-color 0.35s, transform 0.35s;
}

.award-badge:hover {
  border-color: var(--gold);
  transform:    scale(1.03);
}

.award-badge::before,
.award-badge::after {
  content:   '✦';
  color:     var(--gold);
  font-size: 11px;
  opacity:   0.55;
}

.award-year {
  font-family:    'Cormorant Garamond', serif;
  font-size:      52px;
  font-weight:    300;
  color:          var(--gold);
  line-height:    1;
  letter-spacing: -2px;
}

.award-label {
  font-size:      10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:          var(--cream);
  line-height:    1.5;
}

.award-sub {
  font-size:      10px;
  color:          var(--gold-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   CATERING & EVENT
   ============================================ */
#catering-event {
  background: var(--black);
}

.catering-inner {
  display:     flex;
  gap:         5rem;
  align-items: center;
  max-width:   1100px;
  margin:      0 auto;
  flex-wrap:   wrap;
}

.catering-text { flex: 1; min-width: 280px; }

.catering-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(34px, 5vw, 56px);
  font-weight:    300;
  color:          var(--cream);
  margin:         1rem 0 1.5rem;
  letter-spacing: 0.4px;
}

.catering-desc {
  font-size:     15px;
  color:         var(--text-muted);
  line-height:   2;
  margin-bottom: 1.75rem;
}

.catering-list {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            0.7rem;
}

.catering-list li {
  font-size:   13px;
  color:       var(--text-muted);
  padding-left: 1.5rem;
  position:    relative;
  line-height: 1.6;
}

.catering-list li::before {
  content:  '✦';
  position: absolute;
  left:     0;
  color:    var(--gold);
  font-size: 9px;
  top:      3px;
}

.catering-img-side {
  flex:            1;
  min-width:       260px;
  aspect-ratio:    4 / 3;
  background:      linear-gradient(135deg, var(--dark2), var(--dark3));
  border:          1px solid var(--border);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-direction:  column;
  gap:             1rem;
  color:           var(--text-muted);
  font-size:       13px;
  font-style:      italic;
  position:        relative;
  overflow:        hidden;
}

.catering-img-emoji {
  font-size:  60px;
  opacity:    0.28;
}

/* ============================================
   NY FOOTER
   ============================================ */
footer {
  padding:    0;
  background: var(--dark);
  border-top: none;
  display:    block;
}

footer::before {
  display: none;
}

.footer-inner {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:                   3rem;
  max-width:             1200px;
  margin:                0 auto;
  padding:               4rem 5vw 3rem;
  border-top:            1px solid var(--border);
}

.footer-logo {
  font-family:    'Cormorant Garamond', serif;
  font-size:      26px;
  font-weight:    300;
  letter-spacing: 4px;
  color:          var(--gold);
  text-transform: uppercase;
  margin-bottom:  0.65rem;
}

.footer-logo em { font-style: italic; }

.footer-slogan {
  font-size:      10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--gold-dim);
  margin-bottom:  1rem;
  opacity:        0.8;
}

.footer-tagline {
  font-size:     13px;
  color:         var(--text-muted);
  line-height:   1.85;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size:      9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.75;
  margin-bottom:  1.5rem;
}

.footer-hours div {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.65;
}

.footer-hours-val  { color: var(--text-soft) !important; }
.footer-hours-gap  { margin-top: 0.75rem !important; }

.footer-contact-list {
  font-size:   13px;
  color:       var(--text-muted);
  line-height: 1.8;
}

.footer-contact-label {
  font-size:      9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.7;
  margin-bottom:  4px;
}

.footer-nav-list {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            0.55rem;
}

.footer-nav-list a {
  font-size:       12px;
  color:           var(--text-muted);
  text-decoration: none;
  letter-spacing:  0.4px;
  transition:      color 0.25s, padding-left 0.3s;
  display:         block;
}

.footer-nav-list a:hover {
  color:        var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         1.5rem 5vw;
  border-top:      1px solid var(--border-soft);
  font-size:       11px;
  color:           var(--text-muted);
  letter-spacing:  1px;
  background:      var(--black);
}

/* ============================================
   RESPONSIVA REGLER – NYA SEKTIONER
   ============================================ */
@media (max-width: 1024px) {
  .pkg-grid  { grid-template-columns: repeat(2, 1fr); }
  .sig-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-cta           { display: none; }

  .hero-ctas         { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btn          { width: 100%; max-width: 260px; text-align: center; padding: 13px 24px; }

  .fbar-sep          { display: none; }
  .fbar-item         { padding: 1.25rem 1rem; min-width: 130px; }

  .sig-grid          { grid-template-columns: 1fr; }
  .pkg-grid          { grid-template-columns: 1fr; }

  .lunch-inner       { flex-direction: column; gap: 2.5rem; text-align: center; }

  .tradition-inner   { flex-direction: column; gap: 3rem; }
  .awards-inner      { flex-direction: column; gap: 3rem; }
  .catering-inner    { flex-direction: column; gap: 3rem; }

  .why-stat-sep      { width: 100%; height: 1px; }
  .why-stats         { flex-direction: column; }

  .footer-inner      { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5vw 2rem; }
}

@media (max-width: 480px) {
  .awards-badges     { justify-content: center; }
  .award-badge       { width: 140px; }
}

/* ============================================
   UTMÄRKELSE-CERTIFIKAT (ny design)
   ============================================ */
.awards-certs {
  display:     flex;
  gap:         1.5rem;
  flex-shrink: 0;
  align-items: center;
}

.award-cert-frame {
  border:     3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.8), 0 0 0 6px rgba(201,168,76,0.08), inset 0 0 0 1px rgba(201,168,76,0.2);
  overflow:   hidden;
  max-width:  260px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}

.award-cert-frame:hover {
  transform:  translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.9), 0 0 0 6px rgba(201,168,76,0.2);
}

.award-cert-frame img {
  display:    block;
  width:      100%;
  height:     auto;
  max-height: 340px;
  object-fit: cover;
}

.award-cert-placeholder {
  background:      linear-gradient(160deg, #1a1200 0%, #0d0900 100%);
  padding:         2rem 1.75rem;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  text-align:      center;
  gap:             0.55rem;
  min-height:      240px;
  justify-content: center;
  min-width:       180px;
}

.award-cert-yr {
  font-family: 'Cormorant Garamond', serif;
  font-size:   52px;
  font-weight: 300;
  color:       var(--gold);
  line-height: 1;
}

.award-cert-lbl {
  font-size:      11px;
  letter-spacing: 1.5px;
  color:          var(--text-muted);
  line-height:    1.5;
  max-width:      160px;
  margin-top:     0.25rem;
}

.award-cert-name {
  font-family:    'Cormorant Garamond', serif;
  font-size:      20px;
  font-weight:    400;
  color:          var(--cream);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top:     0.5rem;
  border-top:     1px solid rgba(201,168,76,0.3);
  padding-top:    0.75rem;
  width:          100%;
  text-align:     center;
}

.award-cert-ctry {
  font-size:      9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--gold);
  opacity:        0.7;
}

@media (max-width: 1024px) {
  .awards-certs      { gap: 1rem; }
  .award-cert-frame  { max-width: 200px; }
}

@media (max-width: 768px) {
  .awards-certs            { gap: 0.85rem; justify-content: center; }
  .award-cert-frame        { max-width: 160px; }
  .award-cert-yr           { font-size: 38px; }
  .award-cert-placeholder  { min-width: 140px; padding: 1.5rem 1.25rem; }
  .award-cert-name         { font-size: 16px; }
}

/* ============================================
   LOGOTYP-BILD
   ============================================ */
.nav-logo {
  display:     flex;
  align-items: center;
  padding:     0;
  font-size:   unset;
  letter-spacing: unset;
}

.nav-logo-img {
  height:       56px;
  width:        auto;
  display:      block;
  object-fit:   contain;
  /* Vit bakgrund på oval smälter in i nav via multiply */
  mix-blend-mode: multiply;
  filter:       brightness(0.92) contrast(1.1);
  transition:   opacity 0.3s;
}

.nav-logo-img:hover { opacity: 0.85; }

.footer-logo-img {
  height:     100px;
  width:      auto;
  display:    block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter:     brightness(0.9) contrast(1.1);
}

/* Logotyp-korrektion – ingen blend mode, ren vit oval på mörk nav */
.nav-logo-img {
  height:         54px;
  width:          auto;
  display:        block;
  object-fit:     contain;
  mix-blend-mode: normal;
  filter:         none;
  border-radius:  4px;
  transition:     opacity 0.3s, transform 0.3s;
}

.nav-logo-img:hover {
  opacity:   0.9;
  transform: scale(1.02);
}

.footer-logo-img {
  height:         100px;
  width:          auto;
  display:        block;
  object-fit:     contain;
  mix-blend-mode: normal;
  filter:         none;
  border-radius:  4px;
}

/* === Pkg kontakta-oss under korten === */
.pkg-contact-cta {
  text-align:  center;
  margin-top:  2.5rem;
}

.pkg-contact-text {
  color:        var(--text-muted);
  font-family:  'Jost', sans-serif;
  font-size:    0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pkg-contact-tel {
  display:      inline-block;
  font-family:  'Cormorant Garamond', serif;
  font-size:    2rem;
  font-weight:  600;
  color:        var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:   opacity 0.25s;
}

.pkg-contact-tel:hover {
  opacity: 0.75;
}

.pkg-parking-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            8px;
  background:     rgba(201, 168, 76, 0.1);
  border:         1px solid rgba(201, 168, 76, 0.4);
  color:          var(--gold);
  font-family:    'Jost', sans-serif;
  font-size:      12px;
  letter-spacing: 0.3px;
  padding:        7px 18px;
  border-radius:  999px;
  margin-top:     1.75rem;
}

/* ================================================================
   ARABISK GEOMETRISK VIBE – MÖNSTEROVERLAY & ORNAMENTDEKOR
   ================================================================ */

/* 8-uddigt islamiskt stjärnmönster (khatam) */
:root {
  --arabic-tile: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3L47 24L66 14L56 34L77 40L56 46L66 66L47 56L40 77L33 56L14 66L24 46L3 40L24 34L14 14L33 24Z' fill='none' stroke='%23C9A84C' stroke-width='0.8'/%3E%3Cpolygon points='40,18 56,24 62,40 56,56 40,62 24,56 18,40 24,24' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3Ccircle cx='40' cy='40' r='5' fill='none' stroke='%23C9A84C' stroke-width='0.35'/%3E%3C/svg%3E");
}

/* Mönster-overlay direkt i heroet */
.hero-arabic-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--arabic-tile);
  background-size: 80px 80px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 2;
}

/* Sätt position:relative på alla mörka sektioner */
#features-bar,
#signature,
#lunch,
#tradition,
#why-return,
#packages,
#awards,
footer { position: relative; }

/* Geometriskt 8-stjärnmönster som overlay på mörka sektioner */
#features-bar::before,
#signature::before,
#lunch::before,
#tradition::before,
#why-return::before,
#packages::before,
#awards::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--arabic-tile);
  background-size: 80px 80px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

/* Innehåll ovanför mönstret */
#features-bar > *,
#signature > *,
#lunch > *,
#tradition > *,
#why-return > *,
#packages > *,
#awards > *,
footer > * {
  position: relative;
  z-index: 1;
}

/* ── Djupare sektionsbakgrunder med varm guld-glöd ── */
#awards {
  background: radial-gradient(ellipse at center, #0f0c02 0%, var(--black) 65%) !important;
}

#why-return {
  background: radial-gradient(ellipse at top center, #0d0b02 0%, var(--black) 60%) !important;
}

footer {
  background: radial-gradient(ellipse at top center, #0e0c02 0%, var(--black) 55%) !important;
}

/* ── Guldlinjegränser vid sektionsövergångar ── */
#features-bar {
  box-shadow: 0 1px 0 rgba(201,168,76,0.18), inset 0 -1px 0 rgba(201,168,76,0.12);
}

#signature,
#awards,
#packages {
  box-shadow: inset 0 1px 0 rgba(201,168,76,0.12), inset 0 -1px 0 rgba(201,168,76,0.12);
}

/* ── Ornamentala sektionstaggar ── */
.section-tag::before,
.section-tag::after {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.8), transparent) !important;
  height: 1px !important;
}

/* ── Dramatisk text-shadow på sektionsrubriker ── */
.section-header h2,
.why-title,
.awards-title,
.tradition-title,
.lunch-title {
  text-shadow: 0 2px 40px rgba(201,168,76,0.14), 0 0 80px rgba(201,168,76,0.06);
}

/* ── Pkg-kort med arabisk guldgradient i hörnen ── */
.pkg-card {
  position: relative;
  overflow: hidden;
}

.pkg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,    rgba(201,168,76,0.08) 0%, transparent 45%),
    radial-gradient(circle at bottom right, rgba(201,168,76,0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.pkg-card > * { position: relative; z-index: 1; }

/* ── Gold-btn mer dramatisk hover ── */
.gold-btn:hover {
  box-shadow: 0 0 30px rgba(201,168,76,0.22), 0 4px 20px rgba(0,0,0,0.4) !important;
}

/* ── Signaturkort-dekoration ── */
.sig-card {
  position: relative;
}

.sig-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.sig-card > * { position: relative; z-index: 1; }

/* ── Recensionskort – arabisk kant ── */
.review-card {
  border-top: 1px solid rgba(201,168,76,0.15) !important;
  box-shadow: inset 0 0 40px rgba(201,168,76,0.03) !important;
}

/* ── Statistiksiffror – guld-glöd ── */
.why-stat-num {
  text-shadow: 0 0 30px rgba(201,168,76,0.25);
}

/* ================================================================
   RAMADAN LYKTA (FANOOS) – ANIMATION & PLACERING
   ================================================================ */

@keyframes lanternSwing {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}

@keyframes lanternFlicker {
  0%,  100% { filter: drop-shadow(0 0 14px rgba(255,155,20,0.55))
                       drop-shadow(0 0 30px rgba(255,120,0,0.28)); }
  30%        { filter: drop-shadow(0 0 8px  rgba(255,155,20,0.38))
                       drop-shadow(0 0 18px rgba(255,120,0,0.18)); }
  60%        { filter: drop-shadow(0 0 20px rgba(255,175,40,0.65))
                       drop-shadow(0 0 40px rgba(255,140,10,0.32)); }
}

.ramadan-lantern {
  position:        absolute;
  top:             0;
  z-index:         3;
  transform-origin: top center;
  pointer-events:  none;
  animation:       lanternSwing 5.5s ease-in-out infinite;
}

.ramadan-lantern svg {
  animation: lanternFlicker 3.8s ease-in-out infinite;
  display:   block;
}

.ramadan-lantern--left {
  left:            4%;
  width:           68px;
  animation-delay: 0s;
}

.ramadan-lantern--left svg {
  width:  68px;
  height: auto;
  animation-delay: 0s;
}

.ramadan-lantern--right {
  right:           4%;
  width:           55px;
  animation-delay: -2.8s;       /* fasförskjutning för organisk känsla */
  animation-duration: 4.8s;
}

.ramadan-lantern--right svg {
  width:  55px;
  height: auto;
  animation-delay: -1.5s;
  animation-duration: 4.2s;
}

/* Dölj på mobil */
@media (max-width: 900px) {
  .ramadan-lantern { display: none; }
}

/* ================================================================
   TIKTOK-SEKTION
   ================================================================ */
#tiktok-section {
  background: var(--dark);
  padding: 7rem 5vw;
  position: relative;
}

#tiktok-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--arabic-tile);
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

#tiktok-section > * { position: relative; z-index: 1; }

.tiktok-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.tiktok-text {
  flex: 1;
}

.tiktok-title {
  font-family:    'Cormorant Garamond', serif;
  font-size:      clamp(2rem, 4vw, 3rem);
  font-weight:    300;
  color:          var(--text);
  line-height:    1.2;
  margin-bottom:  1.2rem;
}

.tiktok-sub {
  color:       var(--text-muted);
  font-size:   1rem;
  line-height: 1.7;
  max-width:   400px;
}

.tiktok-embed-wrap {
  flex-shrink: 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(201,168,76,0.08), 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  line-height: 0;
}

@media (max-width: 860px) {
  .tiktok-inner {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  .tiktok-text .section-tag { justify-content: center !important; }
  .tiktok-sub { max-width: 100%; }
  .tiktok-embed-wrap iframe { width: 100%; max-width: 325px; }
}

/* ============================================
   SPRÅKVÄLJARE
   ============================================ */
.lang-switcher {
  display: flex;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  background:     none;
  border:         none;
  color:          var(--text-muted);
  font-family:    'Jost', sans-serif;
  font-size:      11px;
  font-weight:    400;
  letter-spacing: 1px;
  padding:        6px 12px;
  border-radius:  999px;
  cursor:         pointer;
  transition:     color 0.25s, background 0.25s;
}

.lang-btn:hover  { color: var(--text); }
.lang-btn.active { background: var(--gold); color: var(--black); }

.lang-switcher-mobile {
  display:         flex;
  justify-content: center;
  gap:             10px;
  padding:         1.5rem 0 0.5rem;
  margin-top:      0.5rem;
  border-top:      1px solid var(--border);
}
.lang-switcher-mobile .lang-btn { font-size: 13px; padding: 8px 18px; }

@media (max-width: 768px) {
  #langSwitcher { display: none; }
}

/* ============================================
   RTL-STÖD (ARABISKA)
   ============================================ */
[dir="rtl"] body,
[dir="rtl"] .hero-title,
[dir="rtl"] .hero-tagline,
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .section-title,
[dir="rtl"] .lunch-title,
[dir="rtl"] .tradition-title,
[dir="rtl"] .awards-title,
[dir="rtl"] .about-feature-title,
[dir="rtl"] .stat-num,
[dir="rtl"] .why-stat-num,
[dir="rtl"] .mc-name,
[dir="rtl"] .mc-name-ar,
[dir="rtl"] .sig-name,
[dir="rtl"] .sig-name-ar,
[dir="rtl"] .footer-slogan,
[dir="rtl"] .nav-logo,
[dir="rtl"] .lunch-price,
[dir="rtl"] .trad-item-name {
  font-family: 'Cairo', sans-serif;
}

/* Menykort – guldkant ska sitta på höger sida i RTL istället för vänster */
[dir="rtl"] .menu-card {
  border-left:  2px solid transparent;
  border-right: 2px solid transparent;
}
[dir="rtl"] .menu-card:hover {
  border-left-color:  transparent;
  border-right-color: var(--gold-dim);
}

/* Centrerad nav-meny ska fortsätta vara centrerad oavsett riktning */
[dir="rtl"] .nav-links {
  left:      50%;
  transform: translateX(-50%);
}

/* Siffror (priser, telefonnummer, procent) ska alltid läsas i normal riktning
   även när de sitter i en arabisk RTL-kontext */
[dir="rtl"] .mc-price,
[dir="rtl"] .mc-price-strike,
[dir="rtl"] .lunch-price,
[dir="rtl"] .trad-item-price,
[dir="rtl"] .stat-num,
[dir="rtl"] .why-stat-num {
  direction: ltr;
  unicode-bidi: isolate;
}
