/* Pizzeria visual layer — all menu content and functionality remain unchanged. */
:root {
    --primary-color: #0d5b9b;
    --primary-dark: #073b65;
    --primary-light: #4b91c5;
    --swedish-gold: #e6bb3e;
    --cream: #f7f4ee;
    --text-primary: #172331;
    --text-secondary: #5c6874;
    --text-light: #75808a;
    --bg-primary: #f4f5f6;
    --bg-secondary: #e8edf1;
    --bg-tertiary: #dce4ea;
    --border-light: rgba(20, 54, 79, .11);
    --border-medium: rgba(20, 54, 79, .18);
    --hover-bg: rgba(13, 91, 155, .045);
    --focus-bg: rgba(13, 91, 155, .08);
    --font-primary: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-secondary: var(--font-primary);
    --font-display: var(--font-primary);
    --shadow-sm: 0 2px 8px rgba(17, 46, 68, .055);
    --shadow-md: 0 10px 28px rgba(17, 46, 68, .075);
    --shadow-lg: 0 18px 44px rgba(17, 46, 68, .11);
    --shadow-xl: 0 26px 65px rgba(8, 34, 54, .18);
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
}

body {
    background-color: var(--bg-primary);
    background-image: radial-gradient(rgba(41, 79, 108, .045) .7px, transparent .7px);
    background-size: 7px 7px;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

html { scroll-padding-top: 92px; }

main { margin-top: 76px; }

header {
    background: rgba(8, 42, 68, .97);
    border: 0;
    box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 8px 28px rgba(7,30,48,.14);
    backdrop-filter: blur(16px);
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--swedish-gold);
}

.header-top { background: transparent; padding: 0; }
.header-info {
    max-width: 1280px;
    min-height: 76px;
    grid-template-columns: minmax(245px, 1fr) auto auto auto;
    gap: 18px;
}
.header-brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
.brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    object-fit: cover;
}
.brand-name {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: .01em;
}
.header-hours, .header-phone, .header-location {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .01em;
}
.header-hours { justify-self: end; }
.header-phone, .header-location { justify-self: auto; }
.header-phone:hover, .header-location:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}
.header-location.active, .header-location.active:hover {
    padding: 0 12px;
    color: #fff;
    background: rgba(255,255,255,.1);
    border-radius: 999px;
}
.header-phone:focus, .header-location:focus { color: #fff; }
.header-brand:focus-visible, .header-phone:focus-visible, .header-location:focus-visible,
.slider-btn:focus-visible, .dot:focus-visible, .filter-btn:focus-visible, #menu-search:focus-visible,
footer a:focus-visible {
    outline: 3px solid var(--swedish-gold);
    outline-offset: 3px;
}

#hero {
    height: min(550px, 60.5vh);
    min-height: 440px;
    margin: 0;
    padding: 0;
    width: 100%;
    background: #0a2e49;
}
#hero::before, #hero::after { display: none; }
.hero-slider { width: 100%; max-width: none; box-shadow: none; }
.slider-navigation {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
}
.slider-container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(6,28,45,.13) 0, rgba(6,28,45,.2) 48%, rgba(6,28,45,.58) 76%, rgba(6,28,45,.76) 100%);
}
.slide img { object-position: center; filter: saturate(1.05) contrast(1.02); }
.desktop-slide {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 4px;
    overflow: hidden;
    background: #082a44;
}
.desktop-slide-panel {
    display: block;
    min-width: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.06) contrast(1.02);
}
.desktop-slide-food { grid-template-columns: minmax(0, 1.45fr) minmax(0, .75fr); }
.desktop-slide-craft { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.desktop-slide-oven { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.desktop-slide-team { grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr); }
.mobile-slide-image { display: none; }

@media (min-width: 961px) {
    .desktop-slide-food .desktop-slide-main { background-image: url("../images/social-poker-pizza.jpg"); background-position: 50% 78%; }
    .desktop-slide-food .desktop-slide-detail { background-image: url("../images/social-panpizza-logo.jpg"); background-position: 50% 54%; }
    .desktop-slide-craft .desktop-slide-main { background-image: url("../images/social-fresh-pizza.jpg"); background-position: 50% 61%; }
    .desktop-slide-craft .desktop-slide-detail { background-image: url("../images/instagram-pizza-making.jpg"); background-position: 50% 62%; }
    .desktop-slide-oven .desktop-slide-main { background-image: url("../images/header_4.jpg"); background-position: 50% 18%; }
    .desktop-slide-oven .desktop-slide-detail { background-image: url("../images/social-poker-pizza.jpg"); background-position: 50% 80%; }
    .desktop-slide-team .desktop-slide-main { background-image: url("../images/header_6.jpg"); background-position: 50% 35%; }
    .desktop-slide-team .desktop-slide-detail { background-image: url("../images/social-panpizza-logo.jpg"); background-position: 50% 55%; }
}
.hero-content {
    left: auto;
    right: max(28px, calc((100% - 1240px) / 2 + 32px));
    top: 50%;
    transform: translateY(-50%);
    width: min(610px, calc(100% - 56px));
    padding: 32px 34px;
    background: rgba(7, 43, 70, .82);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(9px);
    text-align: left;
}
.hero-content::before { display: none; }
.hero-content h2 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    max-width: 560px;
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.3vw, 3.35rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.055em;
    white-space: nowrap;
    text-transform: none;
    text-shadow: 0 2px 24px rgba(0,0,0,.38);
}
.hero-content .lunch-price {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    height: 1.35em;
    margin: 0;
    padding: 0 .45em;
    flex: 0 0 auto;
    border: 0;
    border-radius: .25em;
    font-family: var(--font-primary);
    font-size: .56em;
    line-height: 1;
    color: #142433;
    background: var(--swedish-gold);
    vertical-align: middle;
}
.hero-content p { margin: 0 0 6px; font-size: clamp(.98rem, 1.5vw, 1.13rem); text-shadow: 0 1px 12px #000; }
.hero-content p:first-of-type { margin-bottom: 9px; color: #dceeff; font-size: clamp(1.12rem, 1.8vw, 1.3rem); font-weight: 700; }
.hero-content p:last-child { margin-bottom: 0; font-size: .92rem; }
@media (min-width: 961px) {
    .hero-content { right: max(86px, calc((100% - 1240px) / 2 + 90px)); width: min(488px, calc(100% - 56px)); }
    .hero-content h2 { gap: 10px; font-size: clamp(2rem, 2.8vw, 2.75rem); }
}
.slider-btn {
    top: 50%;
    width: 50px;
    height: 50px;
    opacity: 1;
    border: 1px solid rgba(255,255,255,.62);
    color: #fff;
    background: rgba(7,43,70,.78);
}
.slider-btn:hover, .slider-btn:active { background: var(--primary-dark); border-color: #fff; transform: translateY(-50%); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots { bottom: 18px; gap: 0; }
.dot {
    position: relative;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
}
.dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.6);
    transform: translate(-50%, -50%);
    transition: width .2s ease, background .2s ease;
}
.dot:hover { background: transparent; }
.dot:hover::after { background: #fff; }
.dot.active { width: 36px; border-radius: 0; transform: none; background: transparent; }
.dot.active::after { width: 25px; background: var(--swedish-gold); }

#menu { padding: 22px 0 28px; }
.menu-search {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    align-items: center;
    gap: 20px;
    width: calc(100% - 64px);
    max-width: 1240px;
    margin: 0 auto 22px;
    padding: 16px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}
.search-container { margin: 0; }
#menu-search {
    min-height: 48px;
    padding: 11px 16px 11px 46px;
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    background: #fffdf8;
    box-shadow: none;
    font-family: var(--font-primary);
    font-size: .95rem;
}
.search-container::before { left: 16px; font-size: 1rem; }
#menu-search:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(13,91,155,.12); transform: none; }
#menu-search::placeholder { color: var(--text-light); font-style: normal; }
.menu-filters { justify-content: flex-end; gap: 7px; }
.filter-btn {
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--border-medium);
    border-radius: 999px;
    color: var(--text-secondary);
    background: #fffdf8;
    font-size: .82rem;
    font-weight: 700;
}
.filter-btn:hover { border-color: var(--primary-color); color: var(--primary-color); transform: none; box-shadow: none; }
.filter-btn.active { border-color: var(--primary-color); color: #fff; background: var(--primary-color); transform: none; box-shadow: none; }
.pizza-news, .menu-sections { width: calc(100% - 64px); max-width: 1240px; }
.pizza-news {
    margin: 0 auto 16px;
    padding: 30px;
    overflow: hidden;
    background: #0b3556;
    color: #fff;
    border: 0;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}
.pizza-news::before, .menu-category::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--primary-light);
}
.pizza-news::before { background: var(--primary-light); }
.pizza-news h3, .menu-category h3 {
    margin: 0 0 12px;
    padding: 2px 0 20px;
    border-bottom: 1px solid var(--border-medium);
    gap: 14px;
}
.pizza-news h3 { justify-content: center; border-color: rgba(255,255,255,.16); font-size: 1.55rem; text-align: center; }
.pizza-news h3 .section-title { flex: 0 1 auto; color: #fff; font-family: var(--font-display); font-size: 1.55rem; line-height: 1.15; letter-spacing: -.01em; text-transform: none; }
.pizza-news h3 small {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    position: relative;
    top: 0;
    height: 1.35em;
    padding: 0 .45em;
    color: #13283a !important;
    background: var(--swedish-gold);
    border-radius: .25em;
    font-size: 1em !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1;
}
.pizza-news .menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 6px 0 0; }
.pizza-news .menu-item, .pizza-news .menu-item:not(.menu-item-with-price) {
    display: block;
    min-height: 126px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    box-shadow: none;
    transform: none;
    transition: background .18s ease, border-color .18s ease;
}
.pizza-news .menu-item:hover, .pizza-news .menu-item:focus-within {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 14px;
    background: rgba(255,255,255,.075);
    box-shadow: none;
    transform: none;
}
.pizza-news .menu-item h4 { min-width: 0; margin: 0 0 8px; color: #fff; font-size: .96rem; }
.pizza-news .menu-item p { color: rgba(255,255,255,.7); font-size: .86rem; }

.menu-sections { display: block; margin: 0 auto; padding: 0; }
.menu-category {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 28px 30px 16px;
    background: rgba(255,255,255,.84);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.menu-category h3 { min-height: 52px; align-items: center; }
.menu-category h3 br { display: none; }
.menu-category h3 .section-title, .menu-category h3 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -.01em;
    text-transform: none;
}
.menu-category h3 .section-title { flex: 1; font-size: inherit; }
.menu-category h3 small {
    margin-left: auto;
    padding: 5px 9px;
    color: var(--primary-color) !important;
    background: rgba(13,91,155,.07);
    border-radius: 7px;
    font-family: var(--font-primary);
    font-size: .84rem !important;
    font-weight: 750 !important;
    letter-spacing: 0 !important;
    text-align: right;
}
.menu-category .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 44px;
    padding: 0;
}
.menu-item, .menu-item:not(.menu-item-with-price) {
    min-height: 76px;
    padding: 15px 5px;
    border-color: var(--border-light);
    background: transparent;
    transition: background .18s ease, color .18s ease;
}
.menu-item:nth-child(odd), .menu-item:nth-child(even) { padding: 15px 5px; }
.menu-item:hover, .menu-item:focus-within,
.menu-item:nth-child(odd):hover, .menu-item:nth-child(odd):focus-within,
.menu-item:nth-child(even):hover, .menu-item:nth-child(even):focus-within {
    padding: 15px 5px;
    border-left: 0;
    border-radius: 0;
    background: var(--hover-bg);
}
.pizza-news .menu-item:hover, .pizza-news .menu-item:focus-within,
.pizza-news .menu-item:nth-child(odd):hover, .pizza-news .menu-item:nth-child(odd):focus-within,
.pizza-news .menu-item:nth-child(even):hover, .pizza-news .menu-item:nth-child(even):focus-within {
    padding: 20px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 14px;
    background: rgba(255,255,255,.075);
    box-shadow: none;
    transform: none;
}
.menu-item h4 { margin: 0 0 4px; color: var(--text-primary); font-size: .97rem; line-height: 1.3; letter-spacing: -.01em; }
.menu-item p { color: var(--text-secondary); font-size: .83rem; line-height: 1.45; }
.menu-item-content { max-width: none; margin-right: 14px; }
.menu-item-price { min-width: 58px; margin: 1px 0 0 12px; align-self: flex-start; }
.price { padding: 4px 8px; color: var(--primary-color); background: rgba(13,91,155,.075); border-radius: 7px; font-size: .84rem; font-weight: 750; }
.menu-category > p, .kebab-options > p, .dressing-list {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    max-width: none;
    margin: 2px auto 16px;
    padding: 10px 16px;
    color: var(--primary-dark);
    background: #edf4f9;
    border: 1px solid rgba(13,91,155,.13);
    border-radius: 10px;
    box-shadow: none;
    font-family: var(--font-primary);
    font-size: .84rem;
    font-weight: 650;
    line-height: 1.4;
    text-align: center;
    font-style: normal;
}
.dressing-list p { margin: 0; text-align: center; }

.menu-category[data-category="other"] h3 { justify-content: center; text-align: center; }
.menu-category[data-category="other"] .dressing-list { margin-bottom: 0; }

.allergi-note {
    width: calc(100% - 64px);
    max-width: 1240px;
    margin: 0 auto 26px;
    padding: 18px 24px;
    color: var(--primary-dark);
    background: #e6f0f7;
    border: 1px solid rgba(13,91,155,.18);
    border-radius: 12px;
    box-shadow: none;
    font-style: normal;
}

#instagram { padding: 26px 32px 72px; background: #fff; }
.instagram-container { max-width: 1240px; margin: 0 auto; }
.instagram-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.instagram-heading h2 { display: inline-flex; align-items: center; gap: .16em; margin: 0 0 7px; color: var(--text-primary); font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.035em; white-space: nowrap; }
.instagram-mark { display: block; width: 1em; height: 1em; flex: 0 0 auto; align-self: center; overflow: visible; color: currentColor; }
.instagram-heading a { color: var(--primary-color); font-weight: 750; text-decoration: none; }
.instagram-heading .instagram-mark-link { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: inherit; line-height: 0; }
.instagram-heading .instagram-handle { display: block; }
.instagram-heading a:hover { text-decoration: underline; }
.instagram-heading .instagram-mark-link:hover { color: var(--primary-color); text-decoration: none; }
.instagram-heading .instagram-mark-link:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; border-radius: 4px; }
.instagram-heading .instagram-logo-link { display: block; flex: 0 0 auto; line-height: 0; }
.instagram-heading .instagram-logo-link:hover { text-decoration: none; }
.instagram-logo { width: 82px; height: 82px; border-radius: 50%; object-fit: cover; }
.instagram-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.instagram-gallery a { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #e6edf2; border-radius: 14px; }
.instagram-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.instagram-gallery a:hover img { opacity: .92; }
.instagram-gallery a:first-child img { object-position: 50% 34%; }
.instagram-gallery a:nth-child(2) img { object-position: 50% 48%; }
.instagram-gallery a:nth-child(3) img { object-position: 50% 62%; }

#location { margin: 0; padding: 42px 32px 74px; background: linear-gradient(145deg, #dceaf4, #f3f7fa); }
#location .location-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto 42px;
    padding: 0 32px;
    border: 0;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.035em;
    text-transform: none;
}
#location .location-title::before, #location .location-title::after {
    content: "";
    width: 74px;
    height: 3px;
    border-radius: 99px;
}
#location .location-title span { flex: 0 0 auto; white-space: nowrap; }
#location .location-title::before { background: var(--primary-color); }
#location .location-title::after { background: var(--swedish-gold); }
.location-details {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1.1fr;
    gap: 12px;
    max-width: 1120px;
    margin: 0 auto 18px;
    font-style: normal;
}
.location-detail {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 72px;
    padding: 13px 16px;
    gap: 12px;
    color: var(--primary-dark);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(13,91,155,.14);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}
a.location-detail:hover, a.location-detail:focus-visible {
    color: var(--primary-dark);
    background: #fff;
    border-color: rgba(13,91,155,.3);
    transform: none;
}
.location-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #e5f0f8;
    font-size: 1rem;
}
.location-detail-copy { display: grid; min-width: 0; gap: 2px; text-align: left; }
.location-detail-copy strong { color: var(--primary-dark); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.location-detail-copy span { color: var(--text-secondary); font-size: .88rem; line-height: 1.3; }
.location-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); max-width: 1120px; margin: 0 auto; overflow: hidden; border: 5px solid #fff; border-radius: 22px; background: #fff; box-shadow: var(--shadow-lg); }
.location-photo { min-height: 430px; margin: 0; overflow: hidden; }
.location-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.map-wrapper { max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
.map-wrapper iframe { height: 100%; min-height: 430px; }
footer { margin: 0; padding: 54px 24px 32px; border: 0; background: #082a44; }
.footer-content { max-width: 720px; margin: auto; }
.footer-section h3 { margin-bottom: 10px; color: #fff; font-family: var(--font-display); font-size: 1.55rem; }
.footer-section p { color: rgba(255,255,255,.65); }
.footer-bottom { max-width: 1040px; margin: 28px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
#back-to-top { right: 20px; bottom: 20px; box-shadow: var(--shadow-lg); }

@media (max-width: 960px) {
    html { scroll-padding-top: 73px; }
    main { margin-top: 57px; }
    header { position: fixed; }
    .header-info { min-height: 57px; padding: 6px 10px 9px; grid-template-columns: 42px minmax(0, 1fr) auto auto; gap: 0 4px; }
    .header-brand { grid-column: auto; justify-self: start; gap: 0; }
    .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
    .brand-name { display: none; }
    .header-hours, .header-phone, .header-location { width: auto; min-width: 0; min-height: 42px; padding: 0 4px; justify-content: center; justify-self: center; gap: 3px; font-size: .68rem; text-align: center; }
    .header-location.active, .header-location.active:hover { padding: 0 4px; }
    .header-hours { justify-self: stretch; white-space: normal; line-height: 1.15; }
    .header-hours .text { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: .28em; }
    .header-hours .text > span { white-space: nowrap; }
    .header-phone, .header-location { white-space: nowrap; }
    .header-info .icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: .68rem; line-height: 1; }
    .header-hours .icon { display: none; }
    .header-hours .text, .header-phone .text, .header-location .text { font-size: .72rem; }
    #hero, #menu {
        background-color: var(--bg-primary);
        background-image: radial-gradient(rgba(41, 79, 108, .045) .7px, transparent .7px);
        background-size: 7px 7px;
    }
    #hero { display: block; height: auto; min-height: 0; overflow: visible; box-shadow: none; }
    .hero-slider { position: relative; top: auto; left: auto; transform: none; height: 266px; }
    .slider-container::after { background: linear-gradient(0deg, rgba(6,28,45,.42), rgba(6,28,45,.06) 70%); }
    .desktop-slide { display: none; }
    .mobile-slide-image { display: block; }
    .slide:nth-child(1) > .mobile-slide-image { object-position: center 82%; }
    .slide:nth-child(2) > .mobile-slide-image { object-position: center 66%; }
    .slide:nth-child(3) > .mobile-slide-image { object-position: 32% 20%; }
    .slide:nth-child(4) > .mobile-slide-image { object-position: 38% 35%; }
    .hero-content { position: relative; left: auto; right: auto; top: auto; bottom: auto; transform: none; width: calc(100% - 28px); margin: 16px auto 0; padding: 24px 22px; background: rgba(7,43,70,.96); border-radius: 16px; box-shadow: var(--shadow-sm); text-align: center; }
    .hero-content h2 { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 9px; margin-bottom: 14px; font-size: clamp(1.55rem, 7vw, 2.4rem); white-space: nowrap; }
    .hero-content .lunch-price { display: inline-flex; align-items: center; align-self: center; width: auto; height: 1.35em; margin: 0; padding: 0 .45em; flex: 0 0 auto; font-size: .56em; }
    .hero-content p { font-size: .94rem; }
    .hero-content p:first-of-type { font-size: 1.05rem; }
    .slider-btn { top: 50%; width: 48px; height: 48px; background: rgba(7,43,70,.84); }
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }
    .slider-dots { bottom: 12px; }
    #menu { padding: 16px 0 8px; }
    .menu-search { grid-template-columns: 1fr; gap: 12px; width: calc(100% - 28px); margin-bottom: 16px; padding: 13px; border-radius: 15px; }
    .menu-filters { justify-content: center; }
    .filter-btn { flex: 1 1 27%; min-height: 42px; padding-inline: 9px; }
    .pizza-news, .menu-sections { width: calc(100% - 28px); }
    .pizza-news { margin-bottom: 16px; padding: 24px 18px 18px; border-radius: 18px; }
    .pizza-news h3 { flex-direction: column; padding-bottom: 16px; }
    .pizza-news h3 .section-title, .pizza-news h3 small { width: auto; text-align: center; }
    .pizza-news .menu-grid { grid-template-columns: 1fr; gap: 10px; }
    .pizza-news .menu-item, .pizza-news .menu-item:not(.menu-item-with-price) { min-height: 0; padding: 17px; border-radius: 14px; }
    .pizza-news .menu-item:hover, .pizza-news .menu-item:focus-within { padding: 17px; border-radius: 14px; }
    .menu-category { margin-bottom: 14px; padding: 23px 18px 10px; border-radius: 16px; }
    .menu-category h3 { min-height: 0; flex-direction: column; align-items: center; margin-bottom: 5px; padding-bottom: 15px; text-align: center; }
    .menu-category h3 .section-title, .menu-category h3 { font-size: 1.12rem; }
    .menu-category h3 .section-title { width: 100%; text-align: center; }
    .menu-category h3 small { margin-left: 0; text-align: center; }
    .menu-category .menu-grid { grid-template-columns: 1fr; gap: 0; }
    .menu-item, .menu-item:not(.menu-item-with-price), .menu-item:nth-child(odd), .menu-item:nth-child(even) { min-height: 66px; padding: 14px 0; }
    .menu-item:hover, .menu-item:focus-within,
    .menu-item:nth-child(odd):hover, .menu-item:nth-child(odd):focus-within,
    .menu-item:nth-child(even):hover, .menu-item:nth-child(even):focus-within { padding: 14px 0; border-radius: 0; }
    .pizza-news .menu-item:hover, .pizza-news .menu-item:focus-within,
    .pizza-news .menu-item:nth-child(odd):hover, .pizza-news .menu-item:nth-child(odd):focus-within,
    .pizza-news .menu-item:nth-child(even):hover, .pizza-news .menu-item:nth-child(even):focus-within {
        padding: 17px;
        border: 1px solid rgba(255,255,255,.19);
        border-radius: 14px;
        background: rgba(255,255,255,.075);
    }
    .menu-item-content { margin-right: 8px; }
    .menu-item-price { margin-left: 8px; }
    .allergi-note { width: calc(100% - 28px); margin: 0 auto 16px; padding: 16px; }
    #instagram { padding: 20px 14px 40px; }
    .instagram-heading { margin-bottom: 20px; }
    .instagram-logo { width: 70px; height: 70px; }
    .instagram-gallery { gap: 10px; }
    #location { padding: 24px 14px 40px; }
    #location .location-title { margin-bottom: 24px; padding: 0 14px; gap: 13px; font-size: clamp(1.5rem, 7vw, 2rem); }
    #location .location-title::before, #location .location-title::after { width: 44px; }
    .location-details { grid-template-columns: 1fr; gap: 8px; margin-bottom: 14px; }
    .location-detail { min-height: 62px; padding: 11px 13px; }
    .location-grid { grid-template-columns: 1fr; border-width: 3px; border-radius: 18px; }
    .location-photo { min-height: 260px; }
    .map-wrapper iframe { height: 350px; min-height: 350px; }
    footer { margin-top: 0; padding: 42px 20px 28px; }
}

@media (max-width: 430px) {
    .header-info { padding: 6px 7px 9px; grid-template-columns: 40px minmax(0, 1fr) auto auto; gap: 0 3px; }
    .brand-logo { width: 40px; height: 40px; flex-basis: 40px; }
    .header-hours, .header-phone, .header-location { padding-inline: 3px; gap: 2px; font-size: .62rem; }
    .header-location.active, .header-location.active:hover { padding-inline: 3px; }
    .header-hours .text, .header-phone .text, .header-location .text { font-size: .62rem; }
    .header-info .icon { font-size: .6rem; }
    .hero-slider { height: 213px; }
    .hero-content { padding: 21px 17px; }
    .hero-content h2 { gap: 7px; font-size: clamp(1.45rem, 6.8vw, 1.85rem); }
    .slider-dots { bottom: 10px; }
    .menu-category h3 { gap: 8px; }
    .menu-item h4 { font-size: .94rem; }
    .instagram-heading { justify-content: center; text-align: center; }
    .instagram-logo { width: 62px; height: 62px; }
    .instagram-gallery { gap: 8px; }
    .instagram-gallery a { aspect-ratio: 1; border-radius: 10px; }
}

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