/* -------------------------------------------------------------------------- */
/* --------------------------- Import Google Fonts -------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Playfair+Display:wght@100..900&display=swap');


/* -------------------------------------------------------------------------- */
/* -------------------- CSS Custom Properties (Variables) ------------------- */

:root {
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --primary: #ffb2c6;
    --primary-light: #fff3f7;

    --secondary: #DEF3F8;
    --secondary-light: #effdff;

    /* --tertiary: #ffb2c6; */
    --tertiary-light: #fffaea;

    /* --quaternary: #ffb2c6; */
    --quaternary-light: #fff2ea;

    --bg-white: #ffffff;
    --bg-black: #000000;

    --text-white: #ffffff;
    --text-black: #000000;
    --text-dim-gray: #555555;
    --text-silver: #c0c0c0;
    --text-green: #00a651;
    --text-red: #a60006;

    --border-white: #ffffff;
    --border-black: #000000;
    --border-gainsboro: #e6e6e6;
    --border-dim-gray: #555555;

    --slider-jet-gray: #333;
    --slider-light-gray: #ccc;
}


/* -------------------------------------------------------------------------- */
/* ---------------------- Basic Reset and Global Styles --------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

a {
    text-decoration: none;
}

p {
    font-weight: 500;
}

.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 568px) {
    .br_tag {
        display: none;
    }
}

/* ---------- Top Head Content ---------- */
.section_head_content {
    margin-bottom: 60px;
}

.section_head_content.center {
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.section_head_content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section_head_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim-gray);
}

@media (max-width: 568px) {
    .section_head_content {
        margin-bottom: 40px;
    }

    .section_head_content.center_head_content {
        margin-bottom: 40px;
    }

    .section_head_content h1 {
        font-size: 34px;
    }

    .section_head_content p {
        font-size: 14px;
    }
}

/* ---------- Buttons ---------- */
.btn_primary {
    background-color: var(--primary);
    border: none;
    color: var(--text-black);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn_outline {
    background: none;
    border: 1.5px solid var(--primary);
    color: var(--text-black);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn_outline:hover {
    background-color: var(--primary-light);
}

@media (max-width: 480px) {

    .btn_primary,
    .btn_outline {
        font-size: 14px;
        border-radius: 10px;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------------- Header --------------------------------- */

/* Top Banner */
.top_banner {
    background-color: var(--primary);
}

.top_banner .header_banner {
    color: var(--text-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.top_banner .header_banner .header_banner_close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Desktop Navbar */
.header_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-white);
}

.header_nav .header_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_nav .header_logo img {
    height: 38px;
}

.header_nav .header_links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.header_nav .header_links a {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_nav .header_links a:hover {
    color: var(--text-dim-gray);
}

.header_nav .header_icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header_nav .header_icons button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-black);
}

.header_nav .header_mobile_open {
    display: none;
    font-size: 22px;
}

/* Mobile Sidebar Menu */
.header_mobile_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%;
    max-width: 320px;
    background: var(--primary-light);
    color: var(--text-black);
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.header_mobile_menu.active {
    transform: translateX(0);
}

.header_mobile_menu .header_mobile_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-black);
}

.header_mobile_menu .header_mobile_links {
    list-style: none;
    width: 100%;
}

.header_mobile_menu .header_mobile_links li {
    margin: 25px 0;
    text-align: left;
}

.header_mobile_menu .header_mobile_links a {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-black);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_mobile_menu .header_mobile_links a:hover {
    color: var(--text-dim-gray);
}

/* Desktop Navbar  > Header Dropdown Link */
.header_nav .header_dropdown {
    position: relative;
}

.header_nav .header_dropdown_btn {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    color: var(--text-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_nav .header_dropdown_btn:hover {
    color: var(--text-dim-gray);
}

.header_nav .header_dropdown_menu {
    position: absolute;
    top: 160%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-gainsboro);
    display: none;
    flex-direction: column;
    min-width: 130px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
}

.header_nav .header_dropdown_menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-black);
    border-radius: 8px;
}

.header_nav .header_dropdown_menu li a:hover {
    color: var(--text-dim-gray);
}

.header_nav .header_dropdown.open .header_dropdown_menu {
    display: flex;
}

/* Mobile Sidebar Menu > Header Dropdown Link */
.header_mobile_menu .header_mobile_dropdown {
    position: relative;
}

.header_mobile_menu .header_mobile_dropdown_btn {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_mobile_menu .header_mobile_dropdown_btn:hover {
    color: var(--text-dim-gray);
}

.header_mobile_menu .header_mobile_dropdown_menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--text-black);
}

.header_mobile_menu .header_mobile_dropdown_menu li {
    margin: 0px 0;
}

.header_mobile_menu .header_mobile_dropdown_menu a {
    font-size: 16px;
    color: var(--text-black);
}

.header_mobile_menu .header_mobile_dropdown.open .header_mobile_dropdown_menu {
    display: flex;
}

.header_nav .header_dropdown_btn i,
.header_mobile_menu .header_mobile_dropdown_btn i {
    transition: transform 0.3s ease;
}

.header_nav .header_dropdown.open .header_dropdown_btn i,
.header_mobile_menu .header_mobile_dropdown.open .header_mobile_dropdown_btn i {
    transform: rotate(180deg);
}

/* Header Overlay (when mobile menu is open) */
.header_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.header_overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Responsive */
@media (max-width: 768px) {
    .header_nav .header_logo img {
        height: 30px;
    }

    .top_banner .header_banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .top_banner .header_banner .header_banner_close {
        position: relative;
        right: 0;
    }

    .header_nav {
        padding: 16px 20px;
    }

    .header_nav .header_links {
        display: none;
    }

    .header_nav .header_mobile_open {
        display: block;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------------- Footer --------------------------------- */

.footer {
    background: var(--bg-black);
    color: var(--text-white);
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Left side */
.footer_left .footer_logo {
    display: block;
    margin-bottom: 25px;
}

.footer_left .footer_logo img {
    height: 38px;
}

.footer_left .footer_info p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer_left .footer_info a {
    color: var(--text-white);
    text-decoration: underline;
}

.footer_left .footer_info a:hover {
    color: var(--primary);
}

.footer_left .footer_socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer_left .footer_socials a {
    color: var(--text-white);
    font-size: 18px;
    border-radius: 100%;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer_left .footer_socials a:hover {
    color: var(--primary);
}

/* Footer links */
.footer_links {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer_links ul {
    list-style: none;
}

.footer_links li {
    margin-bottom: 15px;
}

.footer_links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.footer_links a:hover {
    color: var(--primary);
}

/* Footer Copyright */
.footer_bottom {
    border-top: 1px solid var(--border-dim-gray);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 900px) {
    .footer_container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .footer_left .footer_socials {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer_links ul {
        padding: 0;
        text-align: center;
    }

    .footer_bottom {
        font-size: 13px;
        text-align: center;
    }
}

/* -------------------------------------------------------------------------- */
/* -------------------------- Pages Common Sections ------------------------- */

/* ---------- Split Section ---------- */
.schankraum_split_section {
    background-color: var(--primary-light);
}

.lohnproduktion_split_section {
    background-color: var(--secondary-light);
}

.brauerei_fuer_kiel_split_section {
    background-color: var(--tertiary-light);
}

.brauerei_schankraum_split_section {
    background-color: var(--secondary-light);
}

.schnapsidee_split_section {
    background-color: var(--primary-light);
}

.fakten_split_section {
    background-color: var(--tertiary-light);
}

.werwirsind_split_section {
    background-color: var(--secondary-light);
}

.positions_split_section {
    background-color: transparent;
}

.lilleschankraum_split_section {
    background-color: var(--secondary-light);
}

.unserevision_split_section {
    background-color: var(--tertiary-light);
}

.dasbierfurkiel_split_section {
    background-color: var(--primary-light);
}

.dielillegrunder_split_section {
    background-color: transparent;
}

.details_split_section {
    background-color: var(--secondary-light);
}

.split_section_cont {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.split_section_cont {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.split_section_cont .section_image {
    flex: 1;
}

.split_section_cont .section_image img {
    width: 100%;
    border-radius: 20px;
}

.split_section_cont .section_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split_section_cont .section_text.top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.split_section_cont .section_text h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.split_section_cont .section_text p {
    font-size: 16px;
    color: var(--text-dim-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.split_section_cont .section_text p a {
    font-size: 16px;
    color: var(--text-dim-gray);
    font-weight: 400;
    text-decoration: underline;
}

.split_section_cont .section_text a {
    font-size: 14px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.split_section_cont .section_text a:hover {
    color: var(--text-dim-gray);
}

.split_section_cont .section_text a i {
    font-size: 10px;
    margin-left: 5px;
}

.split_section_cont .section_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split_section_cont .section_text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dim-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.split_section_cont .section_text ul li::before {
    content: "•";
    font-size: 45px;
    line-height: 1;
    color: var(--text-dim-gray);
}

.split_section_cont .jobs_cards_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.split_section_cont .jobs_cards_container .job_card {
    background-color: var(--tertiary-light);
    border-radius: 18px;
    padding: 30px 30px 40px 30px;
}

.split_section_cont .jobs_cards_container .job_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.split_section_cont .jobs_cards_container .job_desc {
    color: var(--text-dim-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.split_section_cont .jobs_cards_container .job_info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.split_section_cont .jobs_cards_container .job_info span {
    color: var(--text-dim-gray);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.split_section_cont .jobs_cards_container .job_info i {
    color: var(--text-dim-gray);
}

.split_section_cont .founder_timeline_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 2px solid var(--text-dim-gray);
    padding-left: 40px;
    position: relative;
    margin-left: 20px;
}

.split_section_cont .founder_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.split_section_cont .founder_icon {
    position: absolute;
    top: -10px;
    left: -65px;
    background-color: var(--bg-white);
    color: var(--text-dim-gray);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.split_section_cont .founder_text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
}

.split_section_cont .founder_text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim-gray);
}

.details_split_section .event_info_grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.details_split_section .event_info_box {
    background-color: var(--secondary);
    padding: 25px 30px;
    border-radius: 18px;
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.details_split_section .event_info_box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
}

.details_split_section .event_info_box a {
    font-size: 16px;
    color: var(--text-black);
    text-decoration: underline;
}

.details_split_section .event_info_box span {
    font-size: 16px;
    color: var(--text-black);
}

.split_section_image {
    width: 100%;
    border-radius: 15px;
    margin-top: 40px;
    overflow: hidden;
}

.split_section_image img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


/* Responsive */
@media (max-width: 1200px) {
    .details_split_section .event_info_box {
        flex: 1 1 calc(50% - 30px);
    }

    .details_split_section .event_info_grid {
        margin-top: 40px;
    }
}

@media (max-width: 700px) {
    .details_split_section .event_info_box {
        flex: 1 1 100%;
        padding: 25px 20px;
    }
}

@media (max-width: 1024px) {
    .split_section_cont {
        flex-direction: column;
        gap: 30px;
    }

    .split_section_cont.reverse {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .split_section_cont .jobs_cards_container .job_card {
        background-color: var(--tertiary-light);
        border-radius: 18px;
        padding: 30px 20px 40px 20px;
    }
}

@media (max-width: 568px) {
    .split_section_cont .section_text h2 {
        font-size: 25px;
    }

    .split_section_cont .section_text p {
        font-size: 14px;
    }

    .split_section_cont .section_text p a {
        font-size: 14px;
    }

    .split_section_cont .section_text p li {
        font-size: 14px;
    }
}

/* ---------- Newsletter Section ---------- */
.newsletter.top-spacing {
    margin-top: 80px;
}

.newsletter-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.newsletter-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    padding: 80px 40px;
    max-width: 820px;
}

.newsletter-content h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 15px;
    margin-bottom: 35px;
    color: var(--text-white);
    line-height: 1.6;
}

.newsletter-content .newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.newsletter-content .newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-white);
    border-radius: 15px;
    background: transparent;
    color: var(--text-white);
    font-size: 15px;
    max-width: 400px;
}

.newsletter-content .newsletter-form input::placeholder {
    color: var(--text-white);
}

.newsletter-content .newsletter-form input:focus {
    outline: none;
    border-color: var(--border-white);
    box-shadow: none;
}

.newsletter-content small {
    font-size: 11px;
    color: var(--text-white);
}

.newsletter-content small a {
    color: var(--text-white);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter.top-spacing {
        margin-top: 60px;
    }

    .newsletter-wrapper {
        margin-bottom: 60px;
    }

    .newsletter {
        margin-bottom: 60px;
    }

    .newsletter-content {
        padding: 60px 20px;
        text-align: center;
    }

    .newsletter-content .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content .newsletter-form input,
    .newsletter-content .newsletter-form button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 568px) {
    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 14px;
    }
}

/* ---------- Image Hero Section ---------- */
.image_hero_section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.image_hero_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.image_hero_section .image_hero_content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.image_hero_section .image_hero_content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 18px;
}

.image_hero_section .image_hero_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .image_hero_section {
        height: 320px;
        text-align: center;
    }

    .image_hero_section .image_hero_content {
        padding: 40px 20px;
    }

    .image_hero_section .image_hero_content h2 {
        font-size: 32px;
    }

    .image_hero_section .image_hero_content p {
        margin: auto;
    }
}

/* ---------- Related Product Section ---------- */
.related_product_section .related_product_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.related_product_section h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
}

.related_product_section .related_product_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related_product_section .related_product_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.related_product_section .related_product_view_link:hover {
    color: var(--text-dim-gray);
}

.related_product_section .related_product_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.related_product_section .related_product_item {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.related_product_section .related_product_item:hover {
    transform: translateY(-6px);
}

.related_product_section .related_product_image {
    padding: 10px 10px 0 10px;
}

.related_product_section .related_product_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.related_product_section .related_product_info {
    padding: 20px;
    height: 100%;
}

.related_product_section .related_product_info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 10px;
}

.related_product_section .related_product_info p {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 18px;
}

.related_product_section .related_product_info button {
    width: 100%;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .related_product_section .related_product_grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-area: 25px;
    }
}

@media (max-width: 800px) {
    .related_product_section h2 {
        font-size: 22px;
    }

    .related_product_section .related_product_grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 568px) {
    .related_product_section .related_product_header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .related_product_section h2 {
        font-size: 20px;
    }

    .related_product_section .related_product_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------- Home Page Sections --------------------------- */

/* ---------- Hero Section ---------- */
.hero_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.event_hero_section {
    background-color: var(--primary-light);
}

.hero_content {
    flex: 1;
    max-width: 500px;
}

.hero_content .breadcrumb_content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dim-gray);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero_content .breadcrumb_link {
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero_content .breadcrumb_link:hover {
    color: var(--text-black);
}

.hero_content .breadcrumb_separator i {
    font-size: 12px;
    color: var(--text-dim-gray);
    position: relative;
    top: -1px;
}


.hero_content .breadcrumb_current {
    color: var(--text-black);
    font-weight: 500;
}

.hero_content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim-gray);
    max-width: 600px;
}

.hero_content .hero_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.hero_content .hero_info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero_content .hero_info span {
    color: var(--text-dim-gray);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero_content .hero_info i {
    color: var(--text-dim-gray);
}

.hero_image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero_image img {
    width: 100%;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero_section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero_content {
        max-width: 600px;
    }

    .hero_content .breadcrumb_content,
    .hero_content .hero_buttons,
    .hero_content .hero_info {
        align-items: center;
        justify-content: center;
    }

    .hero_image img {
        max-width: 600px;
    }
}

@media (max-width: 568px) {
    .hero_content h1 {
        font-size: 34px;
    }

    .hero_content p {
        font-size: 14px;
    }
}

/* ---------- Experiences Section ---------- */
.experiences_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Experiences Events */
.experiences_events {
    flex: 1;
}

.experiences_events ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.experiences_events .event_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    padding: 16px 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.experiences_events .event_card:hover {
    transform: translateX(5px);
}

.experiences_events ul li:nth-child(4n+1) {
    background-color: var(--primary-light);
}

.experiences_events ul li:nth-child(4n+2) {
    background-color: var(--secondary-light);
}

.experiences_events ul li:nth-child(4n+3) {
    background-color: var(--tertiary-light);
}

.experiences_events ul li:nth-child(4n+4) {
    background-color: var(--quaternary-light);
}

.experiences_events .event_date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid var(--border-dim-gray);
}

.experiences_events .event_date h3 {
    font-size: 26px;
    font-weight: 700;
}

.experiences_events .event_date span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim-gray);
}

.experiences_events .event_info {
    flex: 1;
    padding: 0 20px;
    text-align: start;
}

.experiences_events .event_info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
}

.experiences_events .event_info p {
    font-size: 14px;
    color: var(--text-dim-gray);
}

.experiences_events .event_card i {
    font-size: 22px;
    color: var(--text-black);
}

.experiences_events .events_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.experiences_events .events_link:hover {
    color: var(--text-dim-gray);
}

.experiences_events .events_link i {
    font-size: 10px;
    margin-left: 5px;
}

/* experiences Products */
.experiences_products {
    flex: 1.35;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.experiences_products .product_card {
    text-align: start;
    flex: 1;
}

.experiences_products .product_card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    display: block;
}

.experiences_products .product_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 15px;
}

.experiences_products .product_card a {
    font-size: 15px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.experiences_products .product_card a:hover {
    color: var(--text-dim-gray);
}

.experiences_products .product_card a i {
    font-size: 10px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .experiences_content {
        flex-direction: column;
    }

    .experiences_events,
    .experiences_products {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .experiences_products {
        flex-direction: column;
    }

    .experiences_events .event_date {
        flex-direction: column;
        gap: 5px;
    }

    .experiences_events .events_link,
    .experiences_products .product_card {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ---------- About Us Section ---------- */
.about_us_section .info_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about_us_section .info_card {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about_us_section .info_card:nth-child(1) {
    background-color: var(--secondary-light);
}

.about_us_section .info_card:nth-child(2) {
    background-color: var(--tertiary-light);
}

.about_us_section .info_card:nth-child(3) {
    background-color: var(--primary-light);
}

.about_us_section .info_card:nth-child(4) {
    background-color: var(--quaternary-light);
}

.about_us_section .info_card:hover {
    transform: translateY(-4px);
}

.about_us_section .info_content {
    padding: 60px 40px 0 40px;
}

.about_us_section .info_content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about_us_section .info_content p {
    font-size: 15px;
    color: var(--text-black);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about_us_section .info_link {
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.about_us_section .info_link i {
    font-size: 10px;
}

.about_us_section .info_link:hover {
    color: var(--text-dim-gray);
}

.about_us_section .info_card img {
    height: 400px;
    object-fit: cover;
    margin: 60px 10px 10px 10px;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 911px) {
    .about_us_section .info_cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_us_section .info_content {
        padding: 60px 20px 0 20px;
        text-align: center;
    }
}

@media (max-width: 568px) {
    .about_us_section .info_content h3 {
        font-size: 24px;
    }

    .about_us_section .info_content p {
        font-size: 14px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Brauerei Page Sections ------------------------- */

/* ---------- Process Section ---------- */
.process_section {
    background: var(--primary-light);
}

.process_content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: left;
}

.process_content .process_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.process_content .process_item i {
    font-size: 40px;
    color: var(--text-black);
    margin-bottom: 25px;
    display: block;
}

.process_content .process_item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.process_content .process_item p {
    color: var(--text-dim-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .process_content h2 {
        text-align: center;
        font-size: 30px;
    }

    .process_content .process_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process_content .process_item {
        text-align: center;
        max-width: 600px;
        margin: auto;
    }

    .process_content .process_item i {
        margin: auto;
        margin-bottom: 25px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .process_content .process_item h3 {
        font-size: 18px;
    }

    .process_content .process_item p {
        font-size: 15px;
    }
}

/* ---------- Showcase Slider Section ---------- */
:root {
    --slider-side-offset: 80px;
}

.showcase-slider-content-wrapper {
    margin: auto;
}

.showcase-slider-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
    overflow: hidden;
}

.showcase-slider-content-wrapper {
    overflow: visible;
}

.swiper {
    z-index: 0;
}

.showcase-slider-slider .swiper-wrapper {
    overflow: visible;
}

.showcase-slider-slider .swiper-slide {
    width: 100%;
    max-width: 800px;
}

.showcase-slider-slider .image-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.showcase-slider-slider .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-slider-slider .image-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.slider-footer {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
}

.slider-footer .custom-pagination {
    position: static !important;
    width: auto !important;
    font-size: 0;
    display: flex;
    gap: 5px;
}

.slider-footer .custom-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--slider-light-gray);
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-footer .custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.slider-footer .slider-navigation {
    display: flex;
    gap: 15px;
}

.slider-footer .custom-arrow {
    position: static;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--border-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    color: var(--border-black);
}

.slider-footer .custom-arrow:hover {
    background-color: var(--primary);
}

.slider-footer .custom-arrow::after {
    content: none !important;
}

.slider-footer .custom-arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --slider-side-offset: 20px;
    }
}

@media (max-width: 768px) {
    .showcase-slider-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .showcase-slider-slider .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }

    .slider-footer {
        padding-left: var(--slider-side-offset);
        padding-right: var(--slider-side-offset);
    }

    .showcase-slider-slider,
    .slider-footer {
        max-width: 100%;
        padding: 0 var(--slider-side-offset);
    }
}

@media (max-width: 360px) {
    .slider-footer .custom-pagination {
        display: none;
    }
}

/* ---------- Facts Section ---------- */
.facts_section {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.facts_section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-black);
}

.facts_section .facts_grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.facts_section .facts_column {
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-width: 300px;
}

.facts_section .facts_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.facts_section .facts_item i {
    font-size: 36px;
    color: var(--text-black);
    margin-bottom: 8px;
}

.facts_section .facts_item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dim-gray);
    line-height: 1.4;
}

.facts_section .facts_item h3 span {
    font-weight: 800;
    display: block;
}

.facts_section .facts_image {
    flex: 1.5;
    min-width: 400px;
}

.facts_section .facts_image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
    .facts_section .facts_grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .facts_section .facts_image {
        order: -1;
        width: 80%;
        min-width: initial;
    }

    .facts_section .facts_column {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }

    .facts_section .facts_item {
        width: calc(50% - 15px);
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .facts_section {
        padding: 60px 0;
    }

    .facts_section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .facts_section .facts_image {
        width: 100%;
        max-width: 100%;
    }

    .facts_section .facts_item i {
        font-size: 28px;
    }

    .facts_section .facts_item h3 {
        font-size: 15px;
    }

    .facts_section .facts_column {
        gap: 16px;
    }

    .facts_section .facts_item {
        width: 48%;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Bierbrand Page Sections ------------------------ */

/* ---------- Variants Section ---------- */
.variants_section .variants_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.variants_section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-black);
}

.variants_section .variants_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.variants_section .variants_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.variants_section .variants_view_link:hover {
    color: var(--text-dim-gray);
}

.variants_section .variants_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.variants_section .variants_item {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.variants_section .variants_item:hover {
    transform: translateY(-6px);
}

.variants_section .variants_image {
    padding: 10px 10px 0 10px;
}

.variants_section .variants_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.variants_section .variants_info {
    padding: 20px;
    height: 100%;
}

.variants_section .variants_info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 15px;
}

.variants_section .variants_info p {
    font-size: 14px;
    color: var(--text-black);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .variants_section .variants_info h3 {
        font-size: 16px;
    }

    .variants_section h2 {
        font-size: 32px;
    }

    .variants_section .variants_grid {
        gap: 24px;
    }
}

@media (max-width: 568px) {
    .variants_section .variants_header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .variants_section .variants_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .variants_section .variants_info h3 {
        font-size: 15px;
    }

    .variants_section .variants_info p {
        font-size: 13px;
    }
}

/* ---------- Product Section ---------- */
.product_section .product_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product_section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-black);
}

.product_section .product_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product_section .product_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.product_section .product_view_link:hover {
    color: var(--text-dim-gray);
}

.product_section .product_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.product_section .product_item {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product_section .product_item:hover {
    transform: translateY(-6px);
}

.product_section .product_image {
    padding: 10px 10px 0 10px;
}

.product_section .product_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

.product_section .product_info {
    padding: 20px;
    height: 100%;
}

.product_section .product_info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.product_section .product_info p {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 18px;
}

.product_section .product_info button {
    width: 100%;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product_section .product_grid {
        grid-template-columns: 1fr 1fr;
    }

    .product_section .product_info h3 {
        font-size: 16px;
    }

    .product_section .product_info p {
        font-size: 22px;
    }

    .product_section .product_info button {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .product_section h2 {
        font-size: 32px;
    }

    .product_section .product_grid {
        gap: 24px;
    }
}

@media (max-width: 568px) {
    .product_section .product_header {
        flex-direction: column;
        gap: 12px;
    }

    .product_section .product_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product_section .product_info h3 {
        font-size: 15px;
    }

    .product_section .product_info p {
        font-size: 20px;
    }

    .product_section .product_info button {
        font-size: 14px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Check Out Page Sections ------------------------ */

/* ---------- Cart Section ---------- */
.cart_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cart_section .cart_left {
    flex: 2;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-gainsboro);
}

.cart_section .cart_title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-black);
}

.cart_section .cart_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart_section .cart_item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border: 1px solid var(--border-gainsboro);
    border-radius: 12px;
    padding: 20px;
    gap: 20px;
}

.cart_section .cart_item_image {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
}

.cart_section .cart_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart_section .cart_item_details {
    flex: 1;
}

.cart_section .cart_item_details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 4px;
}

.cart_section .cart_item_details p {
    font-size: 14px;
    color: var(--text-dim-gray);
    margin-bottom: 12px;
}

.cart_section .cart_item_qty {
    position: relative;
}

.cart_section .cart_select_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart_section .cart_select_wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 34px 10px 14px;
    border: 1px solid var(--border-gainsboro);
    border-radius: 12px;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-black);
    cursor: pointer;
}

.cart_section .cart_select_wrapper i {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: var(--text-dim-gray);
    font-size: 12px;
}

.cart_section .cart_item_price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
}

.cart_section .cart_item_remove {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-black);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.cart_section .cart_empty {
    text-align: center;
    border: 1px dashed var(--border-dim-gray);
    border-radius: 12px;
    padding: 60px 20px;
}

.cart_section .cart_empty_icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cart_section .cart_empty h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 10px;
}

.cart_section .cart_empty p {
    font-size: 15px;
    color: var(--text-dim-gray);
    margin-bottom: 25px;
}

.cart_section .cart_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-black);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cart_section .cart_right {
    flex: 1;
    border-radius: 16px;
    padding: 20px;
    background-color: var(--primary-light);
}

.cart_section .cart_summary_title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-black);
}

.cart_section .cart_summary_coupon label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 8px;
}

.cart_section .cart_coupon_row {
    display: flex;
    gap: 10px;
}

.cart_section .cart_coupon_row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-dim-gray);
    border-radius: 10px;
    font-size: 14px;
}

.cart_section .cart_coupon_row input:focus {
    outline: none;
    border-color: var(--border-dim-gray);
    box-shadow: none;
}

.cart_section .cart_coupon_btn {
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: transparent;
    color: var(--text-black);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart_section .cart_coupon_btn:hover {
    background: var(--primary);
}

.cart_section .cart_coupon_success {
    color: var(--text-green);
    font-size: 14px;
    margin-top: 8px;
}

.cart_section .cart_coupon_error {
    color: var(--text-red);
    font-size: 14px;
    margin-top: 8px;
}

.cart_section .cart_summary_details {
    margin-top: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart_section .cart_summary_details div {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text-black);
}

.cart_section .cart_summary_buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart_section .btn_checkout {
    background: var(--primary);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cart_section .btn_continue {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .cart_section {
        flex-direction: column;
        gap: 30px;
    }

    .cart_section .cart_left,
    .cart_section .cart_right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart_section .cart_item {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;

    }

    .cart_section .cart_item_details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cart_section .cart_item_image img {
        width: 100px;
    }

    .cart_section .cart_item_remove {
        position: absolute;
        top: 15px;
        right: 10px;
    }

    .cart_section .cart_coupon_row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cart_section .cart_coupon_row input,
    .cart_section .cart_coupon_row button {
        width: 100%;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------ Dein Event Page Sections ------------------------ */

/* ---------- Event gallery Section ---------- */
.event_gallery_section {
    background: var(--primary-light);
    text-align: center;
}

.event_gallery_section .event_gallery_content_head {
    max-width: 800px;
    margin: auto;
}

.event_gallery_section .event_gallery_title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 20px;
}

.event_gallery_section .event_gallery_subtitle {
    font-size: 16px;
    color: var(--text-dim-gray);
    margin-bottom: 60px;
}

.event_gallery_section .event_gallery_cont {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.event_gallery_section .event_gallery_item {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.event_gallery_section .event_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .event_gallery_section .event_gallery_title {
        font-size: 30px;
    }

    .event_gallery_section .event_gallery_subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .event_gallery_section .event_gallery_cont {
        gap: 20px;
    }

    .event_gallery_section .event_gallery_item {
        min-width: 280px;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .event_gallery_section .event_gallery_item {
        min-width: 100%;
        max-width: 100%;
    }
}

/* ---------- Contact Information Section ---------- */
.contact_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 15px;
}

.contact_item {
    flex: 1;
    min-width: 280px;
}

.contact_item i {
    font-size: 30px;
    color: var(--bg-black);
    margin-bottom: 25px;
    display: inline-block;
}

.contact_item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-black);
}

.contact_item a {
    font-size: 18px;
    color: var(--text-dim-gray);
    text-decoration: underline;
    line-height: 1.6;
    font-weight: 500;
}

.contact_item a:hover {
    color: var(--bg-black);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact_container .section_head_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact_grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact_item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact_item i {
        font-size: 26px;
    }

    .contact_item h3 {
        font-size: 18px;
    }

    .contact_item a {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------ Schankraum Page Sections ------------------------ */

/* ---------- Location & Opening Hours Section ---------- */
.location_opening_section .location_heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 80px;
}

.location_opening_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.location_opening_content .location_text {
    flex: 1;
}

.location_opening_content .location_name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.location_opening_content .location_address {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.location_opening_content .opening_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.location_opening_content .opening_time {
    font-size: 15px;
    color: var(--text-dim-gray);
    margin-bottom: 40px;
}

.location_opening_content .map_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.location_opening_content .map_link i {
    font-size: 12px;
}

.location_opening_content .map_link:hover {
    color: var(--text-dim-gray);
}

.location_opening_content .location_map {
    flex: 1.5;
}

.location_opening_content .location_map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 16px;
    filter: grayscale(10%) brightness(97%);
}

/* Responsive */
@media (max-width: 900px) {
    .location_opening_section .location_heading {
        font-size: 34px;
        text-align: center;
        margin-bottom: 60px;
    }

    .location_opening_content {
        flex-direction: column;
        gap: 50px;
    }

    .location_opening_content .location_text,
    .location_opening_content .location_map {
        width: 100%;
        text-align: center;
    }
}


/* -------------------------------------------------------------------------- */
/* -------------------------- Product page Sections ------------------------- */

/* ---------- Single Product Section Styles ---------- */
.single-product-section {
    text-align: left;
}

.single-product-section .product-details-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.single-product-section .product-image-gallery {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 20px;
    position: sticky;
    top: 20px;

}

.single-product-section .main-product-image {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-product-section .main-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--border-gainsboro);
}

.single-product-section .thumbnail-images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
}

.single-product-section .thumbnail-images img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--border-gainsboro);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.single-product-section .thumbnail-images img.active {
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.single-product-section .product-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.single-product-section .product-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.single-product-section .product-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dim-gray);
    margin-bottom: 25px;
}

.product_size_selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.product_size_selector label {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-black);
}

.size_options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.size_options input[type="radio"] {
    display: none;
}

.size_options label {
    border: 1px solid var(--border-gainsboro);
    background-color: transparent;
    color: var(--text-black);
    border-radius: 16px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size_options input[type="radio"]:checked+label {
    background-color: var(--text-black);
    color: var(--text-white);
    border-color: var(--text-black);
}

.single-product-section .cart_item_qty {
    position: relative;
}

.single-product-section .cart_item_qty p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 10px;
}

.single-product-section .cart_select_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.single-product-section .cart_select_wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 34px 10px 14px;
    border: 1px solid var(--border-gainsboro);
    border-radius: 12px;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-black);
    cursor: pointer;
}

.single-product-section .cart_select_wrapper i {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: var(--text-dim-gray);
    font-size: 12px;
}

.single-product-section .product_buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.single-product-section .btn_cart {
    background: var(--primary);
    border: none;
    padding: 14px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.single-product-section .btn_buy {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 14px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.single-product-section .product-spec-accordion {
    border-top: 1px solid var(--border-gainsboro);
}

.single-product-section .accordion-item {
    border-bottom: 1px solid var(--border-gainsboro);
}

.single-product-section .accordion-header {
    font-size: 18px;
    font-weight: 700;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-black);
}

.single-product-section .accordion-header i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.single-product-section .accordion-header.active i {
    transform: rotate(180deg);
}

.single-product-section .accordion-content {
    max-height: 0;
    overflow: hidden;
}

.single-product-section .accordion-content.open {
    max-height: 500px;
    margin-bottom: 25px;
}

.single-product-section .accordion-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dim-gray);
    margin-bottom: 10px;
}

.single-product-section .accordion-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .single-product-section .main-product-image {
        justify-content: flex-start;
    }

    .single-product-section .product-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-product-section .product-image-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .single-product-section .main-product-image img {
        flex: 1;
    }

    .single-product-section .product-image-gallery {
        flex-direction: column;
    }

    .single-product-section .thumbnail-images {
        flex-direction: row;
    }

    .single-product-section .product-title {
        font-size: 30px;
    }

    .single-product-section .product-price {
        font-size: 22px;
    }

    .single-product-section .product-description {
        font-size: 15px;
    }

    .single-product-section .btn_cart {
        font-size: 15px;
    }

    .single-product-section .btn_buy {
        font-size: 15px;
    }
}


/* -------------------------------------------------------------------------- */
/* ----------------------- Reservierung page Sections ----------------------- */

/* ---------- Allgemeine Öffnungszeiten Section ---------- */
.general_opening_section .general_opening_heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 80px;
}

.general_opening_section .general_opening_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.general_opening_section .opening_details {
    flex: 1;
}

.general_opening_section .opening_group {
    margin-bottom: 30px;
}

.general_opening_section .opening_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
}

.general_opening_section .opening_time {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
}

.general_opening_section .opening_notice {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 40px;
}

.general_opening_section .opening_contact_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.general_opening_section .opening_contact_link i {
    font-size: 12px;
    margin-left: 5px;
}

.general_opening_section .opening_contact_link:hover {
    color: var(--text-dim-gray);
}

.general_opening_section .opening_image_wrapper {
    flex: 1.5;
}

.general_opening_section .opening_image_wrapper img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 450px;
}

/* Responsive */
@media (max-width: 900px) {
    .general_opening_section .general_opening_heading {
        font-size: 34px;
        text-align: center;
        margin-bottom: 60px;
    }

    .general_opening_section .general_opening_content {
        flex-direction: column;
        gap: 40px;
    }

    .general_opening_section .opening_details,
    .general_opening_section .opening_image_wrapper {
        width: 100%;
        text-align: center;
    }

    .general_opening_section .opening_image_wrapper img {
        max-height: 400px;
    }
}

/* ---------- Reservation Calendar Section ---------- */
.reservation_section .reservation_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 150px;
}

/* Reservation Calendar */
.reservation_section .reservation_calendar {
    flex: 1.2;
    border-radius: 16px;
}

.reservation_section .calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reservation_section .calendar_header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reservation_section .calendar_nav {
    background: none;
    border: 1px solid var(--border-dim-gray);
    color: var(--text-black);
    font-size: 14px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reservation_section .calendar_nav:hover {
    background-color: var(--primary);
}

.reservation_section .calendar_weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--border-dim-gray);
    margin-bottom: 15px;
    font-size: 15px;
}

.reservation_section .calendar_days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 15px;
    gap: 5px;
}

.reservation_section .calendar_days span {
    padding: 10px 0;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-black);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.reservation_section .calendar_days span.other-month {
    color: var(--text-silver);
}

.reservation_section .calendar_days span.today {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.reservation_section .calendar_days span.active {
    background-color: var(--primary);
    color: var(--text-black);
    font-weight: 700;
}

/* Reservation Form */
.reservation_section .reservation_form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation_section .reservation_form .form_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 10px;
}

.reservation_section .reservation_form .form_description {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.reservation_section .reservation_form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reservation_section .reservation_form form .form_input_cont label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 10px;
}

.reservation_section .reservation_form input[type="text"],
.reservation_section .reservation_form input[type="number"] {
    width: 100%;
    border: 1px solid var(--border-dim-gray);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    background-color: transparent;
    transition: border-color 0.2s;
}

.reservation_section .reservation_form input[type="number"] {
    -moz-appearance: textfield;
}

.reservation_section .reservation_form input[type="number"]::-webkit-outer-spin-button,
.reservation_section .reservation_form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.reservation_section .reservation_form input#persons {
    border: none;
}

.reservation_section .reservation_form .input_group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-dim-gray);
    border-radius: 12px;
    padding: 0 14px;
    background-color: transparent;
}

.reservation_section .reservation_form .input_group i {
    color: var(--text-dim-gray);
    font-size: 15px;
}

.reservation_section .reservation_form .input_group input {
    border: none;
    outline: none;
    flex: 1;
    padding: 15px;
    font-size: 15px;
    background: transparent;
}

.reservation_section .reservation_form .input_group i:last-child {
    cursor: pointer;
}

/* Reservation Submit Button */
.reservation_section .submit_btn {
    background-color: var(--primary);
    border: none;
    border-radius: 16px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-black);
    align-self: flex-end;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .reservation_section .reservation_content {
        gap: 100px;
    }
}

@media (max-width: 1024px) {
    .reservation_section .reservation_calendar {
        width: 100%;
    }

    .reservation_section .reservation_content {
        flex-direction: column;
        gap: 60px;
    }

    .reservation_section .reservation_form {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .reservation_section .calendar_header h3 {
        font-size: 20px;
    }

    .reservation_section .calendar_days span {
        padding: 8px 0;
        font-size: 14px;
    }

    .reservation_section .reservation_form .form_title {
        font-size: 20px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Programm Page Sections ------------------------- */

/* ---------- Events List Slider Section ---------- */
.events_list_slider_section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.events_list_slider_section .section_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.events_list_slider_section .swiper {
    position: relative;
    overflow: hidden;
}

.events_list_slider_section .event_card {
    background-color: var(--tertiary-light);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.events_list_slider_section .event_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.events_list_slider_section .event_card_content {
    padding: 25px;
}

.events_list_slider_section .event_meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.events_list_slider_section .meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-black);
}

.events_list_slider_section .event_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 12px;
}

.events_list_slider_section .event_desc {
    color: var(--text-black);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.events_list_slider_section .event_link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.events_list_slider_section .event_link:hover {
    color: var(--text-dim-gray);
    gap: 12px;
}

.events_list_slider_section .events_list_slider_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.events_list_slider_section .events_list_slider_nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-black);
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 12px;
}

.events_list_slider_section .events_list_slider_nav a:hover {
    color: var(--text-dim-gray);
    transform: translateY(-2px);
}

.events_list_slider_section .events_list_slider_nav a i {
    font-size: 14px;
}

.events_list_slider_section .events_list_slider_nav a span {
    font-size: 15px;
}

.events_list_slider_section .swiper-button-prev,
.events_list_slider_section .swiper-button-next {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* Responsive */
@media (max-width: 1000px) {
    .events_list_slider_section .section_title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .events_list_slider_section .section_title {
        font-size: 20px;
    }

    .events_list_slider_section .event_card_content {
        padding: 20px;
    }

    .events_list_slider_section .event_title {
        font-size: 18px;
    }

    .events_list_slider_section .event_desc {
        font-size: 14px;
    }

    .events_list_slider_section .event_link {
        font-size: 14px;
    }

    .events_list_slider_section .event_link i {
        font-size: 11px;
    }

    .events_list_slider_section .events_list_slider_nav span {
        display: none;
    }

    .events_list_slider_section .events_list_slider_nav a {
        padding: 10px;
        border: 2px solid var(--border-dim-gray);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 9999;
        margin-top: 30px;
    }

    .events_list_slider_section .events_list_slider_nav a:hover {
        background-color: var(--primary-light);
    }

    .events_list_slider_section .events_list_slider_nav a i {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------- Event Page Sections -------------------------- */

/* -------- Beer n’ Burgers Section -------- */
.beerburgers_section {
    padding-bottom: 0;
}

.beerburgers_section .beerburgers_title {
    font-size: 45px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 40px;
}

.beerburgers_section .beerburgers_card {
    display: flex;
    align-items: stretch;
    gap: 30px;
    background-color: var(--primary-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    flex-wrap: wrap;
}

.beerburgers_section .beerburgers_image_wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.beerburgers_section .beerburgers_image_wrap img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.beerburgers_section .beerburgers_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.beerburgers_section .beerburgers_meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: var(--text-dim-gray);
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.beerburgers_section .beerburgers_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.beerburgers_section .beerburgers_heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 15px;
}

.beerburgers_section .beerburgers_location {
    font-size: 16px;
}

.beerburgers_section .beerburgers_address {
    font-size: 15px;
    color: var(--text-dim-gray);
    margin-bottom: 10px;
}

.beerburgers_section .beerburgers_details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.beerburgers_section .beerburgers_details p {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
}

.beerburgers_section .beerburgers_btn {
    width: fit-content;
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-black);
    font-weight: 600;
    border-radius: 9999px;
    padding: 12px 24px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

 .event_link_featured {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}


/* Responsive */
@media (max-width: 900px) {
    .beerburgers_section .beerburgers_title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .beerburgers_section .beerburgers_card {
        flex-direction: column;
    }

    .beerburgers_section .beerburgers_image_wrap,
    .beerburgers_section .beerburgers_content {
        flex: 1;
    }

    .beerburgers_section .beerburgers_heading {
        font-size: 20px;
    }
}

/* ---------- Events List Section ---------- */
.events_list_section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.events_list_section .section_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.events_list_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.events_list_grid .event_card {
    background-color: var(--tertiary-light);
    border-radius: 20px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
}

.events_list_grid .event_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.events_list_grid .event_card_content {
    padding: 25px;
}

.events_list_grid .event_meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.events_list_grid .meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-black);
}

.events_list_grid .event_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 12px;
}

.events_list_grid .event_desc {
    color: var(--text-black);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.events_list_grid .event_link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.events_list_grid .event_link:hover {
    color: var(--text-dim-gray);
}

.events_list_grid .event_link i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
    .events_list_grid .event_card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .events_list_grid .event_card {
        flex: 1 1 100%;
    }

    .events_list_section .events_list_nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .events_list_section .section_title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .events_list_grid .event_card_content {
        padding: 25px 20px;
    }

    .events_list_grid .event_meta {
        font-size: 14px;
    }

    .events_list_grid .event_title {
        font-size: 18px;
    }

    .events_list_grid .event_desc {
        font-size: 14px;
    }

    .events_list_grid .event_link {
        font-size: 14px;
    }

    .events_list_grid .event_link i {
        font-size: 12px;
    }
}