/* Fresh – 2 renk: #0e1326 (ana koyu), #b03049 (vurgu) – tüm site */

body.template-fresh,
body.template-fresh main { width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
body.template-fresh {
    background: #0e1326;
    color: #fff;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #b03049 #141b2d;
}
body.template-fresh ::-webkit-scrollbar { width: 12px; height: 12px; }
body.template-fresh ::-webkit-scrollbar-track { background: #141b2d; border-radius: 6px; }
body.template-fresh ::-webkit-scrollbar-thumb { background: #b03049; border-radius: 6px; border: 3px solid #141b2d; }
body.template-fresh ::-webkit-scrollbar-thumb:hover { background: #c93d5c; }
body.template-fresh ::-webkit-scrollbar-corner { background: #141b2d; }

/* Scroll Reveal – sayfa aşağı inerken öğeler animasyonla açılsın (Resta tarzı) */
body.template-fresh .scroll-reveal,
body.template-fresh .blog-anim-item {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
body.template-fresh .scroll-reveal.is-visible,
body.template-fresh .blog-anim-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
body.template-fresh .scroll-reveal--delay-1 { transition-delay: 0.1s; }
body.template-fresh .scroll-reveal--delay-2 { transition-delay: 0.2s; }
body.template-fresh .scroll-reveal--delay-3 { transition-delay: 0.3s; }
body.template-fresh .scroll-reveal--delay-4 { transition-delay: 0.4s; }
body.template-fresh .scroll-reveal-left { transform: translateX(-42px); }
body.template-fresh .scroll-reveal-right { transform: translateX(42px); }
body.template-fresh .scroll-reveal-left.is-visible,
body.template-fresh .scroll-reveal-right.is-visible { transform: translateX(0); }

body.template-fresh .site-header { background: rgba(14, 19, 38, 0.98); border-bottom-color: rgba(255,255,255,0.08); }
body.template-fresh .logo { color: #b03049; }
body.template-fresh .logo:hover { color: #c93d5c; }
body.template-fresh .nav-item > a { color: rgba(255,255,255,0.95); }
body.template-fresh .nav-item > a:hover { color: #b03049; }
body.template-fresh .nav-item > a.nav-active-pill {
    color: #b03049;
    background: #ffffff;
}
body.template-fresh .nav-item > a.nav-active-pill:hover {
    color: #c93d5c;
    background: #fff5f7;
}
body.template-fresh .btn-book { background: #b03049; border-color: #b03049; color: #fff; }
body.template-fresh .btn-book:hover { background: #c93d5c; border-color: #c93d5c; color: #fff; }

.t-cold-drinks {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(176, 48, 73, 0.16), transparent 30%),
        radial-gradient(circle at 90% 30%, rgba(125, 211, 252, 0.14), transparent 34%),
        #0f162e;
}
.t-cold-drinks::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.06) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: cold-drinks-shine 7s linear infinite;
    pointer-events: none;
}
@keyframes cold-drinks-shine {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}
.t-cold-drinks .t-container { position: relative; z-index: 1; }
.t-cold-drinks-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-cold-drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.t-cold-drink-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(20, 27, 45, 0.95), rgba(14, 19, 38, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-cold-drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(176, 48, 73, 0.45);
}
.t-cold-drink-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-cold-drink-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-cold-drink-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-cold-drink-body {
    padding: 14px;
}
.t-cold-drink-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-order-no {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    padding: 2px 8px;
}
.t-cold-drink-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-cold-drink-price {
    color: #7dd3fc;
    font-size: 1.02rem;
}
.t-cold-drinks-more {
    margin-top: 34px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-cold-drinks-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-vorspeisen {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(176, 48, 73, 0.18), transparent 34%),
        radial-gradient(circle at 88% 22%, rgba(250, 204, 21, 0.14), transparent 34%),
        linear-gradient(160deg, #111933 0%, #151e36 55%, #0f162e 100%);
}
.t-vorspeisen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, transparent 20%, rgba(255,255,255,0.05) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: vorspeisen-shine 8s linear infinite;
    pointer-events: none;
}
@keyframes vorspeisen-shine {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}
.t-vorspeisen .t-container { position: relative; z-index: 1; }
.t-vorspeisen-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-vorspeisen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-vorspeisen-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(20, 27, 45, 0.95), rgba(14, 19, 38, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-vorspeisen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(176, 48, 73, 0.45);
}
.t-vorspeisen-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-vorspeisen-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-vorspeisen-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-vorspeisen-body {
    padding: 14px;
}
.t-vorspeisen-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-vorspeisen-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-vorspeisen-price {
    color: #facc15;
    font-size: 1.02rem;
}
.t-vorspeisen-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-vorspeisen-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-suppe {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(125, 211, 252, 0.16), transparent 33%),
        radial-gradient(circle at 86% 26%, rgba(176, 48, 73, 0.13), transparent 35%),
        linear-gradient(160deg, #121a30 0%, #0e1326 52%, #121b32 100%);
}
.t-suppe::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        -25deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 8px,
        transparent 8px,
        transparent 18px
    );
    opacity: 0.7;
}
.t-suppe .t-container { position: relative; z-index: 1; }
.t-suppe-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-suppe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-suppe-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(20, 27, 45, 0.95), rgba(15, 22, 40, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-suppe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(125, 211, 252, 0.45);
}
.t-suppe-image-btn {
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
    width: 100%;
    height: 100%;
}
.t-suppe-image {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}
.t-suppe-zoom {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.76rem;
    padding: 5px 9px;
}
.t-suppe-body {
    padding: 12px 12px 12px 0;
}
.t-suppe-body h3 {
    margin: 0 0 6px;
    font-size: 1.04rem;
    color: #fff;
}
.t-suppe-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.91rem;
}
.t-suppe-price {
    color: #7dd3fc;
    font-size: 1.01rem;
}
.t-suppe-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-suppe-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-salate {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(74, 222, 128, 0.16), transparent 33%),
        radial-gradient(circle at 90% 22%, rgba(176, 48, 73, 0.16), transparent 36%),
        linear-gradient(150deg, #0f1a30 0%, #121d35 52%, #0e162b 100%);
}
.t-salate::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,0.04), transparent 45%, rgba(255,255,255,0.04));
}
.t-salate .t-container { position: relative; z-index: 1; }
.t-salate-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-salate-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-salate-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(19, 30, 50, 0.95), rgba(12, 20, 36, 0.96));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-salate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(74, 222, 128, 0.45);
}
.t-salate-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-salate-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-salate-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-salate-body {
    padding: 14px;
}
.t-salate-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-salate-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-salate-price {
    color: #4ade80;
    font-size: 1.02rem;
}
.t-salate-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-salate-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-kids {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(56, 189, 248, 0.16), transparent 33%),
        radial-gradient(circle at 86% 18%, rgba(244, 114, 182, 0.15), transparent 34%),
        linear-gradient(145deg, #13203a 0%, #182847 50%, #12203a 100%);
}
.t-kids::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.45;
}
.t-kids .t-container { position: relative; z-index: 1; }
.t-kids-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-kids-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-kids-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(24, 38, 63, 0.95), rgba(15, 25, 44, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-kids-card:hover {
    transform: translateY(-4px) rotate(-0.35deg);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(56, 189, 248, 0.45);
}
.t-kids-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-kids-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-kids-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-kids-body {
    padding: 14px;
}
.t-kids-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-kids-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-kids-price {
    color: #38bdf8;
    font-size: 1.02rem;
}
.t-kids-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-kids-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-cheese {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(250, 204, 21, 0.16), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(251, 146, 60, 0.14), transparent 34%),
        linear-gradient(150deg, #1d1a14 0%, #272014 50%, #17130d 100%);
}
.t-cheese .t-container { position: relative; z-index: 1; }
.t-cheese-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-cheese-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-cheese-card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(32, 25, 16, 0.95), rgba(22, 18, 12, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-cheese-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(250, 204, 21, 0.45);
}
.t-cheese-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-cheese-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-cheese-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-cheese-body {
    padding: 14px;
}
.t-cheese-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-cheese-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-cheese-price {
    color: #facc15;
    font-size: 1.02rem;
}
.t-cheese-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-cheese-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-nudelgerichte {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(244, 114, 182, 0.14), transparent 33%),
        radial-gradient(circle at 88% 18%, rgba(125, 211, 252, 0.15), transparent 35%),
        linear-gradient(150deg, #121831 0%, #171f3a 50%, #111730 100%);
}
.t-nudelgerichte .t-container { position: relative; z-index: 1; }
.t-nudelgerichte-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-nudelgerichte-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.t-nudelgerichte-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(31, 24, 50, 0.96), rgba(17, 24, 46, 0.96));
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.t-nudelgerichte-featured .t-nudelgerichte-image {
    height: 100%;
    min-height: 220px;
}
.t-nudelgerichte-featured .t-nudelgerichte-body {
    padding: 18px;
}
.t-nudelgerichte-featured .t-nudelgerichte-body h3 {
    font-size: 1.18rem;
}
.t-cold-drink-card.is-featured,
.t-vorspeisen-card.is-featured,
.t-suppe-card.is-featured,
.t-salate-card.is-featured,
.t-kids-card.is-featured,
.t-cheese-card.is-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}
.t-cold-drink-card.is-featured .t-cold-drink-image,
.t-vorspeisen-card.is-featured .t-vorspeisen-image,
.t-suppe-card.is-featured .t-suppe-image,
.t-salate-card.is-featured .t-salate-image,
.t-kids-card.is-featured .t-kids-image,
.t-cheese-card.is-featured .t-cheese-image {
    min-height: 220px;
}
.t-nonalc-item.is-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 14px;
    margin-bottom: 18px;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}
.t-nonalc-item.is-featured .t-nonalc-image {
    height: 120px;
}

/* If the last listed card is alone in row, stretch full width */
.t-vorspeisen-grid > :last-child:nth-child(odd),
.t-suppe-grid > :last-child:nth-child(odd),
.t-salate-grid > :last-child:nth-child(odd),
.t-kids-grid > :last-child:nth-child(odd),
.t-nudelgerichte-grid > :last-child:nth-child(odd),
.t-cheese-grid > :last-child:nth-child(3n + 1),
.t-pizza-grid > :last-child:nth-child(3n + 1),
.t-pizza-extras-grid > :last-child:nth-child(3n + 1),
.t-grill-zone-grid > :last-child:nth-child(3n + 1),
.t-dessert-zone-grid > :last-child:nth-child(3n + 1),
.t-drink-zone-grid > :last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
}

/* Aperitifs uses a 3-column flow on desktop */
.t-cold-drinks-grid > :last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
}

/* In 3-col layout, when last row has 2 cards, stretch the last one */
.t-cold-drinks-grid > :last-child:nth-child(3n + 2),
.t-cheese-grid > :last-child:nth-child(3n + 2),
.t-pizza-grid > :last-child:nth-child(3n + 2),
.t-pizza-extras-grid > :last-child:nth-child(3n + 2),
.t-grill-zone-grid > :last-child:nth-child(3n + 2),
.t-dessert-zone-grid > :last-child:nth-child(3n + 2),
.t-drink-zone-grid > :last-child:nth-child(3n + 2) {
    grid-column: span 2;
}

.t-nudelgerichte-card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(22, 30, 56, 0.95), rgba(16, 22, 42, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-nudelgerichte-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    border-color: rgba(244, 114, 182, 0.45);
}
.t-nudelgerichte-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    position: relative;
}
.t-nudelgerichte-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-nudelgerichte-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.75);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-nudelgerichte-body {
    padding: 14px;
}
.t-nudelgerichte-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    color: #fff;
}
.t-nudelgerichte-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-nudelgerichte-price {
    color: #f472b6;
    font-size: 1.02rem;
}
.t-nudelgerichte-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-nudelgerichte-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-pizza-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(251, 146, 60, 0.16), transparent 34%),
        radial-gradient(circle at 86% 20%, rgba(244, 114, 182, 0.14), transparent 36%),
        linear-gradient(150deg, #1f1720 0%, #1a1f39 52%, #11182f 100%);
}
.t-pizza-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        125deg,
        rgba(255,255,255,0.02) 0 12px,
        rgba(255,255,255,0) 12px 24px
    );
    pointer-events: none;
}
.t-pizza-showcase .t-container { position: relative; z-index: 1; }
.t-pizza-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-pizza-featured {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(36, 21, 27, 0.94), rgba(16, 25, 48, 0.95));
    box-shadow: 0 16px 38px rgba(0,0,0,0.32);
}
.t-pizza-featured-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.t-pizza-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffe4b5;
    background: rgba(255,255,255,0.06);
}
.t-pizza-featured-body h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}
.t-pizza-featured-body p {
    margin: 0;
    color: rgba(255,255,255,0.82);
}
.t-pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-pizza-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(23, 18, 30, 0.94), rgba(14, 22, 40, 0.95));
    box-shadow: 0 10px 28px rgba(0,0,0,0.26);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-pizza-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 146, 60, 0.48);
    box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}
.t-pizza-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    background: transparent;
    cursor: zoom-in;
}
.t-pizza-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-pizza-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(14, 19, 38, 0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-pizza-card-body {
    padding: 14px;
}
.t-pizza-card-body h3 {
    margin: 0 0 6px;
    color: #fff;
}
.t-pizza-card-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-pizza-price {
    color: #fb923c;
    font-size: 1.04rem;
    font-weight: 700;
}
.t-pizza-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-pizza-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c2410c, #e11d48);
}
.t-pizza-more .t-btn:hover {
    background: linear-gradient(135deg, #d35400, #f43f5e);
}

.t-pizza-extras {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(125, 211, 252, 0.14), transparent 34%),
        radial-gradient(circle at 86% 22%, rgba(251, 191, 36, 0.14), transparent 36%),
        linear-gradient(155deg, #111a30 0%, #16223f 52%, #121a34 100%);
}
.t-pizza-extras::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 44%);
    pointer-events: none;
}
.t-pizza-extras .t-container { position: relative; z-index: 1; }
.t-pizza-extras-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-pizza-extras-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(16, 27, 50, 0.96), rgba(20, 32, 58, 0.95));
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.t-pizza-extras-featured .t-pizza-extras-image-btn {
    height: 100%;
}
.t-pizza-extras-featured .t-pizza-extras-image {
    height: 100%;
    min-height: 230px;
}
.t-pizza-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-pizza-extras-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(15, 26, 50, 0.94), rgba(17, 23, 42, 0.94));
    box-shadow: 0 10px 28px rgba(0,0,0,0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.t-pizza-extras-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.46);
    box-shadow: 0 14px 32px rgba(0,0,0,0.32);
}
.t-pizza-extras-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    cursor: zoom-in;
    background: transparent;
}
.t-pizza-extras-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.t-pizza-extras-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(13, 20, 38, 0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-pizza-extras-body {
    padding: 14px;
}
.t-pizza-extras-body h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.05rem;
}
.t-pizza-extras-body p {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
}
.t-pizza-extras-price {
    color: #7dd3fc;
    font-size: 1rem;
}

.t-grill-zone {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(150deg, #19130f 0%, #1a203a 56%, #111831 100%);
}
.t-grill-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 24%, rgba(251, 146, 60, 0.2), transparent 34%),
        radial-gradient(circle at 84% 20%, rgba(239, 68, 68, 0.16), transparent 34%);
    animation: grill-zone-breathe 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes grill-zone-breathe {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
.t-grill-zone .t-container { position: relative; z-index: 1; }
.t-grill-zone-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-grill-zone-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(34, 22, 16, 0.95), rgba(18, 26, 45, 0.95));
    box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.t-grill-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-grill-zone-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(30, 20, 14, 0.94), rgba(16, 24, 40, 0.94));
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.t-grill-zone-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 146, 60, 0.48);
    box-shadow: 0 15px 34px rgba(0,0,0,0.35);
}
.t-grill-zone-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    cursor: zoom-in;
    background: transparent;
}
.t-grill-zone-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-grill-zone-featured .t-grill-zone-image-btn { height: 100%; }
.t-grill-zone-featured .t-grill-zone-image {
    height: 100%;
    min-height: 230px;
}
.t-grill-zone-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(13, 20, 38, 0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-grill-zone-body { padding: 14px; }
.t-grill-zone-body h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.05rem;
}
.t-grill-zone-price {
    color: #fb923c;
    font-size: 1.03rem;
}
.t-grill-zone-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-grill-zone-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
}
.t-grill-zone-more .t-btn:hover {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.t-dessert-zone {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(244, 114, 182, 0.18), transparent 35%),
        radial-gradient(circle at 86% 16%, rgba(167, 139, 250, 0.16), transparent 36%),
        linear-gradient(150deg, #1b1430 0%, #171f3f 52%, #141a34 100%);
}
.t-dessert-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.02) 0 10px,
        rgba(255,255,255,0) 10px 20px
    );
    animation: dessert-stripe-move 16s linear infinite;
    pointer-events: none;
}
@keyframes dessert-stripe-move {
    0% { background-position: 0 0; }
    100% { background-position: 220px 220px; }
}
.t-dessert-zone .t-container { position: relative; z-index: 1; }
.t-dessert-zone-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-dessert-zone-featured {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(36, 20, 54, 0.95), rgba(19, 28, 52, 0.95));
    box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.t-dessert-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-dessert-zone-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(41, 24, 60, 0.94), rgba(20, 29, 52, 0.94));
    box-shadow: 0 10px 28px rgba(0,0,0,0.24);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.t-dessert-zone-card:hover {
    transform: translateY(-5px) rotate(-0.4deg);
    border-color: rgba(244, 114, 182, 0.5);
    box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}
.t-dessert-zone-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    cursor: zoom-in;
    background: transparent;
}
.t-dessert-zone-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-dessert-zone-featured .t-dessert-zone-image-btn { height: 100%; }
.t-dessert-zone-featured .t-dessert-zone-image {
    height: 100%;
    min-height: 230px;
}
.t-dessert-zone-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(13, 20, 38, 0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-dessert-zone-body { padding: 14px; }
.t-dessert-zone-body h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.05rem;
}
.t-dessert-zone-price {
    color: #f9a8d4;
    font-size: 1.03rem;
}
.t-dessert-zone-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-dessert-zone-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #db2777, #7c3aed);
}
.t-dessert-zone-more .t-btn:hover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.t-drink-zone {
    position: relative;
    overflow: hidden;
}
.t-drink-zone .t-container { position: relative; z-index: 1; }
.t-drink-zone-head {
    text-align: center;
    margin-bottom: 22px;
}
.t-drink-zone-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.t-drink-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.t-drink-zone-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.24);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.t-drink-zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.32);
}
.t-drink-zone-image-btn {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    position: relative;
    cursor: zoom-in;
    background: transparent;
}
.t-drink-zone-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.t-drink-zone-featured .t-drink-zone-image-btn { height: 100%; }
.t-drink-zone-featured .t-drink-zone-image {
    height: 100%;
    min-height: 230px;
}
.t-drink-zone-zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(13, 20, 38, 0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
}
.t-drink-zone-body { padding: 14px; }
.t-drink-zone-body h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.05rem;
}
.t-drink-zone-liter {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 2px 8px;
}
.t-drink-zone-price {
    color: #93c5fd;
    font-size: 1.03rem;
}
.t-drink-zone-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-drink-zone-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Variants */
.t-drink-zone--hot {
    background: linear-gradient(150deg, #1f180f 0%, #1a223f 52%, #131a33 100%);
}
.t-drink-zone--hot .t-drink-zone-featured,
.t-drink-zone--hot .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(36, 24, 14, 0.95), rgba(18, 26, 45, 0.95));
}
.t-drink-zone--hot .t-drink-zone-card:hover { border-color: rgba(251, 146, 60, 0.48); }
.t-drink-zone--hot .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #ea580c, #d97706); }
.t-drink-zone--hot .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #f97316, #f59e0b); }

.t-drink-zone--nonalc {
    background: linear-gradient(150deg, #111933 0%, #16233f 52%, #121b36 100%);
}
.t-drink-zone--nonalc .t-drink-zone-featured,
.t-drink-zone--nonalc .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(15, 30, 56, 0.95), rgba(17, 24, 42, 0.95));
}
.t-drink-zone--nonalc .t-drink-zone-card:hover { border-color: rgba(125, 211, 252, 0.48); }
.t-drink-zone--nonalc .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
.t-drink-zone--nonalc .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }

.t-drink-zone--bier {
    background: linear-gradient(150deg, #21180c 0%, #2a1f0f 45%, #17182b 100%);
}
.t-drink-zone--bier .t-drink-zone-featured,
.t-drink-zone--bier .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(49, 33, 15, 0.95), rgba(24, 22, 37, 0.95));
}
.t-drink-zone--bier .t-drink-zone-card:hover { border-color: rgba(251, 191, 36, 0.48); }
.t-drink-zone--bier .t-drink-zone-price { color: #fbbf24; }
.t-drink-zone--bier .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #ca8a04, #f59e0b); }
.t-drink-zone--bier .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #eab308, #fbbf24); }

.t-drink-zone--longdrinks {
    background: linear-gradient(150deg, #191429 0%, #1b2340 48%, #141d35 100%);
}
.t-drink-zone--longdrinks .t-drink-zone-featured,
.t-drink-zone--longdrinks .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(29, 22, 50, 0.95), rgba(19, 27, 47, 0.95));
}
.t-drink-zone--longdrinks .t-drink-zone-card:hover { border-color: rgba(167, 139, 250, 0.5); }
.t-drink-zone--longdrinks .t-drink-zone-price { color: #c4b5fd; }
.t-drink-zone--longdrinks .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #7c3aed, #6366f1); }
.t-drink-zone--longdrinks .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #8b5cf6, #818cf8); }

.t-drink-zone--spirituosen {
    background: linear-gradient(150deg, #14131f 0%, #1a2138 48%, #12192f 100%);
}
.t-drink-zone--spirituosen .t-drink-zone-featured,
.t-drink-zone--spirituosen .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(24, 20, 37, 0.95), rgba(18, 25, 43, 0.95));
}
.t-drink-zone--spirituosen .t-drink-zone-card:hover { border-color: rgba(244, 114, 182, 0.5); }
.t-drink-zone--spirituosen .t-drink-zone-price { color: #f9a8d4; }
.t-drink-zone--spirituosen .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #be185d, #db2777); }
.t-drink-zone--spirituosen .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #db2777, #ec4899); }

.t-drink-zone--offener-weisswein {
    background: linear-gradient(150deg, #132135 0%, #162945 52%, #101a30 100%);
}
.t-drink-zone--offener-weisswein::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 24%, rgba(125, 211, 252, 0.2), transparent 34%);
    animation: wine-wave-soft 8s ease-in-out infinite;
    pointer-events: none;
}
.t-drink-zone--offener-weisswein .t-drink-zone-featured,
.t-drink-zone--offener-weisswein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(20, 34, 57, 0.95), rgba(16, 24, 42, 0.95));
}
.t-drink-zone--offener-weisswein .t-drink-zone-card:hover { border-color: rgba(125, 211, 252, 0.52); }
.t-drink-zone--offener-weisswein .t-drink-zone-price { color: #7dd3fc; }
.t-drink-zone--offener-weisswein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #0284c7, #22d3ee); }
.t-drink-zone--offener-weisswein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #0ea5e9, #67e8f9); }

.t-drink-zone--offener-rotwein {
    background: linear-gradient(150deg, #271018 0%, #30121c 50%, #161c33 100%);
}
.t-drink-zone--offener-rotwein::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 18%, rgba(248, 113, 113, 0.2), transparent 32%);
    animation: wine-pulse-red 7s ease-in-out infinite;
    pointer-events: none;
}
.t-drink-zone--offener-rotwein .t-drink-zone-featured,
.t-drink-zone--offener-rotwein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(47, 18, 27, 0.95), rgba(19, 26, 44, 0.95));
}
.t-drink-zone--offener-rotwein .t-drink-zone-card:hover { border-color: rgba(248, 113, 113, 0.52); }
.t-drink-zone--offener-rotwein .t-drink-zone-price { color: #fda4af; }
.t-drink-zone--offener-rotwein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #be123c, #ef4444); }
.t-drink-zone--offener-rotwein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #e11d48, #f87171); }

.t-drink-zone--offener-rosewein {
    background: linear-gradient(150deg, #2b1327 0%, #241737 50%, #141b34 100%);
}
.t-drink-zone--offener-rosewein::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(244, 114, 182, 0) 10%, rgba(244, 114, 182, 0.14) 50%, rgba(244, 114, 182, 0) 90%);
    transform: translateX(-120%);
    animation: wine-shine-rose 9s linear infinite;
    pointer-events: none;
}
.t-drink-zone--offener-rosewein .t-drink-zone-featured,
.t-drink-zone--offener-rosewein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(51, 20, 45, 0.95), rgba(20, 27, 46, 0.95));
}
.t-drink-zone--offener-rosewein .t-drink-zone-card:hover { border-color: rgba(244, 114, 182, 0.52); }
.t-drink-zone--offener-rosewein .t-drink-zone-price { color: #f9a8d4; }
.t-drink-zone--offener-rosewein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #db2777, #a855f7); }
.t-drink-zone--offener-rosewein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #ec4899, #c084fc); }

.t-drink-zone--weisswein {
    background: linear-gradient(150deg, #192235 0%, #1a2b45 48%, #141e33 100%);
}
.t-drink-zone--weisswein::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(186, 230, 253, 0.16), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(253, 224, 71, 0.12), transparent 34%);
    animation: wine-float-light 10s ease-in-out infinite;
    pointer-events: none;
}
.t-drink-zone--weisswein .t-drink-zone-featured,
.t-drink-zone--weisswein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(24, 38, 59, 0.95), rgba(16, 24, 42, 0.95));
}
.t-drink-zone--weisswein .t-drink-zone-card:hover { border-color: rgba(186, 230, 253, 0.52); }
.t-drink-zone--weisswein .t-drink-zone-price { color: #bae6fd; }
.t-drink-zone--weisswein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #0ea5e9, #84cc16); }
.t-drink-zone--weisswein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #38bdf8, #a3e635); }

.t-drink-zone--rotwein {
    background: linear-gradient(150deg, #2a1119 0%, #2a1425 50%, #161c32 100%);
}
.t-drink-zone--rotwein::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 26%, rgba(190, 24, 93, 0.16), transparent 35%);
    animation: wine-drift-dark 11s ease-in-out infinite;
    pointer-events: none;
}
.t-drink-zone--rotwein .t-drink-zone-featured,
.t-drink-zone--rotwein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(53, 20, 37, 0.95), rgba(18, 24, 42, 0.95));
}
.t-drink-zone--rotwein .t-drink-zone-card:hover { border-color: rgba(251, 113, 133, 0.5); }
.t-drink-zone--rotwein .t-drink-zone-price { color: #fda4af; }
.t-drink-zone--rotwein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #9f1239, #e11d48); }
.t-drink-zone--rotwein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #be123c, #fb7185); }

.t-drink-zone--rosewein {
    background: linear-gradient(150deg, #2a1226 0%, #251a3a 50%, #151d35 100%);
}
.t-drink-zone--rosewein::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 22%, rgba(244, 114, 182, 0.16), transparent 34%);
    animation: wine-petal-sway 9s ease-in-out infinite;
    pointer-events: none;
}
.t-drink-zone--rosewein .t-drink-zone-featured,
.t-drink-zone--rosewein .t-drink-zone-card {
    background: linear-gradient(150deg, rgba(47, 20, 45, 0.95), rgba(20, 27, 46, 0.95));
}
.t-drink-zone--rosewein .t-drink-zone-card:hover { border-color: rgba(236, 72, 153, 0.52); }
.t-drink-zone--rosewein .t-drink-zone-price { color: #fbcfe8; }
.t-drink-zone--rosewein .t-drink-zone-more .t-btn { background: linear-gradient(135deg, #db2777, #f472b6); }
.t-drink-zone--rosewein .t-drink-zone-more .t-btn:hover { background: linear-gradient(135deg, #ec4899, #f9a8d4); }

@keyframes wine-wave-soft {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 0.9; }
    50% { transform: translateX(12px) translateY(-8px); opacity: 1; }
}
@keyframes wine-pulse-red {
    0%, 100% { transform: scale(1); opacity: 0.82; }
    50% { transform: scale(1.03); opacity: 1; }
}
@keyframes wine-shine-rose {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}
@keyframes wine-float-light {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes wine-drift-dark {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(16px); }
}
@keyframes wine-petal-sway {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 8px) scale(1.04); }
}

.t-rich-desc {
    margin: 0 0 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.55;
}
.t-rich-desc p {
    margin: 0 0 8px;
}
.t-rich-desc p:last-child {
    margin-bottom: 0;
}
.t-rich-desc ul,
.t-rich-desc ol {
    margin: 0 0 8px 18px;
    padding: 0;
}
.t-rich-desc a {
    color: #93c5fd;
    text-decoration: underline;
}

.t-nonalc-drinks {
    position: relative;
    background: linear-gradient(140deg, #111933 0%, #141b2d 45%, #1a2440 100%);
}
.t-nonalc-drinks::before,
.t-nonalc-drinks::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}
.t-nonalc-drinks::before {
    width: 280px;
    height: 280px;
    top: -90px;
    right: 8%;
    background: rgba(125, 211, 252, 0.45);
}
.t-nonalc-drinks::after {
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: 6%;
    background: rgba(176, 48, 73, 0.35);
}
.t-nonalc-drinks .t-container { position: relative; z-index: 1; }
.t-nonalc-head {
    text-align: center;
    margin-bottom: 20px;
}
.t-nonalc-list {
    display: grid;
    gap: 12px;
}
.t-nonalc-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.t-nonalc-item:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.4);
}
.t-nonalc-image-btn {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: zoom-in;
}
.t-nonalc-image {
    width: 120px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.t-nonalc-body h3 {
    margin: 0 0 4px;
    color: #fff;
}
.t-nonalc-body p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
}
.t-nonalc-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.t-nonalc-side strong {
    color: #7dd3fc;
    font-size: 1rem;
}
.t-nonalc-liter {
    color: rgba(255,255,255,0.78);
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 2px 8px;
}
.t-nonalc-zoom-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}
.t-nonalc-zoom-btn:hover {
    background: rgba(176, 48, 73, 0.35);
    border-color: rgba(176, 48, 73, 0.55);
}
.t-nonalc-more {
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.t-nonalc-more .t-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.t-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: #0e1326;
    color: #fff;
}
/* Video varsa: ekran küçülsün veya büyüsün, her zaman viewport ile tam genişlik */
.t-hero.t-hero-has-video {
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100vh;
    min-height: 280px;
    overflow: hidden;
    box-sizing: border-box;
}
.t-hero-video-only {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}
.t-hero-video-only video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.t-hero-unmute-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    padding: 10px 18px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.t-hero-unmute-btn:hover { background: #b03049; }
/* Ekran küçüldüğünde: hero ve video viewport genişliğinde kalsın, taşma olmasın */
@media (max-width: 768px) {
    .t-hero.t-hero-has-video { height: 70vh; min-height: 260px; width: 100%; }
    .t-section { padding: 48px 16px; }
    .t-container { width: 100%; max-width: 100%; padding: 0 16px; box-sizing: border-box; }
    .t-grid { grid-template-columns: 1fr; }
    .t-nonalc-item {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .t-nonalc-image,
    .t-nonalc-image-btn {
        width: 100%;
    }
    .t-nonalc-image {
        height: 180px;
    }
    .t-nonalc-side {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .t-vorspeisen-grid {
        grid-template-columns: 1fr;
    }
    .t-suppe-grid {
        grid-template-columns: 1fr;
    }
    .t-suppe-card {
        grid-template-columns: 1fr;
    }
    .t-suppe-body {
        padding: 12px;
    }
    .t-salate-grid {
        grid-template-columns: 1fr;
    }
    .t-kids-grid {
        grid-template-columns: 1fr;
    }
    .t-cheese-grid {
        grid-template-columns: 1fr;
    }
    .t-pizza-grid {
        grid-template-columns: 1fr;
    }
    .t-pizza-featured {
        grid-template-columns: 1fr;
    }
    .t-pizza-image {
        height: 190px;
    }
    .t-pizza-extras-grid {
        grid-template-columns: 1fr;
    }
    .t-pizza-extras-featured {
        grid-template-columns: 1fr;
    }
    .t-pizza-extras-image {
        height: 185px;
    }
    .t-grill-zone-grid {
        grid-template-columns: 1fr;
    }
    .t-grill-zone-featured {
        grid-template-columns: 1fr;
    }
    .t-grill-zone-image {
        height: 190px;
    }
    .t-dessert-zone-grid {
        grid-template-columns: 1fr;
    }
    .t-dessert-zone-featured {
        grid-template-columns: 1fr;
    }
    .t-dessert-zone-image {
        height: 190px;
    }
    .t-drink-zone-grid {
        grid-template-columns: 1fr;
    }
    .t-drink-zone-featured {
        grid-template-columns: 1fr;
    }
    .t-drink-zone-image {
        height: 190px;
    }
    .t-nudelgerichte-grid {
        grid-template-columns: 1fr;
    }
    .t-nudelgerichte-featured {
        grid-template-columns: 1fr;
    }
    .t-nudelgerichte-featured .t-nudelgerichte-image {
        min-height: 180px;
    }
    .t-cold-drink-card.is-featured,
    .t-vorspeisen-card.is-featured,
    .t-suppe-card.is-featured,
    .t-salate-card.is-featured,
    .t-kids-card.is-featured,
    .t-cheese-card.is-featured {
        grid-template-columns: 1fr;
    }
    .t-nonalc-item.is-featured {
        grid-template-columns: 1fr;
    }
    .t-nonalc-item.is-featured .t-nonalc-image {
        height: 180px;
    }
}
@media (max-width: 480px) {
    .t-hero.t-hero-has-video { min-height: 220px; }
}
.t-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.t-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.t-hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin: 0 0 1.5rem;
}
.t-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #b03049;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}
.t-btn:hover { background: #c93d5c; transform: translateY(-1px); }
.t-btn-light { background: #141b2d; color: #fff; }
.t-btn-light:hover { background: #b03049; color: #fff; }

.t-section { padding: 72px 24px; width: 100%; box-sizing: border-box; }
.t-container { max-width: 960px; width: 100%; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.t-heading {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: #fff;
}
.t-heading-light { color: #fff; }
.t-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}
.t-lead-light { color: rgba(255,255,255,0.9); }

.t-about { background: #141b2d; }

.t-services { background: #141b2d; border-top: 1px solid rgba(255,255,255,0.06); }
.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.t-card {
    background: #0e1326;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.2s;
}
.t-card:hover { box-shadow: 0 8px 24px rgba(176, 48, 73, 0.2); }
.t-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.t-card-img img { width: 100%; height: 100%; object-fit: cover; }
.t-card-title { margin: 1rem 1rem 0; font-size: 1.1rem; color: #fff; }
.t-card p { margin: 0.5rem 1rem 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.t-menu { background: #141b2d; }
.t-hours { margin-bottom: 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.t-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.t-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: baseline;
}
.t-menu-name { font-weight: 600; color: #fff; }
.t-menu-desc { grid-column: 1; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.t-menu-price { grid-row: span 2; align-self: center; font-weight: 600; color: #b03049; }

.t-cta {
    background: #b03049;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.t-cta.t-cta-has-bg {
    background-color: #0e1326;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-cta.t-cta-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 19, 38, 0.85) 0%, rgba(176, 48, 73, 0.75) 100%);
    pointer-events: none;
}
.t-cta .t-container { position: relative; z-index: 1; }

.t-testimonials { background: #141b2d; }
.t-testimonial {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem;
    background: #0e1326;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.t-testimonial blockquote { margin: 0 0 0.75rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; }
.t-testimonial cite { font-size: 0.9rem; color: #b03049; font-weight: 600; }

.t-contact { background: #141b2d; position: relative; overflow: hidden; }
.t-contact.t-contact-has-bg {
    background-color: #0e1326;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.t-contact.t-contact-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 19, 38, 0.88) 0%, rgba(20, 27, 45, 0.92) 100%);
    pointer-events: none;
}
.t-contact .t-container { position: relative; z-index: 1; }
.t-reservierung-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.t-reservierung-header .t-heading { margin-bottom: 0.5rem; }
.t-reservierung-header .t-msg { margin-top: 0.75rem; margin-left: auto; margin-right: auto; max-width: 480px; }
.t-form-captcha { margin: 1rem 0; }
.t-form-captcha label { display: block; margin-bottom: 0.5rem; }
.t-captcha-img { display: block; border-radius: 8px; margin-bottom: 6px; }
.t-captcha-input { max-width: 160px; }
.t-msg { padding: 12px; border-radius: 8px; margin-bottom: 1rem; }
.t-msg-ok { background: rgba(176, 48, 73, 0.2); color: #fff; }
.t-msg-err { background: rgba(176, 48, 73, 0.3); color: #fff; }
.t-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 1.5rem;
    align-items: start;
}
.t-form-card {
    background: linear-gradient(145deg, rgba(20, 27, 45, 0.95) 0%, rgba(14, 19, 38, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(176, 48, 73, 0.15);
}
.t-form-card-inner { padding: 28px 24px; }
.t-form label,
.t-form .t-form-label-wrap {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}
.t-form-label-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}
.t-form-label-text i {
    width: 20px;
    color: #b03049;
    font-size: 0.95rem;
}
.t-form input,
.t-form select,
.t-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: #0e1326;
    color: #fff;
    font-size: 1rem;
    margin-top: 0;
}
.t-form input:focus,
.t-form select:focus,
.t-form textarea:focus {
    outline: none;
    border-color: #b03049;
}
.t-form .t-btn { margin-top: 0.5rem; cursor: pointer; border: none; }
.t-form .t-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 600;
}
.t-form .t-btn-submit i { font-size: 1.1rem; }
.t-contact-card {
    background: linear-gradient(145deg, rgba(20, 27, 45, 0.95) 0%, rgba(14, 19, 38, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(176, 48, 73, 0.15);
}
.t-contact-card-inner { padding: 28px 24px; }
.t-contact-card-title {
    margin: 0 0 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(176, 48, 73, 0.5);
}
.t-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.t-contact-item:last-child { margin-bottom: 0; }
.t-contact-hours .t-contact-item { margin-bottom: 0; }
.t-contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 48, 73, 0.2);
    border-radius: 12px;
    font-size: 1.2rem;
}
.t-contact-item .t-contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}
.t-contact-value {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}
.t-contact-value:hover { color: #c93d5c; }
a.t-contact-value:hover { text-decoration: underline; }
.t-contact-hours-text {
    margin: 0;
    white-space: pre-line;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* reservation/contact compact desktop layout */
@media (min-width: 992px) {
    .t-form-with-icons {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 14px;
    }
    .t-form-with-icons .t-form-label-wrap,
    .t-form-with-icons .t-form-captcha {
        margin-bottom: 0;
    }
    .t-form-with-icons .t-form-span-2 { grid-column: span 2; }
    .t-form-with-icons .t-form-span-4 { grid-column: 1 / -1; }
    .t-form-captcha {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        align-items: end;
        margin: 0;
    }
    .t-captcha-input { max-width: 100%; }

    .t-contact-card-inner { display: block; }
    .t-contact-card { margin-top: 0; }
    .t-contact-card-title {
        margin-bottom: 20px;
    }
    .t-contact-item { margin-bottom: 16px; }
}

@media (max-width: 768px) {
    .t-hero { min-height: 70vh; padding: 100px 20px 60px; }
    .t-contact-grid { grid-template-columns: 1fr; }
    .t-menu-item { grid-template-columns: 1fr; gap: 0.25rem 0; }
    .t-menu-price { grid-row: auto; }
}
