/*
Theme Name: Drevjanka
Version: 1.0.0
Description: Vlastna tema pre restauraciu Drevjanka
Author: Drevjanka
*/

/* ========================================
   RESET & BASE
======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   HEADER
======================================== */

.drevjanka-header {
    background-color: #3d1f1f;
    color: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: hidden;
}

.drevjanka-top {
    background-color: #fcf0e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    font-size: 13px;
    transition: margin-top 0.3s ease, opacity 0.3s ease;
}

.drevjanka-top.hidden {
    margin-top: -100%;
    opacity: 0;
    pointer-events: none;
}

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

.header-social a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.header-social a:hover {
    opacity: 1;
}

.header-social svg {
    fill: #4f332f;
    display: block;
}

.header-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4f332f;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.header-contact a:hover {
    opacity: 1;
}

.header-contact svg {
    fill: #4f332f;
    flex-shrink: 0;
}

.header-brand {
    text-align: center;
    padding: 20px 40px;
}

.header-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.header-nav {
    padding: 0 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    opacity: 1;
}

.hamburger {
    display: none;
}

.header-main {
    display: block;
    text-align: center;
    padding: 20px 40px;
    position: relative;
}
/* ========================================
   INTRO SEKCIA
======================================== */

.intro-section {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    height: 80vh;
    position: relative;
}

.intro-image {
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fff;
}

.intro-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.intro-headline span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 800;
    line-height: 1;
    color: #3d1f1f;
    letter-spacing: -1px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 420px;
}

.btn-order {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3d1f1f;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
}

.btn-order:hover {
    background-color: #5a2e2e;
}

/* ========================================
   SCROLL ARROW
======================================== */

.scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: opacity 0.2s;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    opacity: 1;
}

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

/* ========================================
   VITEJTE SEKCIA
======================================== */

.vitejte-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    background-color: #fff;
    position: relative;
}

.vitejte-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to bottom, transparent, #3d1f1f);
}

.vitejte-text-block {
    width: 70%;
}

.vitejte-left {
    background-color: #fcf0e3;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
}

.vitejte-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    color: #3d1f1f;
}

.vitejte-headline span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.vitejte-claim {
    font-size: 50px;
    line-height: 1.2;
    font-style: italic;
    border-left: 2px solid #3d1f1f;
    color: #3d1f1f;
    padding-left: 24px;
    margin-top: 16px;
}

.vitejte-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fcf0e3;
}

.vitejte-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.vitejte-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
}

.vitejte-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3d1f1f;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.vitejte-link:hover {
    background-color: #5a2e2e;
    opacity: 1;
}

/* ========================================
   GALÉRIA
======================================== */

.gallery-section {
    background-color: #3d1f1f;
    padding: 40px 60px;
    position: relative;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to bottom, transparent, #fcf0e3);
}

.gallery-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 48px;
    text-align: center;
}

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

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

/* ========================================
   KONTAKT SEKCIA (homepage)
======================================== */

.contact-section {
    background-color: #fcf0e3;
    padding: 100px 60px;
}

.contact-inner {
    max-width: 860px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    color: #3d1f1f;
    letter-spacing: -1px;
    text-align: left;
    margin-bottom: 8px;
}

.contact-inner > p {
    font-size: 15px;
    color: #777;
    margin-bottom: 48px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(61,31,31,0.2);
    border-bottom: 2px solid rgba(61,31,31,0.3);
    font-size: 14px;
    font-family: inherit;
    color: #3d1f1f;
    background-color: transparent;
    outline: none;
    transition: border-color 0.2s;
    letter-spacing: 0.3px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(61,31,31,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3d1f1f;
    background-color: rgba(255,255,255,0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    align-self: flex-start;
    padding: 16px 48px;
    background-color: #3d1f1f;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.contact-form button:hover {
    background-color: #5a2e2e;
}

/* ========================================
   FOOTER
======================================== */

.drevjanka-footer {
    background-color: #3d1f1f;
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.footer-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-info a:hover {
    color: #fff;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-map {
    height: 400px;
    position: relative;
    overflow: hidden;
    align-self: center;
    margin: 40px 0;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 60px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    letter-spacing: 0.5px;
}

/* ========================================
   SCROLL TO TOP
======================================== */

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background-color: rgba(61, 31, 31, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 9998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: rgba(61, 31, 31, 0.85);
}

/* ========================================
   POLEDNÍ MENU / OBJEDNÁVKY
======================================== */

.menu-section {
    padding: 80px 60px;
    min-height: calc(100vh - 144px);
    background-color: #fcf0e3;
}

.menu-inner {
    max-width: 860px;
    margin: 0 auto;
}

.menu-inner h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    color: #3d1f1f;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 40px;
}

.menu-category {
    margin-bottom: 48px;
}

.menu-category-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #3d1f1f;
    letter-spacing: -0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(61,31,31,0.2);
    margin-bottom: 20px;
}

.food-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.food-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border: 1px solid rgba(61,31,31,0.1);
    background: rgba(255,255,255,0.6);
    transition: background 0.2s;
}

.food-item:hover {
    background: rgba(255,255,255,0.9);
}

.food-item-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #3d1f1f;
    margin-bottom: 4px;
}

.food-item-info p {
    font-size: 13px;
    color: #888;
}

.food-item-order {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.menu-price {
    font-size: 16px;
    font-weight: 600;
    color: #3d1f1f;
    white-space: nowrap;
}

.menu-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: #3d1f1f;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #5a2e2e;
}

.qty-value {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    color: #3d1f1f;
}

/* ========================================
   TABS
======================================== */

.order-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    border-bottom: 2px solid rgba(61,31,31,0.2);
}

.order-tab {
    padding: 12px 28px;
    background: none;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(61,31,31,0.4);
    transition: all 0.2s;
    font-family: 'Lato', sans-serif;
}

.order-tab.active {
    background: #3d1f1f;
    color: #fff;
}

.order-tab:hover:not(.active) {
    color: #3d1f1f;
}

.order-tab:focus {
    outline: none;
}

.order-notice {
    padding: 24px;
    background: rgba(255,255,255,0.5);
    color: #3d1f1f;
    font-size: 15px;
    border-left: 3px solid #3d1f1f;
}

/* Zhrnutie objednávky */
.order-summary {
    background: #fff;
    border: 1px solid rgba(61,31,31,0.1);
    padding: 40px;
    margin-top: 48px;
}

.order-summary h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #3d1f1f;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.order-summary #order-items p {
    font-size: 14px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid rgba(61,31,31,0.08);
}

.order-total {
    font-size: 18px;
    color: #3d1f1f;
    margin: 24px 0 32px;
    font-weight: 600;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-form input,
.order-form textarea {
    padding: 16px 20px;
    border: 1px solid rgba(61,31,31,0.2);
    border-bottom: 2px solid rgba(61,31,31,0.3);
    font-size: 14px;
    font-family: inherit;
    color: #3d1f1f;
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(61,31,31,0.4);
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: #3d1f1f;
    background: rgba(255,255,255,0.5);
}

.order-form button {
    align-self: flex-start;
    padding: 16px 48px;
    background: #3d1f1f;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.order-form button:hover {
    background: #5a2e2e;
}

/* ========================================
   PIZZA MODAL
======================================== */

#pizza-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-box {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 1;
}

.modal-box h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #3d1f1f;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.modal-prisady {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 32px;
}

.prisada-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(61,31,31,0.1);
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.prisada-item:hover {
    background: #fcf0e3;
}

.prisada-item input {
    flex-shrink: 0;
    accent-color: #3d1f1f;
}

.prisada-price {
    margin-left: auto;
    color: #3d1f1f;
    font-weight: 600;
    white-space: nowrap;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.modal-btn-skip {
    padding: 12px 24px;
    background: none;
    border: 1px solid #3d1f1f;
    color: #3d1f1f;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-btn-skip:hover {
    background: #3d1f1f;
    color: #fff;
}

.modal-btn-confirm {
    padding: 12px 24px;
    background: #3d1f1f;
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn-confirm:hover {
    background: #5a2e2e;
}

/* ========================================
   KONTAKT STRÁNKA
======================================== */

.kontakt-section {
    background-color: #fcf0e3;
    min-height: calc(100vh - 144px);
    padding: 80px 60px;
}

.kontakt-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.kontakt-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    color: #3d1f1f;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
}

.kontakt-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(61,31,31,0.3);
    margin-bottom: 40px;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontakt-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.kontakt-info strong {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3d1f1f;
    display: block;
    margin-bottom: 4px;
}

.kontakt-info a {
    color: #3d1f1f;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.kontakt-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.kontakt-social a {
    color: #3d1f1f;
    opacity: 0.7;
    transition: opacity 0.2s;
    text-decoration: none;
}

.kontakt-social a:hover {
    opacity: 1;
}

.kontakt-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kontakt-map iframe {
    display: block;
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.kontakt-map iframe:hover {
    filter: grayscale(0%);
}

.order-tab:focus {
    outline: none;
}

/* ========================================
   RESPONZIVITA
======================================== */

@media (max-width: 768px) {

    /* HEADER */
    .drevjanka-top {
        padding: 8px 20px;
        font-size: 11px;
    }

    .header-contact span {
        display: none;
    }

    .header-brand {
        padding: 0;
    }

    .header-brand a {
        font-size: 18px;
    }

    .header-nav {
        display: none;
        padding: 0;
    }

    .nav-menu {
        gap: 0;
        flex-direction: column;
    }

    .nav-menu li a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-main {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 20px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        position: absolute;
        right: 20px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-nav.open {
        display: block;
    }   







    /* INTRO SEKCIA */
    .intro-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .intro-image {
        height: 300px;
    }

    .intro-content {
        padding: 40px 24px;
    }

    .intro-content p {
        max-width: 100%;
    }

    .btn-order {
        align-self: stretch;
        text-align: center;
    }

    /* VITEJTE SEKCIA */
    .vitejte-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .vitejte-left {
        padding: 48px 24px;
    }

    .vitejte-text-block {
        width: 100%;
    }

    .vitejte-headline span {
        font-size: clamp(40px, 12vw, 64px);
    }

    .vitejte-claim {
        font-size: 24px;
    }

    .vitejte-right {
        padding: 40px 24px;
    }

    .vitejte-links {
        flex-direction: column;
    }

    .vitejte-link {
        text-align: center;
    }

    /* GALÉRIA */
    .gallery-section {
        padding: 40px 20px;
    }

    .gallery-grid {
        columns: 2;
    }

    /* KONTAKT SEKCIA */
    .contact-section {
        padding: 60px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-info {
        padding: 40px 24px;
    }

    .footer-map {
        height: 250px;
        margin: 0;
        width: 100%;
    }

    .footer-bottom {
        padding: 16px 24px;
    }

    /* OBJEDNÁVKY */
    .menu-section {
        padding: 40px 20px;
    }

    .order-tab {
        padding: 10px 14px;
        font-size: 11px;
    }

    .food-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .food-item-order {
        width: 100%;
        justify-content: space-between;
    }

    /* KONTAKT STRÁNKA */
    .kontakt-section {
        padding: 48px 24px;
    }

    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* PIZZA MODAL */
    .modal-box {
        padding: 24px;
    }

    .modal-prisady {
        grid-template-columns: 1fr;
    }

    /* SCROLL TOP */
    .scroll-top {
        bottom: 16px;
        right: 16px;
    }

    .scroll-arrow {
        display: none;
    }



}