@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&family=Crimson+Text:ital,wght@0,400;1,600&display=swap');

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

body {
  font-family: var(--font-text);
  font-variant-numeric: var(--numeric);
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}

body > .asian-card {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body > .asian-card.map-card {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.section > .asian-card {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #1a0e0a 0%, #2d1810 50%, #0a0a0a 100%);
}

.cherry-blossom {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffb3ba, #ff6b7a);
    border-radius: 50% 10% 50% 10%;
    animation: float-cherry 15s infinite linear;
    opacity: 0.7;
}

.cherry-layer {
    position: fixed;
    inset: 0;            
    overflow: hidden;    
    pointer-events: none;
    z-index: -1;         
}

@keyframes float-cherry {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-20px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.bamboo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='80' viewBox='0 0 40 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v80H0V0zm20 10c0-5.5-4.5-10-10-10s-10 4.5-10 10v60c0 5.5 4.5 10 10 10s10-4.5 10-10V10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: -1;
    animation: bamboo-sway 20s ease-in-out infinite;
}

@keyframes bamboo-sway {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

/* ===== NAVIGATION KOMPLETT ===== */

/* Navbar Basis */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Nav Container */
.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-self: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 12px 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.8), transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

/* Call Button */
.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 2px solid #d4af37;
    border-radius: 9999px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.95rem;
    background: rgba(212, 175, 55, 0.06);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    justify-self: end;
}

.nav-call .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-call:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 71, 87, 0.12));
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.28);
}

/* Hamburger Button - versteckt auf Desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 2px solid #d4af37;
    cursor: pointer;
    padding: 10px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
    /* Hamburger zeigen */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }
    
    /* Nav Container Anpassung */
    .nav-container {
        grid-template-columns: auto 1fr auto;
    }
    
    /* Call Button kompakter */
    .nav-call {
        padding: 10px !important;
        order: 1;
    }
    
    .nav-call .label {
        display: none;
    }
    
    /* Navigation Links - Mobile Menu */
    .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(13, 13, 13, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 40px 20px !important;
        gap: 0 !important;
        margin: 0 !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        order: 3;
    }
    
    /* Aktives Menu */
    .nav-links.active {
        left: 0 !important;
    }
    
    /* Menu Items */
    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 20px !important;
        font-size: 1.2rem !important;
        color: #f5f5f5 !important;
        border: none !important;
    }
    
    .nav-links a::before {
        display: none !important;
    }
    
    .nav-links a:hover {
        transform: none !important;
        background: rgba(212, 175, 55, 0.1);
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo { position: relative; }     
.logo::after { pointer-events: none; }  

.logo-img {
    height: 60px;          
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}

.logo-text {
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    font-size: 1.6rem;     
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
}

.logo::after {
    content: '';
    position: absolute;
    inset: -6px 0;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff4757; }
    to { text-shadow: 0 0 20px #ff4757, 0 0 30px #ff4757; }
}



.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90C27.9 90 10 72.1 10 50S27.9 10 50 10s40 17.9 40 40-17.9 40-40 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,50 Q30,30 40,50 Q50,70 60,50 Q70,30 80,50' stroke='%23d4af37' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3C/svg%3E") repeat;
    animation: wave-pattern 10s ease-in-out infinite;
}

@keyframes wave-pattern {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-5px); }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 2s ease;
}

.hero h1 {
    font-size: 5rem;
    padding-top: 30px;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.6), #d4af37, rgba(139, 105, 20, 0.6), transparent);
    animation: line-glow 3s ease-in-out infinite;
}

h1, h2, h3, .heading, .logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}

@keyframes line-glow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

.japanese-subtitle {
    font-size: 1.8rem;
    color: #ff4757;
    margin-bottom: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    opacity: 0;
    animation: slideIn 2.5s ease 0.5s forwards;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cccccc;
    opacity: 0;
    animation: slideIn 3s ease 1s forwards;
    font-style: italic;
}

.hero { position: relative; overflow: hidden; }
.hero-inner{
  max-width: 1400px; margin: 0 auto; padding: 0 5%;
  display: grid; align-items: center; gap: 28px;
  grid-template-columns: 1fr; min-height: 100vh;
}
@media (min-width: 980px){
  .hero-inner{ grid-template-columns: 1.05fr .95fr; }
}

.hero-video{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.6);
  z-index: 0; pointer-events: none;
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:10px 12px; margin: 10px 0 22px; justify-content: center; }
.hero-badges .pill{
    display:inline-flex; align-items:center; gap:8px;
    padding:6px 12px;
    width:auto; height:auto; border-radius:9999px;
    border:1px solid rgba(212,175,55,.45);
    background:rgba(212,175,55,.08);
    color:#d4af37; font-weight:700; font-size:.95rem; line-height:1.2;
    white-space:nowrap;    
}
.pill-soft{ background: rgba(130,202,134,.12); border-color: rgba(130,202,134,.35); color:#9ad39f; }
.pill-link{ text-decoration:none; transition:transform .2s ease, box-shadow .2s ease; }
.pill-link:hover{ transform: translateY(-1px); box-shadow:0 6px 18px rgba(212,175,55,.18); }

.hero-aside{ position: relative; min-height: 480px; z-index: 1; }
@media (max-width: 979px){ .hero-aside{ display:none; } }

.dish-card{
  position: absolute; width: 46%; aspect-ratio: 4/3; border:3px solid #d4af37;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  overflow:hidden; transform: translateZ(0); border-radius: 0;
  animation: floaty 7s ease-in-out infinite;
}
.dish-card img{ width:100%; height:100%; object-fit: cover; }

.card-1{ left: 6%; top: 6%; rotate: -4deg; animation-delay: .1s; }
.card-2{ right: 0; top: 26%; rotate: 3deg; animation-delay: .4s; }
.card-3{ left: 18%; bottom: 2%; rotate: 1deg; animation-delay: .7s; }

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

.kanji-stamp{
  position: absolute; right: -8px; bottom: -8px; width: 120px; height: 120px;
  color: rgba(255, 71, 87, .85); filter: drop-shadow(0 3px 8px rgba(0,0,0,.5));
}

.scroll-indicator{
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 9999px;
  border:1px solid rgba(212,175,55,.45); background: rgba(212,175,55,.06);
  color:#d4af37; font-size: 20px; line-height: 42px; text-align:center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(212,175,55,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  z-index: 2;
}
.scroll-indicator:hover{ transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 26px rgba(212,175,55,.26); }

.bg-container{ will-change: transform; }
.cherry-layer{ will-change: transform; }

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, #d4af37, #ff4757);
    color: #000;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d4af37;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(50, 40, 30, 0.4);
    background: linear-gradient(135deg, rgba(100, 80, 60, 0.8), rgba(120, 100, 70, 0.8));
}

.cta-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cta-secondary:hover {
    background: #d4af37;
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section {
    padding: 60px 5% 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-50%);
}

.asian-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 71, 87, 0.03));
    border: 1px solid #d4af37;
    border-radius: 0;
    padding: 40px;
    margin: 25px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sub-accent-gradient{
    background: linear-gradient(90deg, #d4af37 0%, #ffb86b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}  

.asian-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 71, 87, 0.05));
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.asian-card::before {
    display: none;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    font-size: 1.2rem;
    color: #ff4757;
    margin-top: 10px;
    font-family: 'Noto Sans JP', sans-serif;
}

.menu-full h3 {
    margin-bottom: 10px;
}

/* ===== SPEISEKARTE SPALTEN-LAYOUT (ausbalanciert) ===== */
.menu-columns.masonry {
    display: block;
    column-count: 3;
    column-gap: 24px;
    column-fill: balance;  /* Sorgt für gleich hohe Spalten */
}

.menu-columns.masonry .menu-col {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin: 0 0 24px 0;
    width: 100%;
    display: inline-block;  /* Wichtig für column-break */
}

.menu-col h4 {
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    margin: 18px 0 8px;
    font-size: 1.25rem;
    letter-spacing: .3px;
    break-after: avoid;
    page-break-after: avoid;
}

.menu-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.menu-lines li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
    break-inside: avoid;
    page-break-inside: avoid;
}

.menu-lines li:hover {
    background: rgba(212, 175, 55, 0.06);
}

.menu-lines li > span:first-child {
    position: relative;
    font-weight: 600;
    line-height: 1.45;
    padding-left: 2ch;
}

.menu-lines li > span:first-child::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--accent, #d4af37);
    box-shadow: 0 0 0 1px rgba(212,175,55,.25);
}

.menu-lines li > span:first-child::after {
    content: none;
}

.menu-lines .price {
    color: #d4af37;
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums; 
    padding-left: 8px;
}

.menu-lines li .desc {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cfcfcf;
    font-weight: 300;
    opacity: 0.9;
    margin-top: -2px;
}

.menu-lines li.variant {
    counter-increment: none;        
    border-bottom: 0;                
    padding-top: 4px;
    padding-bottom: 8px;
}

.menu-lines li.variant > span:first-child {
    padding-left: 3.2ch;      
    font-weight: 500;
    opacity: .95;
}

.menu-lines li.variant > span:first-child::before {
    content: "";
}

/* ===== ALLERGENE EINHEITLICH HOCHGESTELLT ===== */
.menu-lines sup.allergen {
    font-size: 0.7em;
    font-weight: 700;
    color: #d4af37;
    margin-left: 0.2em;
    line-height: 0;
    vertical-align: super;
    position: relative;
    top: -0.4em;
    padding: 0;                 
    border: none;            
    border-radius: 0;               
    background: transparent;
    display: inline-block;
    white-space: nowrap;
}

.menu-lines .badges {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    margin-left: 2px;
}

/* Einzelne Badges */
.menu-lines .badge {
    padding: 0px 0px;  /* statt 2px 6px */
}

.menu-col h4 + .menu-lines { margin-top: 6px; }
.menu-hint {
    margin-top: 14px;
    text-align: center;
    color: #aaa;
    font-size: 0.9em;
}  

.menu-columns { gap: 18px; }                 
.menu-col h4 { margin: 12px 0 6px; }         

.menu-lines { margin: 0 0 10px 0; }          
.menu-lines li {
  padding: 6px 0;                           
  gap: 6px 12px;                             
}
.menu-lines li .desc {
  font-size: 0.9rem;                        
  margin-top: -4px;
}
.menu-lines li:last-child { border-bottom: 0; } 
.menu-lines li.variant { padding-top: 2px; padding-bottom: 4px; } 

.menu-legend.fancy {
    border: 1px dashed rgba(212,175,55,.35);
    background: rgba(212,175,55,.06);
    border-radius: 10px;
    padding: 12px 14px;
}

.menu, .menu-lines, .paragraph {
    font-family: var(--font-text);
}

.legend-list {
    list-style: none;
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 10px 0; margin: 0; padding: 0;
}
.legend-list li {
    display: inline-flex; align-items: center; gap: 8px;
    position: relative; padding: 2px 0;
}
.legend-list li + li::before {          
    content: "•";
    margin: 0 14px;
    color: #d4af37; opacity: .65;
}

.legend-line {
    height: 1px; margin: 8px 0 10px;
    background: linear-gradient(
      to right,
      rgba(212,175,55,.0),
      rgba(212,175,55,.35) 20%,
      rgba(212,175,55,.35) 80%,
      rgba(212,175,55,.0)
    );
}

.impressions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.impressions-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.impressions-photos .gallery-item {
    aspect-ratio: 4 / 3;
    background: rgba(0,0,0,0.3);
    border: 1px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: bold;
    font-family: 'Crimson Text', serif;
}

.impressions-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impressions-text .eyebrow{
  display:inline-block;
  font-size:.85rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#d4af37;
  opacity:.9;
  margin-bottom:6px;
}

.impressions-text .impressions-title{
  font-family: var(--font-display);
  font-weight:700;
  font-size:2.2rem;
  line-height:1.2;
  margin: 0 0 10px;
  color:#f0f0f0;
}

.impressions-text .lead{
  font-size:1.1rem;
  line-height:1.7;
  color:#ddd;
  opacity:.95;
  margin: 6px 0 16px;
}

.impressions-text .impressions-list{
  list-style:none;
  margin: 0 0 18px 0;
  padding: 0;
}
.impressions-text .impressions-list li{
  position: relative;
  padding-left: 1.4rem;
  margin: 6px 0;
  line-height: 1.5;
}
.impressions-text .impressions-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--accent, #d4af37);
  box-shadow: 0 0 0 1px rgba(212,175,55,.25);
}

.impressions-text .hours-card{
  border:1px dashed rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
  border-radius:10px;
  padding:14px 16px;
  margin: 14px 0 18px;
}
.impressions-text .hours-card h3{
  margin:0 0 8px;
  font-size:1.05rem;
  color:#d4af37;
  font-family: var(--font-display);
  font-weight:700;
}
.impressions-text .hours{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:6px 14px;
  align-items:baseline;
  font-variant-numeric: tabular-nums;
}

.impressions-text .aside-note{
  font-size:.9rem;
  color:#cfcfcf;
  margin-top:10px;
  opacity:.9;
}

.impressions-text .cta-button{ margin-top: 4px; }

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

.legend-aux {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px 20px;
}
.legend-note {
    margin: 0; font-style: italic; color: #cfcfcf; opacity: .95;
}

.legend-allergens {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
}
.legend-allergens li {
    display: inline-flex; align-items: center; gap: 6px;
    position: relative;
}
.legend-allergens li + li::before {   
    content: "•";
    color: rgba(212,175,55,.55);
    margin-right: 10px;
}


.pill {
    display:inline-flex; align-items:center; justify-content:center;
    width:1.4em; height:1.4em; border-radius:9999px;
    border:1px solid rgba(212,175,55,.45);
    background:rgba(212,175,55,.08);
    color:#d4af37; font-weight:700; font-size:.78rem; line-height:1;
    padding:0;
}

.badge { border-radius: 9999px; padding: 2px 6px; }
.badge-vegan { color: #82ca86; border-color: rgba(130,202,134,.35); }
.badge-spicy { color: #ff6b6b; border-color: rgba(255,107,107,.35); }

@media (max-width: 640px) {
    .legend-list li + li::before,
    .legend-allergens li + li::before { display: none;}
}

@media (max-width: 1200px) { 
    .menu-columns.masonry { 
        column-count: 2; 
    } 
}

@media (max-width: 720px) { 
    .menu-columns.masonry { 
        column-count: 1; 
    } 
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.menu-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #d4af37;
    border-radius: 0;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.menu-item::after {
    display: none;
}

.menu-item h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Crimson Text', serif;
}

.menu-item p {
    color: #f5f5f5;
    line-height: 1.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border: 3px solid #d4af37;
    overflow: hidden;
    aspect-ratio: 4 / 3;      
    background: rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        
    object-position: center;  
    display: block;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(212, 175, 55, 0.1));
}

.photo-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: grayscale(1) opacity(0.7);
}

.photo-text {
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.photo-placeholder:hover .photo-icon {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.photo-placeholder:hover .photo-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.3));
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L60 40 L90 40 L70 60 L80 90 L50 75 L20 90 L30 60 L10 40 L40 40 Z' fill='%23d4af37'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.4));
}

.contact-card h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

.contact-card p {
    color: #f5f5f5;
    line-height: 1.6;
}

/* Telefonnummern weiß statt blau */
a[href^="tel:"] {
    color: #f5f5f5 !important;
    text-decoration: none !important;
}

a[href^="tel:"]:hover {
    color: #d4af37 !important;
}

/* Speziell für den Footer */
.footer-phone {
    color: #d4af37 !important;
}

.footer-phone:hover {
    color: #fff !important;
}

footer {
    background: linear-gradient(135deg, #000 0%, #1a0e0a 50%, #2d1810 100%);
    padding: 25px 5% 10px 5%;
    border-top: 3px solid #d4af37;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90C27.9 90 10 72.1 10 50S27.9 10 50 10s40 17.9 40 40-17.9 40-40 40z'/%3E%3Cpath d='M50 20c16.6 0 30 13.4 30 30s-13.4 30-30 30-30-13.4-30-30 13.4-30 30-30zm0 10c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Crimson Text', serif;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.footer-section p, .footer-section li {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li::before {
    content: '▸ ';
    color: #d4af37;
    font-weight: bold;
}

.footer-address {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.footer-address:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: rgba(212, 175, 55, 0.5);
}
.footer-address:active {
  transform: translateY(0);
}

.footer-phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 25px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom p {
    color: #999;
    margin-bottom: 10px;
}

.footer-tagline {
    font-style: italic;
    color: #d4af37;
    font-size: 1rem;
}

.footer-logo {
    font-size: 3rem;
    color: #d4af37;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.footer-logo::after {
    display: none;
}

.legal-links {
  margin-top: 10px;
}
.legal-links a {
  display: inline-block;
  padding: 9px 16px;
  margin: 6px 6px 2px;
  border: 1px solid var(--accent, #d4af37);
  border-radius: 999px;
  text-decoration: none;
  color: var(--accent, #d4af37);
  font-weight: 600;
  letter-spacing: .2px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.legal-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(212,175,55,.20), inset 0 0 0 999px rgba(212,175,55,.08);
}
.legal-links a:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(212,175,55,.18);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 40px 5% 30px 5%;
    }
    
    .asian-card {
        padding: 25px;
        margin: 20px 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.res-form .res-row{ display:flex; flex-wrap:wrap; gap:12px; margin:8px 0 14px; }
.res-form label{ display:flex; flex-direction:column; gap:6px; color:#cfcfcf; min-width:180px; }
.res-form input, .res-form select{
  background: rgba(212,175,55,.06); border:1px solid rgba(212,175,55,.35);
  color:#fff; padding:10px 12px; border-radius:10px; outline:none;
}
.res-form input::placeholder{ color:#aaa; }
.res-legend{ display:flex; align-items:center; gap:18px; margin:6px 0 10px; color:#cfcfcf; }
.dot{ width:10px; height:10px; border-radius:9999px; display:inline-block; }
.dot-free{ background:#29c46a; box-shadow:0 0 12px rgba(41,196,106,.45); }
.dot-booked{ background:#ff5a5a; box-shadow:0 0 12px rgba(255,90,90,.45); }

.table-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap:14px; margin-top:10px;
}
.table-card{
    display: grid;
    grid-template-columns: 1fr auto;   
    grid-auto-rows: auto;
    align-items: start;
    min-height: 90px;                  
    padding: 12px 14px;               
}
.table-card:hover{ transform: translateY(-2px); box-shadow:0 10px 24px rgba(212,175,55,.22); }
.table-name{
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 4px 0;
}
.table-meta{
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
}

.table-card.free{ outline:2px solid rgba(41,196,106,.7); }
.table-card.booked{ outline:2px solid rgba(255,90,90,.8); filter:saturate(0.8); }
.table-status{
    grid-column: 2;
    grid-row: 1;
    position: static;                  
    margin-left: 10px;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: .8rem;
    color: #111;
}
.table-card.free .table-status{ background:#29c46a; }
.table-card.booked .table-status{ background:#ff5a5a; }

.table-card:focus-visible{ outline:3px solid #f3dc8a; }

:root{
  --font-display: "Playfair Display", Georgia, serif;
  --font-text: "Inter", system-ui, sans-serif;
  --numeric: tabular-nums lining-nums;
  --text: #e9e9e9;
  --text-muted: #cfcfcf;
  --accent: #d4af37;  
  --koya-num-col: 3.2ch;
  --koya-num-gap: 10px; 
}

:root { --container-max: 1400px; }

.section,
.hero-inner,
.nav-container,
.asian-card,
.footer-container,
.map-card {
  width: min(100%, var(--container-max)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#gallery .asian-card,
#gallery .gallery {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#contact .asian-card,
#contact .contact-grid,
#contact .map-card {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#menu > .asian-card {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
}

#menu > .asian-card.map-card,
#menu > #anfahrt {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin-inline: auto;
}

#menu ~ .asian-card {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin-inline: auto;
  width: calc(min(100vw, 1400px) - 10vw);
}

body > .asian-card,
body > .asian-card.map-card,
#menu + .asian-card,
#menu ~ .asian-card {
  width: min(90vw, 1230px) !important;
  max-width: none !important;       
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;       
}

body > .asian-card img,
body > .asian-card iframe,
body > .asian-card .map-frame,
#menu ~ .asian-card img,
#menu ~ .asian-card iframe {
  max-width: 100%;
  width: 100%;
}

.section { box-sizing: border-box; }

html, body { overflow-x: hidden; }

p, li, small {
    color: var(--text);
}

.desc, .subtitle, .legend-note {
    color: var(--text-muted);
}

.reservation-card{
    max-width: var(--content-max);
    margin: 36px auto;                      
    padding: clamp(16px, 2.5vw, 28px) var(--content-gutter);
    box-sizing: border-box;
}

.reservation-card .table-grid{
    overflow-x: auto;
    padding-bottom: 6px; 
}

.reservation-card .res-form .res-row{ gap: clamp(10px, 2vw, 16px); }

.table-card{
    display: grid;
    grid-template-columns: 1fr auto;   
    gap: 6px 12px;
    min-height: 96px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,.28);
    background:
      linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.12)),
      rgba(212,175,55,.06);
    box-shadow:
      0 14px 28px rgba(0,0,0,.36),
      inset 0 0 0 1px rgba(212,175,55,.10);
    backdrop-filter: saturate(110%) blur(3px);
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    position: relative;
}

.table-card::before{
    content:"";
    position:absolute; inset:-1px; border-radius:16px;
    background: linear-gradient(140deg, rgba(212,175,55,.45), rgba(212,175,55,0) 35%);
    pointer-events:none;
}

.table-card:hover{
    transform: translateY(-3px);
    box-shadow:
      0 18px 36px rgba(0,0,0,.44),
      0 0 0 3px rgba(212,175,55,.12) inset;
}
.table-card.selected{
    box-shadow:
      0 20px 42px rgba(212,175,55,.22),
      0 0 0 2px rgba(212,175,55,.60) inset;
}

.table-card.free   { border-color: rgba(41,196,106,.55); }
.table-card.booked { border-color: rgba(255,90,90,.65); filter: saturate(.9); }

.table-name{
    grid-column: 1; grid-row: 1;
    margin: 0 0 2px 0;
    font-weight: 800; letter-spacing:.3px;
    color:#d4af37;
}
.table-name::before{
    content:"";
    display:inline-block; margin-right:8px;
    width:10px; height:10px; border-radius:50%;
    background: currentColor; opacity:.8;
    box-shadow: 0 0 14px currentColor;
}

.table-status{
    grid-column: 2; grid-row: 1;
    position: static;                    
    padding: 3px 10px; margin-left: 10px;
    border-radius: 9999px;
    font-size:.8rem; font-weight:700; letter-spacing:.2px;
    color:#0e0e0e;
    border:1px solid transparent;
    box-shadow: 0 6px 16px rgba(0,0,0,.22);
}
.table-card.free   .table-status{
    background: linear-gradient(180deg,#31e283,#22b463);
    border-color: rgba(41,196,106,.75);
}
.table-card.booked .table-status{
    background: linear-gradient(180deg,#ff7676,#ff4d4d);
    border-color: rgba(255,90,90,.85);
    color:#250b0b;
}

.table-meta{
    grid-column: 1 / -1; grid-row: 2;
    margin-top: 2px;
    color:#e6e6e6; opacity:.95;
    font-size: 1rem;
}

.table-card:focus-visible{
    outline: 3px solid #f3dc8a;
    outline-offset: 2px;
}

.table-card::after{
    content:""; pointer-events:none; position:absolute;
    inset: 0; border-radius: 16px;
    background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 30% 70%, rgba(255,255,255,.06));
    mix-blend-mode: overlay; opacity:.25;
}

.table-card{
    grid-template-columns: minmax(0,1fr) auto; 
}

.table-name{
    white-space: nowrap;     
    overflow: hidden;            
    text-overflow: ellipsis;     
    line-height: 1.1;
}

.table-status{
    justify-self: end;
    align-self: start;
}

.map-card{ max-width: 1400px; margin: 28px auto; }
.map-wrap{
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.28), inset 0 0 0 1px rgba(212,175,55,.10);
}
.map-embed{
  display:block; width:100%; aspect-ratio: 16/9; border:0;
  filter: saturate(.9) contrast(1.05) brightness(.95);
}
.map-actions{
  display:flex; flex-wrap:wrap; gap:12px; margin-top:14px;
}

.btn-sm{ padding: 10px 16px; font-size: .95rem; }

.asian-card.menu-full .menu-lines {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.asian-card.menu-full .menu-lines li {
  display: grid;
  grid-template-columns: var(--koya-num-col) 1fr auto !important;
  align-items: baseline;
  gap: 4px var(--koya-num-gap);
  counter-increment: dish;
}

.asian-card.menu-full .menu-lines li > span:first-child::before {
  content: none !important;
}

.asian-card.menu-full .menu-lines li > span:first-child {
  padding-left: 0 !important;
  position: relative;
}

.asian-card.menu-full .menu-lines li::before {
  grid-column: 1;
  content: attr(data-number) ".";
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent, #d4af37);
  align-self: start;
}

.asian-card.menu-full .menu-lines li.no-number::before {
    content: "";  /* Leer = keine Nummer */
}

.asian-card.menu-full .menu-lines .price {
  white-space: nowrap;
}

.asian-card.menu-full .menu-lines li.variant { counter-increment: none; }
.asian-card.menu-full .menu-lines li.variant > span:first-child { padding-left: 0 !important; }
.asian-card.menu-full .menu-lines li.variant::before {
  content: "";
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--accent, #d4af37);
  box-shadow: 0 0 0 1px rgba(212,175,55,.25);
  justify-self: end;
  align-self: center;
}

.asian-card.menu-full .menu-lines li .desc { grid-column: 1 / -1; }

footer .footer-bottom .legal-links {
  margin-top: 10px;
}
footer .footer-bottom .legal-links a {
  display: inline-block;
  padding: 9px 16px;
  margin: 6px 6px 2px;
  border: 1px solid var(--accent, #d4af37);
  border-radius: 999px;
  text-decoration: none;
  color: var(--accent, #d4af37);
  font-weight: 600;
  letter-spacing: .2px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
footer .footer-bottom .legal-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(212,175,55,.20), inset 0 0 0 999px rgba(212,175,55,.08);
}
footer .footer-bottom .legal-links a:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(212,175,55,.18);
}

/* SVG-Icons in Badges */
.badge-icon {
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Badge als Flexbox für Icons */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Farben für SVG-Icons */
.badge-vegan .badge-icon {
  filter: brightness(0) saturate(100%) invert(69%) sepia(17%) saturate(833%) hue-rotate(82deg) brightness(94%) contrast(87%);
}

.badge-spicy .badge-icon {
  filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(2727%) hue-rotate(333deg) brightness(101%) contrast(101%);
}
