.home {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('./../imgs/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 640px) {
    .review-btn {
        display: none;
    }
}

.home-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 150px;
    width: 100%;
    margin-top: 150px;
}

.home-content {
    max-width: 650px;
    color: white;
    z-index: 10;
}

.home-content h1 {
    font-size: 52px;
    font-weight: 500;
    margin: 0 0 15px 0;
    letter-spacing: 3px;
    line-height: 1.2;
    color: #e0e0e0;
    font-family: "Bebas Neue", sans-serif;
}

.home-content h2 {
    font-size: 72px;
    font-weight: 900;
    margin: 0 0 40px 0;
    color: #fff;
    line-height: 1.1;
    font-family: "Bebas Neue", sans-serif;
}

.home-content h2 br+* {
    color: #d32f2f;
}

.home-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #b0b0b0;
    max-width: 550px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.home-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

.btn-primary {
    background-color: #E31B20;
    color: white;
    border-color: #d32f2f;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #b52525;
    border-color: #b52525;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    height: 100%;
}

.btn-secondary:hover {
    color: #ffffff;
}

.home-logo {
    display: none;
}

/* Active nav link styling */
.nav-b-menu a {
    opacity: 1;
    transition: color 0.22s ease;
}
.nav-b-menu {
    color: var(--color-text); /* vyšší kontrast pro desktop */
}


.nav-b-menu a.active {
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
}

.nav-b-menu a:not(.active):hover {
    color: #fff;
}

/* Responsivní design */

/* 4K a vyšší */
@media (min-width: 3840px) {
    .home {
        height: 100vh;
    }

    .home-container {
        padding: 0px 300px;
        margin-top: 200px;
    }

    .home-content {
        max-width: 900px;
    }

    .home-content h1 {
        font-size: 80px;
    }

    .home-content h2 {
        font-size: 120px;
    }

    .home-content p {
        font-size: 24px;
        margin-bottom: 70px;
    }

    .btn {
        padding: 25px 70px;
        font-size: 18px;
    }
}

/* 2K / Ultrawide */
@media (min-width: 2560px) and (max-width: 3839px) {


    .home-container {
        padding: 0px 250px;

    }

    .home-content h1 {
        font-size: 70px;
    }

    .home-content h2 {
        font-size: 100px;
        margin-bottom: 50px;
    }

    .home-content p {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .btn {
        padding: 22px 60px;
        font-size: 16px;
    }
}

/* Desktop XL (1920px) */
@media (min-width: 2000px) {
    .home-container {
        padding: 0px 200px;
    }

    .home-content h1 {
        font-size: 7em;
    }

    .home-content h2 {
        font-size: 8em;
    }

    .home-content p {
        font-size: 1.5em;
    }

    .btn {
        padding: 20px 55px;
        font-size: 15px;
    }
}

/* Tablet landscape (1280px - 1667px) */
@media (max-width: 1280px) {
    .home-container {
        padding: 0px 80px;
        justify-content: center;
    }

    .home-content {
        max-width: 600px;
        text-align: center;
    }

    .home-content h1 {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .home-content h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .home-content p {
        font-size: 15px;
        margin-bottom: 40px;
        color: #f3e3e3;
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        max-width: 550px;
    }

    .home-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .btn {
        padding: 16px 40px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

/* Tablet (768px - 1279px) */
@media (max-width: 768px) {
    .home-logo {
        width: 30%;
        height: auto;
        display: block;
        filter: invert(2);
        margin-top: 60px
    }

    .home {
        height: 100vh;
        padding: 0px 0 0px 0;
        margin-top: 0px;
        flex-direction: column;
    }

    .home-container {
        padding: 0px 40px;
        margin-top: 10px;
        justify-content: center;
    }

    .home-content {
        max-width: 100%;
        text-align: center;
    }

    .home-content h1 {
        font-size: 4.2em;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .home-content h2 {
        font-size: 4em;
        margin-bottom: 25px;
    }

    .home-content p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 35px;
        color: #f3e3e3;
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        max-width: 100%;
    }

    .home-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}

/* Mobil (480px - 767px) */
@media (max-width: 480px) {
    .home-logo {
        width: 40%;
        height: auto;
        display: block;
        filter: invert(2);
    }

    .home {
        height: 100vh;
        padding: 0px 0 40px 0;
        background-position: center;
        margin-top: 0;
    }

    .home-container {
        padding: 0px 20px;
        margin-top: 10px;
        justify-content: center;
    }

    .home-content {
        max-width: 100%;
        text-align: center;
    }

    .home-content h1 {
        font-size: 4.2em;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .home-content h2 {
        font-size: 4em;
        margin-bottom: 25px;
    }


    .home-content p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 35px;
        color: #f3e3e3;
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        max-width: 100%;
    }

    .home-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 11px;
        width: 100%;
        text-align: center;
        letter-spacing: 1px;
    }
}

/* Mobil XS (do 360px) */
@media (max-width: 360px) {
    .home-logo {
        width: 40%;
        height: auto;
        display: block;
        filter: invert(2);
    }

    .home {
        height: 100vh;
        padding: 0px 0 40px 0;
        background-position: center;
        margin-top: 0;
    }

    .home-container {
        padding: 0px 20px;
        margin-top: 10px;
        justify-content: center;
    }

    .home-content {
        max-width: 100%;
        text-align: center;
    }

    .home-content h1 {
        font-size: 4.2em;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .home-content h2 {
        font-size: 4em;
        margin-bottom: 25px;
    }


    .home-content p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 35px;
        color: #f3e3e3;
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
        max-width: 100%;
    }


    .btn {
        padding: 10px 25px;
        font-size: 10px;
    }
}







/* reservation (minimal, brand-aligned) */

.reservation {
    position: relative;
    width: 100%;
    background-color: #0a0a0f; /* match neighbouring sections */
    padding: 64px 0;
    z-index: 2;
}

.reservation-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 150px;
    text-align: center;
}

.reservation h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

.reservation-sub {
    color: #b0b0b0;
    margin-bottom: 22px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.reservation .reservation-cta {
    border-radius: 999px;
    padding: 14px 48px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(227,27,32,0.16);
    transition: transform .15s ease, box-shadow .15s ease;
}

.reservation .reservation-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
    .reservation-container { padding: 0 30px; }
    .reservation h2 { font-size: 34px; }
    .reservation .reservation-cta { width: 100%; padding: 14px; max-width: 420px; display: inline-block; }
}

/* section about */

.about {
    position: relative;
    width: 100%;
    background-color: #0a0a0f;
    padding: 100px 0;
    z-index: 0; /* sníženo, aby modal galerie byl vždy nad touto sekcí */
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 150px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(225, 6, 0, 0.3);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    border-color: rgba(225, 6, 0, 0.6);
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1) 0%, rgba(225, 6, 0, 0.05) 100%);
    transform: translateY(-10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(225, 6, 0, 0.2);
    border: 2px solid #E31B20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    background-color: #E31B20;
    transform: scale(1.1) rotate(10deg);
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: #E31B20;
    transition: color 0.3s ease;
}

.about-card:hover .card-icon svg {
    color: #fff;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-card p {
    font-size: 14px;
    color: #a8a8a8;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.about-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(225, 6, 0, 0.1) 0%, rgba(225, 6, 0, 0.05) 100%);
    border: 1px solid rgba(225, 6, 0, 0.2);
    border-radius: 8px;
}

.about-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

/* About Responsive */

/* 2K / Ultrawide */
@media (min-width: 2560px) {
    .about-container {
        padding: 0 300px;
    }

    .about-header h2 {
        font-size: 100px;
        margin-bottom: 30px;
    }

    .about-subtitle {
        font-size: 22px;
    }

    .about-grid {
        gap: 40px;
        margin-bottom: 100px;
    }

    .about-card {
        padding: 50px 40px;
    }

    .card-icon {
        width: 90px;
        height: 90px;
    }

    .card-icon svg {
        width: 45px;
        height: 45px;
    }

    .about-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about-card p {
        font-size: 16px;
    }

    .about-cta h3 {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

/* Tablet landscape (1280px) */
@media (max-width: 1280px) {
    .about-container {
        padding: 0 80px;
    }

    .about-header h2 {
        font-size: 56px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 60px;
    }

    .about-card {
        padding: 35px 25px;
    }

    .about-card h3 {
        font-size: 16px;
    }

    .about-card p {
        font-size: 13px;
    }

    .about-cta h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 40px;
    }

    .about-header {
        margin-bottom: 60px;
    }

    .about-header h2 {
        font-size: 44px;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .about-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 12px;
    }

    .about-cta {
        padding: 40px 30px;
    }

    .about-cta h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Mobil (480px) */
@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .about-header h2 {
        font-size: 36px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .about-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .about-card {
        padding: 25px 18px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-card h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-card p {
        font-size: 11px;
        line-height: 1.6;
    }

    .about-cta {
        padding: 30px 20px;
    }

    .about-cta h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 11px;
    }
}

/* Mobil XS (do 360px) */
@media (max-width: 360px) {
    .about-container {
        padding: 0 15px;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .about-card h3 {
        font-size: 13px;
    }

    .about-card p {
        font-size: 10px;
    }

    .about-cta h3 {
        font-size: 18px;
    }
}




/* section services */
/* section services */
.services {
    position: relative;
    width: 100%;
    background-color: #0a0a0f;
    padding: 100px 0;
    z-index: 2;
    min-height: 110vh;
    background-image: url('./../imgs/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-container {
    width: 80%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.services-container h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 80px;
    width: fit-content;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    text-align: left;
    align-self: flex-start;
}

.services-container h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #E31B20;
    margin-top: -20px;
    margin-right: auto;
}

.services-grid {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: start;
}

.services-grid-block {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.service-card {
    width: 100%;
    height: fit-content;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 3px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-grid-block:nth-child(1) .service-card {
    border-image: linear-gradient(90deg, transparent 0%, #E31B20 100%) 1;
}

.services-grid-block:nth-child(1) .service-card:hover {
    border-image: linear-gradient(90deg, transparent 0%, #ff4444 100%) 1;
}

.services-grid-block:nth-child(2) .service-card {
    border-image: linear-gradient(90deg, #E31B20 0%, transparent 100%) 1;
}

.services-grid-block:nth-child(2) .service-card:hover {
    border-image: linear-gradient(90deg, #ff4444 0%, transparent 100%) 1;
}

.service-card:hover {
    background: rgba(225, 27, 32, 0.08);
    transform: translateX(5px);
}

.service-card .service-icon {
    width: 100px;
    height: 100%;
    grid-column: span 1 / span 1;
    grid-row: span 5 / span 5;
    padding-right: 5px;
}

.service-card .service-icon svg {
    width: 100%;
    height: auto;
    object-fit: contain;
    color: #E31B20;
}

.service-card h3 {
    display: block;
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    color: #fff;
    font-size: 3.2em;
    font-weight: 700;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.service-card p {
    display: block;
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 3;
    color: #a8a8a8;
    font-size: 1em;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

.service-card a {
    grid-column: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 5;
    color: #E31B20;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #ff4444;
}

/* Services Responsive */

@media (max-width: 1280px) {
    .services {
        padding: 80px 0;
        min-height: auto;
    }

    .services-container {
        width: 90%;
        padding: 0 30px;
    }

    .services-container h2 {
        font-size: 56px;
        margin-bottom: 60px;
    }

    .services-grid {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-block {
        width: 100%;
        gap: 30px;
    }
        .services-grid-block:nth-child(1) .service-card {
        border-image: none;
        border-bottom: 2px solid;
        border-image: linear-gradient(90deg, #E31B20, #E31B20) 1;
    }

    .services-grid-block:nth-child(1) .service-card:hover {
        border-image: linear-gradient(90deg, #ff4444, #ff4444) 1;
    }

    .services-grid-block:nth-child(2) .service-card {
        border-image: none;
        border-bottom: 2px solid;
        border-image: linear-gradient(90deg, #E31B20, #E31B20) 1;
    }

    .services-grid-block:nth-child(2) .service-card:hover {
        border-image: linear-gradient(90deg, #ff4444, #ff4444) 1;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
        min-height: auto;
    }

    .services-container {
        width: 95%;
        padding: 0 20px;
    }

    .services-container h2 {
        font-size: 44px;
        margin-bottom: 50px;
    }

    .services-grid-block {
        width: 100%;
        gap: 25px;
    }


}

@media (max-width: 480px) {
    .services-container h2::after {
        content: '';
        display: block;
        width: 120px;
        height: 4px;
        background-color: #E31B20;
        margin-top: 0px;
        margin-right: auto;
    }

    .services {
        padding: 40px 0;
    }

    .services-container {
        width: 100%;
        padding: 0 10px;
    }

    .services-container h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .services-grid-block {
        width: 100%;
        gap: 15px;
        padding: 0;
    }

    .service-card {
        width: 100%;
        height: fit-content;
        padding: 5px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 3px solid transparent;
        border-radius: 4px;
    }

    .service-card .service-icon {
        width: 70px;
        height: 70px;
        grid-column: 1;
        grid-row: 1 / 3;
        padding: 0;
        flex-shrink: 0;
    }

    .service-card .service-icon svg {
        width: 100%;
        height: 100%;
    }

    .service-card h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.2em;
        margin: 0;
        padding: 0;
    }

    .service-card p {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.85em;
        margin: 0;
        padding: 0;
    }

    .service-card a {
        grid-column: 1;
        grid-row: 3;
        font-size: 13px;
        padding: 8px 15px;
        border-radius: 4px;
        display: inline-block;
        margin: 0;
    }
}




/* section pricing */
.pricing {
    position: relative;
    width: 100%;
    background-color: #0a0a0f;
    padding: 100px 0;
    z-index: 2;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 150px;
}

.pricing-container h2 {
    font-size: 86px;
    font-weight: 900;
    margin-bottom: 80px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.pricing-container h2::before {
    content: '✂ ✂ ✂';
    display: block;
    font-size: 24px;
    color: #E31B20;
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(227, 27, 32, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    border-bottom-color: #E31B20;
}

.pricing-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.pricing-item .price {
    position: absolute;
    top: 30px;
    right: 0;
    color: #E31B20;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.pricing-item .description {
    color: #a8a8a8;
    font-size: 18px;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding-right: 150px;
}

.pricing-item .tagline {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.55;
    font-family: "Inter", sans-serif;
    margin: 12px 0 0 0;
    padding-right: 150px;
}

/* Pricing Responsive */

@media (max-width: 1280px) {
    .pricing-container {
        padding: 0 80px;
    }

    .pricing-container h2 {
        font-size: 68px;
        margin-bottom: 60px;
    }

    .pricing-grid {
        gap: 60px;
    }

    .pricing-item {
        padding: 25px 0;
    }

    .pricing-item h3 {
        font-size: 23px;
    }

    .pricing-item .price {
        font-size: 20px;
    }

    .pricing-item .description {
        font-size: 16px;
        padding-right: 130px;
    }

    .pricing-item .tagline {
        font-size: 14px;
        padding-right: 130px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-container {
        padding: 0 40px;
    }

    .pricing-container h2 {
        font-size: 56px;
        margin-bottom: 50px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-item {
        padding: 20px 0;
    }

    .pricing-item h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pricing-item .price {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 12px;
        display: inline-block;
        font-size: 25px;
    }

    .pricing-item .description {
        font-size: 16px;
        padding-right: 0;
    }

    .pricing-item .tagline {
        font-size: 14px;
        padding-right: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .pricing-container h2 {
        font-size: 46px;
        margin-bottom: 40px;
    }

    .pricing-container h2::before {
        font-size: 18px;
        margin-bottom: 15px;
        letter-spacing: 6px;
    }

    .pricing-grid {
        gap: 30px;
    }

    .pricing-item {
        padding: 18px 0;
    }

    .pricing-item h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .pricing-item .price {
        font-size: 22px;
    }

    .pricing-item .description {
        font-size: 15px;
        line-height: 1.6;
    }

    .pricing-item .tagline {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* CSS Custom Properties for Gallery - Modern Minimalist */
:root {
    --gallery-gap: 12px;
    --gallery-overlay-opacity: 0;
    --gallery-overlay-opacity-hover: 0.85;
    --gallery-transition-duration: 0.35s;
    --gallery-transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* section gallery */
.gallery {
    position: relative;
    width: 100%;
    background-color: #0a0a0f;
    padding: 100px 0;
    z-index: 2;
}

.gallery-container {
    width: 100%;
    margin: 0;
    padding: 0 40px;
}

.gallery-container h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.gallery-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 60px;
    font-family: "Inter", sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    grid-auto-rows: 300px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #000;
    border: none;
    transition: all var(--gallery-transition-duration) var(--gallery-transition-timing);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    border-color: transparent;
    box-shadow: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--gallery-transition-duration) var(--gallery-transition-timing), filter var(--gallery-transition-duration) var(--gallery-transition-timing);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: var(--gallery-overlay-opacity);
    transition: opacity var(--gallery-transition-duration) var(--gallery-transition-timing);
    padding: 0;
}

.gallery-item:hover .gallery-overlay {
    opacity: var(--gallery-overlay-opacity-hover);
}

.gallery-link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all var(--gallery-transition-duration) var(--gallery-transition-timing);
    font-family: "Inter", sans-serif;
    letter-spacing: 1.2px;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-link:hover {
    background-color: rgba(227, 27, 32, 0.9);
    color: #fff;
    border-color: #E31B20;
}

/* Gallery Responsive */

@media (max-width: 1280px) {
    .gallery-container {
        padding: 0 30px;
    }

    .gallery-container h2 {
        font-size: 56px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        grid-auto-rows: 260px;
        gap: 0;
    }

    .gallery-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery-container {
        padding: 0 24px;
    }

    .gallery-container h2 {
        font-size: 44px;
        margin-bottom: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        gap: 0;
    }

    .gallery-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .gallery-link {
        font-size: 12px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-container {
        padding: 0 16px;
    }

    .gallery-container h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        grid-auto-rows: 140px;
        gap: 0;
    }

    .gallery-subtitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .gallery-link {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 0.5px;
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: transparent;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    border-radius: 0;
}

.modal-close:hover {
    background: transparent;
    color: #E31B20;
    transform: scale(1.2) rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    z-index: 2001;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    background: transparent;
    color: #E31B20;
    border-color: #E31B20;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Hide nav when modal is open */
body.modal-open nav {
    display: none;
}

/* section references */
.references {
    position: relative;
    width: 100%;
    background-color: #0a0a0f;
    padding: 100px 0;
    z-index: 2;
}

.references-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 150px;
}

.references-container h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.references-container > p {
    font-size: 18px;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 60px;
    font-family: "Inter", sans-serif;
}

.review-carousel {
    position: relative;
    width: 100%;
}

/* wrapper around carousel and arrows, same width and centered */
/* HTML uses underscore class name; support both for backwards compatibility */
.reviews_box,
.reviews-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;      /* match carousel container width */
    max-width: 100%;
    /* height:auto lets carousel determine its own height; earlier fixed value broke layout */
    height: auto;
}

/* ensure arrows sit close to carousel content (no extra margins) */
.r_control {
    /* existing absolute positioning remains */
}

/* new control wrappers placed outside carousel cards
   left and right button containers */
.r_control {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;          /* vertical centering by auto top/bottom */
    z-index: 2;
    display: flex;
    align-items: center;
}
.r_control.l {
    /* strongly offset to sit outside carousel */
    left: -100px;
}
.r_control.r {
    right: -100px;
}
.r_control .review-btn {
    /* compact square arrow box with thin red border */
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(19, 16, 16, 0.329);
    border: 2px solid #E31B20;
    color: #E31B20;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: background 0.2s, color 0.2s, transform 0.1s;
}
.r_control .review-btn:hover {
    background: #E31B20;
    color: #fff;
    transform: translateY(-2px);
}
.r_control .review-btn:active {
    transform: translateY(0);
}

/* hide review navigation buttons on mobile */


.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(227, 27, 32, 0.2);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(227, 27, 32, 0.1) 0%, transparent 100%);
    transition: top 0.4s ease;
    z-index: 0;
}

.review-card:hover {
    border-color: #E31B20;
    transform: translateY(-8px);
}

.review-card:hover::before {
    top: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    /* scaled up 50% from original 48px */
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(227, 27, 32, 0.2);
    border: 2px solid #E31B20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar-initial {
    font-size: 18px;
    font-weight: 700;
    color: #E31B20;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
}

.review-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.review-date {
    font-size: 11px;
    color: #888;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.review-rating {
    font-size: 12px;
    color: #FFD700;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

/* google reviews link styled as button with star count */
.google-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #E31B20;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.google-button:hover {
    background-color: #c2171a;
}

.google-button .btn-text {
    white-space: nowrap;
}

/* container for rating summary under heading */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    margin: 20px auto 30px;
    /* make same width as carousel (full inner width) */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* slide instruction note shown on narrow screens */
.review-slide-note {
    display: none;
    text-align: center;
    font-size: 13px;
    color: #fff;
    margin: 8px 0 0;
    font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
    .review-slide-note {
        display: block;
    }
}

/* ensure references container centers children */
.references-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* hide header toggle arrow, not needed in summary block */
.rating-summary #headerToggle {
    display: none;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.rating-stars {
    color: #FFD700;
    font-size: 16px;
}

.rating-info .rating-number,
.rating-info .rating-count {
    font-weight: 600;
}

/* reposition google-button horizontally aligned */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    margin: 20px auto 30px;
    max-width: fit-content;
}

.review-text {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-controls {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.review-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0; /* container for absolutely positioned buttons */
    pointer-events: none; /* allow overlay but buttons themselves handle events */
    z-index: 2;
}

.review-controls .review-btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.review-controls .review-btn#prevBtn {
    left: 5px;
}

.review-controls .review-btn#nextBtn {
    right: 5px;
}

.review-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(227, 27, 32, 0.4);
    background: rgba(227, 27, 32, 0.1);
    color: #E31B20;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.review-btn:hover {
    background-color: #E31B20;
    color: #fff;
    border-color: #E31B20;
    transform: scale(1.1);
}

.review-btn:active {
    transform: scale(0.95);
}

.review-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* References Responsive */

@media (max-width: 1280px) {
    .references-container {
        padding: 0 80px;
    }

    .references-container h2 {
        font-size: 56px;
    }

    .references-container > p {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
        padding: 25px;
    }

    .review-avatar {
        /* 44 -> ~66px when scaled 50% */
        width: 66px;
        height: 66px;
    }

    .review-avatar-initial {
        font-size: 16px;
    }

    .review-author {
        font-size: 12px;
    }

    .review-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 80px 0;
    }

    .references-container {
        padding: 0 40px;
    }

    .references-container h2 {
        font-size: 44px;
        margin-bottom: 15px;
    }

    .references-container > p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 22px;
    }

    .review-header {
        gap: 10px;
    }

    .review-avatar {
        /* 40 -> 60px */
        width: 60px;
        height: 60px;
    }

    .review-avatar-initial {
        font-size: 14px;
    }

    .review-author {
        font-size: 12px;
    }

    .review-date {
        font-size: 10px;
    }

    .review-text {
        font-size: 13px;
    }

    .review-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .references {
        padding: 60px 0;
    }

    .references-container {
        padding: 0 20px;
    }

    .references-container h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .references-container > p {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 18px;
        min-width: 280px;
    }

    .review-header {
        gap: 10px;
    }

    .review-avatar {
        /* 38 -> 57px */
        width: 57px;
        height: 57px;
    }
    .review-avatar-initial {
        font-size: 13px;
    }

    .review-author {
        font-size: 11px;
    }

    .review-date {
        font-size: 9px;
    }

    .review-rating {
        font-size: 11px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .review-controls {
        /* keep absolute overlay behaviour even on smaller screens */
        gap: 10px;
        margin-top: 15px;
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        height: 0;
    }

    .review-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
        display: none;
    }
}

/* section opening hours */
.opening-hours {
    position: relative;
    width: 100%;
    background: #0a0a0f;
    padding: 30px 0;
    z-index: 2;
}

.opening-hours-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 150px;
}

.opening-hours h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    text-align: left;
}

.opening-hours #today-status {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    margin: 0 0 18px 0;
    letter-spacing: 0.5px;
    display: block;
}

.hours-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(227, 27, 32, 0.05);
    border: 1px solid rgba(227, 27, 32, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.hours-item:hover {
    background: rgba(227, 27, 32, 0.1);
    border-color: rgba(227, 27, 32, 0.4);
    transform: translateY(-2px);
}

.hours-item .day {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hours-item .time {
    font-size: 11px;
    font-weight: 500;
    color: #ccc;
    font-family: "Inter", sans-serif;
}

.hours-item .time.closed {
    color: #E31B20;
    opacity: 0.8;
}

/* Opening Hours Responsive */

@media (max-width: 1280px) {
    .opening-hours-container {
        padding: 0 80px;
    }

    .opening-hours #today-status {
        font-size: 15px;
    }

    .hours-list {
        gap: 10px;
    }

    .hours-item {
        padding: 10px 6px;
    }

    .hours-item .day {
        font-size: 10px;
    }

    .hours-item .time {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .opening-hours {
        padding: 22px 0;
    }

    .opening-hours-container {
        padding: 0 40px;
    }

    .opening-hours h3 {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .opening-hours #today-status {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .hours-list {
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    .hours-item {
        padding: 10px 6px;
    }

    .hours-item .day {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .hours-item .time {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .opening-hours {
        padding: 18px 0;
    }

    .opening-hours-container {
        padding: 0 20px;
    }

    .opening-hours h3 {
        font-size: 9px;
        margin-bottom: 10px;
    }

    .opening-hours #today-status {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hours-list {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }

    .hours-item {
        padding: 8px 4px;
    }

    .hours-item .day {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .hours-item .time {
        font-size: 9px;
    }
}

/* Modal Responsive */

@media (max-width: 768px) {
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
        padding: 8px 12px;
    }

    .modal-prev,
    .modal-next {
        font-size: 20px;
        padding: 10px 14px;
        height: 44px;
        width: 44px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-content img {
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 28px;
        padding: 6px 10px;
    }

    .modal-prev,
    .modal-next {
        font-size: 18px;
        padding: 8px 12px;
        height: 40px;
        width: 40px;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-content img {
        max-height: 75vh;
    }
}

/* Final mobile override: keep review arrows hidden even when JS updates button styles. */
@media (max-width: 640px) {
    .review-btn,
    #prevBtn,
    #nextBtn,
    #headerToggle {
        display: none !important;
    }
}
