/* Modern Menu 26 Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #373938;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(55, 57, 56, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    width: 40%;
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.menu-toggle {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Top Navigation (Always Visible) */
.top-nav {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 60px;
    background: #d3d1c5;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.top-nav:active {
    cursor: grabbing;
}

.top-nav::-webkit-scrollbar {
    display: none;
}

/* Navigation Scroll Indicators */
.nav-scroll-indicator {
    position: fixed;
    top: 100px;
    transform: translateY(-50%);
    font-size: 28px;
    color: #ffffff;
    pointer-events: none;
    z-index: 1002;
    background: rgba(76, 175, 80, 0.9);
    padding: 12px 16px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    animation: pulse 2s infinite;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.nav-scroll-indicator.left {
    left: 20px;
}

.nav-scroll-indicator.right {
    right: 20px;
}

.nav-scroll-indicator:hover {
    background: rgba(76, 175, 80, 1);
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    }
}

.nav-horizontal {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0 20px;
    min-width: max-content;
    align-items: center;
}

.nav-horizontal li a {
    color: #333533;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 20px 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-horizontal li a:hover {
    color: #5c4e4e;
}

.nav-horizontal li a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5c4e4e;
    transition: width 0.3s ease;
}

.nav-horizontal li a:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Vertical Navigation */
.vertical-nav {
    position: fixed;
    top: 130px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 130px);
    background: rgba(55, 57, 56, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.vertical-nav.active {
    left: 0;
}

.vertical-nav ul {
    list-style: none;
    padding: 20px 0;
}

.vertical-nav ul li {
    margin: 0;
}

.vertical-nav ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-transform: uppercase;
        border-bottom: 1px solid #5d615f;
}

.vertical-nav ul li a:hover {
    background-color: rgba(205, 205, 207, 0.8);
    border-left-color: #5e5321;
    color: #494949;
}

/* Main Content */
.main-content {
    margin-top: 130px;
    padding: 40px 20px;
    min-height: calc(100vh - 130px);
}

.content-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .logo-container {
        width: 70%;
    }

    .menu-toggle {
        width: 30%;
    }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1025px) {
    .content-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* Subcategory Titles */
.titlesubcat {
    grid-column: 1 / -1;
    margin: 10px 0 20px 0;
    text-align: left;
    border-bottom: 2px solid #d4d1c5;
    padding-bottom: 10px;
}

.titlesubcat h1 {
    color: #d4d1c5;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Food Item Layout */
.content-card {
    display: flex;
    flex-direction: column;
    background: #d4d1c5;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 300px;
}

.content-card .photofood {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.content-card .photofood img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .photofood img {
    transform: scale(1.05);
}

.content-card .textfood1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card .food_name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.content-card .food_desc {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.content-card .food_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.add-to-modal-btn {
    background: #373938;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.add-to-modal-btn:hover {
    background: #4CAF50;
    transform: scale(1.1);
}

.add-to-modal-btn span {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Food Modal */
.food-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.food-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #373938;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.close-modal:hover {
    background: #4CAF50;
    border-color: #ffffff;
    transform: scale(1.1);
}

.modal-photo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-details {
    text-align: center;
    width: 100%;
}

.modal-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.modal-price {
    color: #666;
    font-size: 1.1em;
    font-weight: normal;
    padding: 8px 0;
    text-align: right;
    margin-top: 15px;
}

.content-card .currency-symbol,
.content-card .price-amount {
    color: #383938;
    font-size: 1.3em;
    font-weight: bold;
}

/* Beer Card Styles */
.beer-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.beer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beer-image-container:hover img {
    transform: scale(1.05);
}

.tap-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #373938;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.beer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.beer-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.beer-description {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.beer-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.beer-specs {
    color: #383938;
    font-size: 0.85em;
    line-height: 1.4;
}

.beer-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #383938;
    font-size: 0.9em;
    font-weight: bold;
}

/* Beer Modal */
.beer-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.beer-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-beer-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-beer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-tap-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #373938;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.modal-beer-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-beer-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-beer-brewery {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: rgba(55, 57, 56, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.modal-beer-specs {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-beer-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-beer-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Beer Can/Bottle Special Badge */
.special-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E91E63;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    z-index: 10;
}

/* Beer Can/Bottle Special Pricing */
.special-price {
    background: rgba(233, 30, 99, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    text-align: center;
}

.special-text {
    display: block;
    color: #E91E63;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.current-price {
    color: #E91E63;
    font-weight: bold;
    font-size: 1.1em;
}

.original-price {
    color: #666;
    font-size: 0.9em;
}

/* Beer Can/Bottle Modal Enhancements */
.modal-special-price {
    background: rgba(233, 30, 99, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    text-align: center;
    margin-top: 15px;
}

.special-label {
    display: block;
    color: #E91E63;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Wine Modal */
.wine-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.wine-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-wine-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-wine-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-wine-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-wine-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-wine-brewery {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: rgba(55, 57, 56, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.modal-wine-style {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
    font-style: italic;
}

.modal-wine-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-wine-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Cider Card Styles */
.cider-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.cider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cider-image-container:hover img {
    transform: scale(1.05);
}

.cider-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cider-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cider-details {
    flex: 1;
    margin-bottom: 15px;
}

.cider-details > div {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.cider-description {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.85em;
    line-height: 1.4;
    margin-top: 10px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}

.cider-pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-row-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.cider-pricing-left .pricing-label {
    color: #383938;
    font-weight: 500;
    font-size: 0.9em;
    min-width: 90px;
}

.cider-pricing-left .pricing-amount {
    color: #383938;
    font-weight: bold;
    font-size: 1.1em;
}

.cider-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cider-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-cider-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-cider-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-cider-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-cider-brewery {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: rgba(55, 57, 56, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.modal-cider-specs {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-cider-alcohol {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-cider-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(212, 209, 197, 0.3);
    border-radius: 8px;
    border-left: 3px solid #8B4513;
}

/* Cider Card Styles */
.cider-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.cider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cider-image-container:hover img {
    transform: scale(1.05);
}

.cider-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cider-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cider-details {
    flex: 1;
    margin-bottom: 15px;
}

.cider-details > div {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.cider-brewery, .cider-alcohol {
    color: #383938;
}

.cider-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-amount {
    color: #383938;
    font-weight: bold;
    font-size: 1.1em;
}
/* Cold Brew Modal */
.coldbrew-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.coldbrew-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coldbrew-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-coldbrew-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-coldbrew-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-coldbrew-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-coldbrew-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-coldbrew-brewery {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: rgba(55, 57, 56, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.modal-coldbrew-alcohol {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.modal-coldbrew-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-coldbrew-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Cold Brew Card Styles */
.coldbrew-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.coldbrew-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coldbrew-image-container:hover img {
    transform: scale(1.05);
}

.coldbrew-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coldbrew-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.coldbrew-details {
    flex: 1;
    margin-bottom: 15px;
}

.coldbrew-details>div {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.coldbrew-brewery,
.coldbrew-alcohol {
    color: #383938;
}

.coldbrew-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.coldbrew-pricing .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coldbrew-pricing .pricing-amount {
    color: #383938;
    font-weight: bold;
    font-size: 1.1em;
}

/* Board Modal */
.board-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.board-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-board-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-board-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-board-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-board-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-board-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-board-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Board Card Styles */
.board-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.board-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.board-image-container:hover img {
    transform: scale(1.05);
}

.board-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.board-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.board-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.board-pricing .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.board-pricing .pricing-amount {
    color: #383938;
    font-weight: bold;
    font-size: 1.1em;
}

/* Availability Notice */
.availability-notice {
    grid-column: 1 / -1;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

/* Notes Section */
.notes-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-item {
    background: rgba(212, 209, 197, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(56, 57, 56, 0.2);
}

.notetitle {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notetitle small {
    color: #666;
    font-size: 0.8em;
}

.dropdown {
    display: none;
}

.dropdown.show {
    display: block;
}

.dropdown p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Lemonade Modal */
.lemonade-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.lemonade-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lemonade-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-lemonade-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-lemonade-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-lemonade-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-lemonade-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-lemonade-ingredients {
    color: #333533;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
    font-style: italic;
}

.modal-lemonade-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-lemonade-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

/* Lemonade Card Styles */
.lemonade-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.lemonade-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lemonade-image-container:hover img {
    transform: scale(1.05);
}

.lemonade-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lemonade-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.lemonade-details {
    flex: 1;
    margin-bottom: 15px;
}

.lemonade-details > div {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.lemonade-category {
    color: #383938;
    font-weight: 500;
}

.lemonade-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.lemonade-pricing .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/* Wine Card Styles */
.wine-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.wine-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wine-image-container:hover img {
    transform: scale(1.05);
}

.wine-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wine-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.wine-description {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.wine-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.wine-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

/* Cocktail Modal */
.cocktail-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cocktail-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cocktail-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-cocktail-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-cocktail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-cocktail-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-cocktail-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-cocktail-details p {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-cocktail-variations {
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

.modal-variations-title {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.modal-variations-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-variation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(55, 57, 56, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(51, 53, 51, 0.2);
}

.variation-name {
    color: #333533;
    font-weight: 500;
    flex: 1;
}

.variation-price {
    color: #333533;
    font-weight: bold;
    font-size: 1.1em;
}

/* Cocktail Card Styles */
.cocktail-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.cocktail-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cocktail-image-container:hover img {
    transform: scale(1.05);
}

.cocktail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cocktail-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cocktail-description {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.cocktail-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.cocktail-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.cocktail-price .price-amount {
    color: #383938;
    font-size: 1.3em;
    font-weight: bold;
}

/* Whiskey Modal */
.whiskey-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.whiskey-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whiskey-modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-whiskey-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-whiskey-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.modal-whiskey-details {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.modal-whiskey-details h2 {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-whiskey-details > div {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-whiskey-pricing {
    margin-top: 20px;
}

.modal-pricing-container {
    background: rgba(55, 57, 56, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(51, 53, 51, 0.2);
}

.modal-pricing-header {
    color: #333533;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.modal-pricing-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-pricing-item {
    text-align: center;
    padding: 15px;
    background-color: rgba(212, 209, 197, 0.3);
    border-radius: 8px;
    min-width: 120px;
}

.pricing-type {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.pricing-value {
    color: #333533;
    font-weight: bold;
    font-size: 1.3em;
}

/* Whiskey Card Styles */
.whiskey-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.whiskey-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.whiskey-image-container:hover img {
    transform: scale(1.05);
}

.whiskey-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whiskey-name {
    color: #383938;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.whiskey-details {
    flex: 1;
    margin-bottom: 15px;
}

.whiskey-details > div {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.whiskey-origin, .whiskey-age, .whiskey-proof, .whiskey-infusion {
    color: #383938;
}

.whiskey-pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-row-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.whiskey-pricing-left .pricing-label {
    color: #383938;
    font-weight: 500;
    font-size: 0.9em;
    min-width: 90px;
}

.whiskey-pricing-left .pricing-amount {
    color: #383938;
    font-weight: bold;
    font-size: 1.1em;
}

.whiskey-header {
    background: rgba(212, 209, 197, 0.8);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Search Section Styling */
.search-section {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.search-box {
    margin-bottom: 20px;
}

.search-filters {
    margin-bottom: 15px;
}

.filter-info {
    border-top: 1px solid rgba(51, 53, 51, 0.2);
    padding-top: 15px;
}

/* Category Headers for Beer Types */
.category-header {
    margin: 40px 0 20px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #d4d1c5 !important;
}

/* Horizontal Slider for Beer Categories */
.category-slider {
    grid-column: 1 / -1;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #d4d1c5 #373938;
}

.category-slider::-webkit-scrollbar {
    height: 8px;
}

.category-slider::-webkit-scrollbar-track {
    background: #373938;
    border-radius: 4px;
}

.category-slider::-webkit-scrollbar-thumb {
    background: #d4d1c5;
    border-radius: 4px;
}

.category-slider::-webkit-scrollbar-thumb:hover {
    background: #b5b0a8;
}

.slider-container {
    display: inline-flex;
    gap: 20px;
    padding: 0 10px;
    min-width: max-content;
}

/* Enhanced beer cards for slider layout */
.content-card.beer-can-item {
    flex: 0 0 auto;
    width: 300px;
    min-width: 280px;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.content-card.beer-can-item:hover {
    transform: translateY(-5px);
}

.beer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: 100%;
}

.beer-name {
    color: #383938;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}

.beer-description {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}

.add-to-modal-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #373938;
    border: 2px solid #d4d1c5;
    color: #d4d1c5;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.add-to-modal-btn:hover {
    background: #d4d1c5;
    color: #373938;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.add-to-modal-btn:active {
    transform: scale(0.95);
}

.beer-details {
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 57, 56, 0.2);
    flex-shrink: 0;
    /* min-height: 50px; */
}

.beer-details .price-amount {
    color: #383938;
    font-size: 1.3em;
    font-weight: bold;
    margin-right: 15px;
}

/* Special price styling for slider cards */
.special-price {
    background: rgba(233, 30, 99, 0.1);
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    text-align: center;
    margin-right: 15px;
    flex: 1;
}

.special-text {
    display: block;
    color: #E91E63;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.current-price {
    color: #E91E63;
    font-weight: bold;
    font-size: 1.1em;
}

.original-price {
    color: #666;
    font-size: 0.9em;
}

/* Mobile responsive adjustments for slider */
@media (max-width: 768px) {
    .slider-container {
        gap: 15px;
        padding: 0 5px;
    }

    .content-card.beer-can-item {
        width: 260px;
        min-width: 240px;
        min-height: 380px;
    }

    .beer-name {
        font-size: 1.2em;
    }

    .beer-description {
        font-size: 0.8em;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .add-to-modal-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 12px;
        right: 12px;
    }

    .category-slider {
        padding-bottom: 5px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .content-card.beer-can-item {
        width: 220px;
        min-width: 200px;
        min-height: 360px;
    }

    .beer-content {
        padding: 12px;
    }

    .beer-name {
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    .beer-description {
        font-size: 0.75em;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        margin-bottom: 12px;
    }

    .add-to-modal-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        bottom: 10px;
        right: 10px;
    }

    .slider-container {
        gap: 10px;
    }
}

/* Back to Top Button */
#backToTopBtn {
    opacity: 0;
}

.back-to-top-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #373938 !important;
    border: 3px solid #d4d1c5 !important;
    color: #d4d1c5 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    /* opacity: 0 !important; */
    visibility: visible !important;
}

.back-to-top-btn:hover {
    background: #d4d1c5;
    color: #373938;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for back to top button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

/* Food Layout Styles (for beerbaths.php and spa26.php) */
.listfood {
    display: flex;
    background: #d4d1c5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    align-items: center;
    gap: 15px;
}

.listfood:hover {
    background: #e0ddd3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.photofood {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.photofood img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listfood:hover .photofood img {
    transform: scale(1.05);
}

.textfood {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.food_name {
    color: #383938;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.food_desc {
    color: #383938;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
}

.food_price {
    color: #383938;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: auto;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    display: none;
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #d4d1c5;
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #373938;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-button:hover {
    background: #4CAF50;
    border-color: #ffffff;
    transform: scale(1.1);
}

#modalFoodName {
    color: #333533;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

#modalFoodImage {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

#modalFoodDescription {
    color: #333533;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for food layout */
@media (max-width: 768px) {
    .listfood {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .photofood {
        width: 150px;
        height: 150px;
        align-self: center;
    }

    .textfood {
        align-items: center;
        text-align: center;
    }

    .food_name {
        font-size: 1.4em;
    }

    .food_desc {
        font-size: 1em;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
    }

    #modalFoodImage {
        height: 250px;
    }
}

/* Existing overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Vertical Navigation (Mobile) */
.vertical-nav {
    position: fixed;
    top: 70px;
    right: -300px;
    width: 250px;
    height: calc(100vh - 70px);
    /* background: #2c3e50; */
    z-index: 999;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.vertical-nav.active {
    right: 0;
}

.vertical-nav ul {
    list-style: none;
}

.vertical-nav li {
    margin-bottom: 15px;
}

.vertical-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.vertical-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Web Navigation Overlay */
.web-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1997;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Create hole over burger menu area */
.web-nav-overlay::before {
    content: '';
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    height: calc(100vh - 70px);
    background: transparent;
    z-index: 998;
}

/* Highlight circle around burger menu */
.web-nav-overlay::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 50px;
    height: 50px;
    border: 4px solid #a88203;
    border-radius: 50%;
    background: #FFC107;
    z-index: 998;
    animation: pulse-circle 2s infinite;
    cursor: pointer;
}

.web-nav-overlay-content {
    position: absolute;
    top: 10px;
    right: 120px;
    text-align: center;
    z-index: 999;
}



.web-nav-text {
    font-size: 22px;
    font-weight: bold;
    color: #58585885;
    background: #FFC107;
    padding: 18px 30px;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    animation: blink 1.5s infinite;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 300px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes pulse-circle {
    0%, 50% {
        transform: scale(1);
        opacity: 0.8;
    }
    51%, 100% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}
