/* ============================================
   Delhi House - Common Layout Styles
   Top Bar, Header/Navigation & Footer
   ============================================ */

/* ============================================
   TOP BAR STYLES
   ============================================ */

.top-bar {
    background: rgba(24, 49, 46, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 163, 94, 0.2);
    font-size: 0.875rem;
    transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    z-index: 1050;
}

.top-bar.scrolled {
    background: rgba(24, 49, 46, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar .topbar-contact a,
.top-bar .topbar-contact i {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .topbar-contact a:hover {
    color: #C9A35E;
}

.top-bar .topbar-contact i {
    color: #C9A35E;
    margin-right: 0.25rem;
}

.top-bar .separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

/* Language Switcher */
.top-bar .language-switcher a {
    opacity: 0.6;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    background: transparent;
    position: relative;
}

.top-bar .language-switcher a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    background: rgba(201, 163, 94, 0.15);
}

.top-bar .language-switcher a.active {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(201, 163, 94, 0.25);
    box-shadow: 0 0 0 2px rgba(201, 163, 94, 0.5);
}

.top-bar .language-switcher a img {
    border: 2px solid rgba(201, 163, 94, 0.2);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-bar .language-switcher a:hover img {
    border-color: rgba(201, 163, 94, 0.5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.top-bar .language-switcher a.active img {
    border-color: #C9A35E;
    box-shadow: 0 4px 8px rgba(201, 163, 94, 0.4), 0 0 12px rgba(201, 163, 94, 0.3);
}

/* Active language indicator - underline effect */
.top-bar .language-switcher a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A35E, transparent);
    border-radius: 2px;
}

/* Language text labels */
.top-bar .language-switcher .lang-text {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.top-bar .language-switcher a:hover .lang-text {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar .language-switcher a.active .lang-text {
    color: #C9A35E;
}

.top-bar .language-switcher .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Social Icons in Top Bar */
.top-bar .social-icons {
    gap: 0;
}

.top-bar .social-icons a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar .social-icons a:hover {
    color: #C9A35E;
    transform: translateY(-2px);
    background: rgba(201, 163, 94, 0.15);
}

/* Social Media and App Links Groups */
.top-bar .social-media-group,
.top-bar .app-links-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.top-bar .social-media-group a {
    font-size: 0.9rem;
}

.top-bar .app-links-group a {
    font-size: 1.05rem;
}

/* Separator styling */
.top-bar .social-icons .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    line-height: 1;
}

/* ============================================
   HEADER / NAVIGATION STYLES
   ============================================ */

.navbar-transparent {
    background: transparent !important;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    top: 40px;
    /* Account for topbar height */
}

.navbar-transparent.scrolled {
    background: rgba(24, 49, 46, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    top: 0;
    /* Move to top when scrolled */
}

/* Logo Styles */
.navbar-transparent .logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Navigation Links */
.navbar-transparent .nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
    color: #C9A35E !important;
}

/* Navigation Link Underline Effect */
.navbar-transparent .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #C9A35E;
    transition: width 0.3s ease;
}

.navbar-transparent .nav-link:hover::after,
.navbar-transparent .nav-link.active::after {
    width: 70%;
}

/* Dropdown Menu Styles */
.navbar-transparent .dropdown-menu {
    background: rgba(24, 49, 46, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 163, 94, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.navbar-transparent .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-transparent .dropdown-item:hover,
.navbar-transparent .dropdown-item.active {
    background: rgba(201, 163, 94, 0.2);
    color: #C9A35E;
}

/* Primary Button in Navigation */
.navbar-transparent .btn-primary {
    background: #C9A35E;
    border-color: #C9A35E;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.75rem;
    transition: all 0.3s ease;
}

.navbar-transparent .btn-primary:hover {
    background: #b89350;
    border-color: #b89350;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.navbar-transparent .navbar-toggler {
    border-color: rgba(201, 163, 94, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Phone Info in Header */
.navbar-transparent .phone-info {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-transparent .phone-info i {
    color: #C9A35E;
}

.navbar-transparent .phone-info .phone-number {
    color: #C9A35E;
    font-weight: 600;
}

/* Cart Icon in Header */
.navbar-transparent .cart-link {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.navbar-transparent .cart-link:hover {
    color: #C9A35E;
    transform: translateY(-2px);
}

.navbar-transparent .cart-link .cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.navbar-transparent .cart-link .cart-icon-wrapper i {
    font-size: 1.25rem;
}

.navbar-transparent .cart-link .cart-badge {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-transparent .cart-link .cart-badge.pulse-animation {
    animation: cart-pulse 0.6s ease;
}

@keyframes cart-pulse {

    0%,
    100% {
        transform: translate(-50%, 0) scale(1);
    }

    50% {
        transform: translate(-50%, 0) scale(1.3);
    }
}

/* Cart hover effect */
.navbar-transparent .cart-link:hover .cart-icon-wrapper i {
    animation: cart-shake 0.5s ease;
}

@keyframes cart-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Header Contact Info */
.navbar-transparent .header-contact-info {
    display: flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    gap: 0.4rem;
}

.navbar-transparent .header-contact-info i {
    color: #fff;
    font-size: 1.1rem;
}

.navbar-transparent .header-contact-info .contact-label {
    font-size: 0.5625rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.navbar-transparent .header-contact-info .contact-number {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.1;
}

.navbar-transparent .header-contact-info .contact-number:hover {
    color: #d4b16f;
    transform: translateX(2px);
}

/* ============================================
   FOOTER STYLES - RESTORIA DESIGN
   ============================================ */

/* Main Footer Container */
.footer-restoria {
    background: #18312e;
    margin: 0;
    padding: 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.footer-wrapper {
    width: 100%;
}

/* Two Column Layout */
.footer-map-col,
.footer-info-col {
    min-height: 700px;
    position: relative;
}

/* Map Section */
.footer-map-embed {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.footer-map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Info Section */
.footer-info-col {
    background: linear-gradient(180deg, rgba(26, 61, 58, 0.85) 0%, rgba(24, 49, 46, 0.90) 100%),
        url('../images/restaurant-interior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(24, 49, 46, 0.4); */
    pointer-events: none;
}

.footer-info-content {
    width: 100%;
    max-width: 500px;
    padding: 3rem 2rem;
    text-align: center;
}

/* Restaurant Hero Image */
.footer-hero-image {
    width: 200px;
    height: 280px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 200px 200px 0 0;
}

/* Logo Circle */
.footer-logo-circle {
    width: 100px;
    height: auto;
    margin: 0 auto 1.5rem;
    /* background: rgba(201, 163, 94, 0.15); */
    /* border: 2px solid #C9A35E; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 15px; */
}

.footer-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
}

/* Restaurant Name */
.footer-restaurant-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
}

.footer-restaurant-divider {
    width: 60px;
    height: 2px;
    background: #C9A35E;
    margin: 0 auto 0.5rem;
}

.footer-restaurant-type {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

/* Visit Us Section */
.footer-visit-section {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.diamond-left,
.diamond-right {
    color: #C9A35E;
    font-size: 0.5rem;
}

.visit-us-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #C9A35E;
    text-transform: uppercase;
}

/* Contact & Hours Row Container */
.footer-contact-hours-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

/* Contact Information */
.footer-contact-info {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-contact-info p {
    margin: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.footer-contact-info i {
    color: #C9A35E;
    font-size: 0.875rem;
}

.footer-tagline {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-location {
    font-style: normal;
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #C9A35E;
}

.footer-booking {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-booking a {
    color: #C9A35E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-booking a:hover {
    color: #d4b16f;
}

/* Opening Hours Section */
.footer-opening-hours {
    flex: 0 0 auto;
    min-width: 280px;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(201, 163, 94, 0.2);
}

.footer-opening-hours .hours-title {
    margin: 0 0 0.75rem 0;
    color: #C9A35E;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.footer-opening-hours .hours-title i {
    color: #C9A35E;
}

.footer-opening-hours .hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-opening-hours .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-opening-hours .hours-item:last-child {
    border-bottom: none;
}

.footer-opening-hours .day-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-opening-hours .hours-time {
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

/* Social Media Icons */
.footer-social-media {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 163, 94, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #C9A35E;
    border-color: #C9A35E;
    color: #18312e;
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-copyright-bar {
    background: rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
    border-top: 1px solid rgba(201, 163, 94, 0.15);
}

.copyright-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-text {
    letter-spacing: 0.5px;
}

.crafted-by {
    letter-spacing: 0.5px;
}

.crafted-by a {
    color: #C9A35E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.crafted-by a:hover {
    color: #d4b16f;
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1200px and below) */
@media (max-width: 1199.98px) {

    .footer-map-col,
    .footer-info-col {
        min-height: 650px;
    }

    .footer-map-embed {
        min-height: 650px;
    }

    .footer-info-content {
        max-width: 450px;
        padding: 2.5rem 2rem;
    }

    .footer-restaurant-name {
        font-size: 2.75rem;
    }
}

/* Tablets (992px and below) */
@media (max-width: 991.98px) {

    .footer-map-col,
    .footer-info-col {
        min-height: auto;
    }

    .footer-map-embed {
        min-height: 450px;
    }

    .footer-info-col {
        background-attachment: scroll;
        padding: 3rem 0;
    }

    .footer-restaurant-name {
        font-size: 2.5rem;
    }

    .footer-info-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .footer-hero-image {
        width: 250px;
        height: 200px;
    }

    .footer-logo-circle {
        width: 90px;
    }

    .copyright-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Small Tablets (768px and below) */
@media (max-width: 767.98px) {
    .footer-map-embed {
        min-height: 400px;
    }

    .footer-restaurant-name {
        font-size: 2.25rem;
    }

    .footer-hero-image {
        width: 220px;
        height: 180px;
    }

    .footer-logo-circle {
        width: 85px;
        margin-bottom: 1.25rem;
    }

    .footer-visit-section {
        margin: 1.5rem 0;
    }

    .footer-contact-hours-row {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.25rem 0 1.75rem;
    }

    .footer-contact-info {
        width: 100%;
        text-align: center;
    }

    .footer-contact-info p {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-opening-hours {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 1.25rem;
    }

    .footer-opening-hours .hours-title {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-opening-hours .hours-item {
        font-size: 0.8125rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 575.98px) {
    .footer-map-embed {
        min-height: 350px;
    }

    .footer-info-col {
        padding: 2rem 0;
    }

    .footer-hero-image {
        width: 180px;
        height: 160px;
    }

    .footer-logo-circle {
        width: 75px;
        margin-bottom: 1rem;
    }

    .footer-restaurant-name {
        font-size: 1.875rem;
        letter-spacing: 1px;
    }

    .footer-restaurant-divider {
        width: 50px;
    }

    .footer-restaurant-type {
        font-size: 0.6875rem;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }

    .footer-visit-section {
        margin: 1.25rem 0;
        gap: 0.75rem;
    }

    .visit-us-text {
        font-size: 0.8125rem;
        letter-spacing: 2px;
    }

    .footer-info-content {
        padding: 1.5rem 1rem;
    }

    .footer-contact-hours-row {
        gap: 1.25rem;
        margin: 1rem 0 1.5rem;
    }

    .footer-contact-info {
        padding: 0 0.5rem;
    }

    .footer-contact-info p {
        font-size: 0.8125rem;
        margin: 0.4rem 0;
    }

    .footer-opening-hours {
        max-width: 280px;
        padding: 0.875rem 1rem;
    }

    .footer-opening-hours .hours-title {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .footer-opening-hours .hours-item {
        font-size: 0.75rem;
    }

    .footer-opening-hours .day-name {
        min-width: 65px;
    }

    .footer-social-media {
        gap: 0.625rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .copyright-content {
        padding: 0 1rem;
        font-size: 0.75rem;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 479.98px) {
    .footer-map-embed {
        min-height: 300px;
    }

    .footer-info-col {
        padding: 1.5rem 0;
    }

    .footer-hero-image {
        width: 160px;
        height: 140px;
        margin-bottom: 1.5rem;
    }

    .footer-logo-circle {
        width: 70px;
    }

    .footer-restaurant-name {
        font-size: 1.625rem;
    }

    .footer-restaurant-divider {
        width: 40px;
    }

    .footer-restaurant-type {
        font-size: 0.625rem;
        letter-spacing: 2px;
        margin-bottom: 1.25rem;
    }

    .footer-visit-section {
        margin: 1rem 0;
    }

    .visit-us-text {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .diamond-left,
    .diamond-right {
        font-size: 0.375rem;
    }

    .footer-info-content {
        padding: 1.25rem 0.75rem;
    }

    .footer-contact-hours-row {
        gap: 1rem;
        margin: 0.875rem 0 1.25rem;
    }

    .footer-contact-info p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer-opening-hours {
        max-width: 260px;
        padding: 0.75rem 0.875rem;
    }

    .footer-opening-hours .hours-title {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .footer-opening-hours .hours-item {
        font-size: 0.6875rem;
        padding: 0.3rem 0;
    }

    .footer-opening-hours .day-name {
        min-width: 60px;
    }

    .footer-social-media {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.6875rem;
    }

    .footer-copyright-bar {
        padding: 0.75rem 0;
    }

    .copyright-content {
        padding: 0 0.75rem;
        font-size: 0.6875rem;
    }
}

/* Extra Extra Small Devices (360px and below) */
@media (max-width: 359.98px) {
    .footer-hero-image {
        width: 140px;
        height: 120px;
    }

    .footer-logo-circle {
        width: 65px;
    }

    .footer-restaurant-name {
        font-size: 1.5rem;
    }

    .footer-restaurant-type {
        font-size: 0.5625rem;
    }

    .visit-us-text {
        font-size: 0.6875rem;
        letter-spacing: 1px;
    }

    .footer-contact-info p {
        font-size: 0.6875rem;
    }

    .footer-opening-hours {
        max-width: 240px;
        padding: 0.625rem 0.75rem;
    }

    .footer-opening-hours .hours-title {
        font-size: 0.6875rem;
    }

    .footer-opening-hours .hours-item {
        font-size: 0.625rem;
    }

    .footer-opening-hours .day-name {
        min-width: 55px;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.625rem;
    }
}


/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #C9A35E;
    color: #18312e;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 163, 94, 0.3);
}

.scroll-to-top:hover {
    background: #b89350;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(201, 163, 94, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and Below */
@media (max-width: 991px) {

    /* Make navbar solid on mobile */
    .navbar-transparent {
        background: rgba(24, 49, 46, 0.98) !important;
        backdrop-filter: blur(10px);
    }

    /* Adjust header contact info on tablets */
    .navbar-transparent .header-contact-info {
        font-size: 0.8rem;
    }

    .navbar-transparent .header-contact-info .contact-number {
        font-size: 0.7rem;
    }
}

/* Tablets and Small Devices */
@media (max-width: 767.98px) and (min-width: 576px) {

    /* Optimized top bar for tablets/landscape phones */
    .top-bar {
        padding: 0.45rem 0;
    }

    .top-bar .language-switcher a img {
        width: 17px;
        height: 11px;
    }

    .top-bar .social-icons a {
        font-size: 0.85rem;
    }

    .navbar-transparent {
        top: 38px;
    }
}

/* Mobile Devices */
@media (max-width: 767.98px) {

    /* Mobile-Optimized Top Bar Layout */
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.7rem;
    }

    .top-bar .container {
        padding: 0 0.75rem;
    }

    .top-bar .row {
        margin: 0;
    }

    /* Single line mobile layout */
    .top-bar .topbar-contact {
        display: none;
        /* Hide on mobile, show only essentials */
    }

    .top-bar .col-12 {
        padding: 0 0.25rem;
    }

    /* Language switcher - compact mobile view */
    .top-bar .topbar-language {
        order: 1;
        flex: 0 0 auto;
        width: auto;
        text-align: left !important;
    }

    .top-bar .language-switcher {
        gap: 0.5rem;
    }

    .top-bar .language-switcher a {
        padding: 0.2rem 0.4rem;
    }

    .top-bar .language-switcher a img {
        width: 16px;
        height: 11px;
    }

    .top-bar .language-switcher .separator {
        margin: 0 0.25rem;
    }

    /* Social icons - compact mobile view */
    .top-bar .topbar-social {
        order: 2;
        flex: 1 1 auto;
        width: auto;
        text-align: right !important;
    }

    .top-bar .social-icons {
        gap: 0;
        justify-content: flex-end !important;
    }

    .top-bar .social-media-group,
    .top-bar .app-links-group {
        gap: 0.4rem;
    }

    .top-bar .social-icons a {
        font-size: 0.75rem;
        width: 26px;
        height: 26px;
    }

    .top-bar .social-media-group a {
        font-size: 0.7rem;
    }

    .top-bar .app-links-group a {
        font-size: 0.8rem;
    }

    .top-bar .social-icons .separator {
        margin: 0 0.3rem;
        font-size: 0.7rem;
    }

    /* Adjust navbar position */
    .navbar-transparent {
        top: 35px;
        /* Adjusted for smaller mobile topbar */
    }

    .navbar-transparent.scrolled {
        top: 0;
    }

    /* Footer Mobile Adjustments */
    .footer {
        text-align: center;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 30px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-social {
        justify-content: center;
    }

    .footer a:hover {
        padding-left: 0;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {

    /* Mobile-Only Top Bar - Ultra Compact Layout */
    .top-bar {
        padding: 0.35rem 0;
        font-size: 0.65rem;
    }

    .top-bar .container {
        padding: 0 0.5rem;
    }

    /* Hide contact info, keep only language and key social */
    .top-bar .topbar-contact {
        display: none;
    }

    /* Compact language switcher */
    .top-bar .topbar-language {
        flex: 0 0 auto;
        width: auto;
    }

    .top-bar .language-switcher {
        gap: 0.4rem;
    }

    .top-bar .language-switcher a {
        padding: 0.15rem 0.3rem;
    }

    .top-bar .language-switcher a img {
        width: 14px;
        height: 10px;
    }

    /* Minimal social icons */
    .top-bar .topbar-social {
        flex: 1 1 auto;
        width: auto;
    }

    .top-bar .social-icons {
        gap: 0;
    }

    .top-bar .social-media-group,
    .top-bar .app-links-group {
        gap: 0.35rem;
    }

    .top-bar .social-icons a {
        width: 24px;
        height: 24px;
    }

    .top-bar .social-media-group a {
        font-size: 0.7rem;
    }

    .top-bar .app-links-group a {
        font-size: 0.75rem;
    }

    .top-bar .social-icons .separator {
        margin: 0 0.25rem;
        font-size: 0.65rem;
    }

    /* Navbar adjustments */
    .navbar-transparent {
        top: 30px;
        padding: 0.75rem 0;
    }

    .navbar-transparent.scrolled {
        top: 0;
    }

    .navbar-transparent .logo-img {
        height: 45px;
    }

    /* Ensure navbar toggler is visible and styled */
    .navbar-transparent .navbar-toggler {
        display: block;
        border: 2px solid rgba(201, 163, 94, 0.8);
        padding: 0.4rem 0.6rem;
    }

    .navbar-transparent .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(201, 163, 94, 0.3);
        outline: none;
    }

    /* Hide header contact info on very small screens */
    .navbar-transparent .header-contact-info {
        display: none !important;
    }

    .footer .opening-hours-table {
        font-size: 0.8rem;
        padding: 1rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {

    .top-bar,
    .navbar,
    .navbar-transparent,
    .footer,
    .scroll-to-top {
        display: none !important;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus States for Keyboard Navigation */
.top-bar a:focus,
.navbar-transparent .nav-link:focus,
.navbar-transparent .dropdown-item:focus,
.footer a:focus,
.scroll-to-top:focus {
    outline: 2px solid #C9A35E;
    outline-offset: 2px;
}

/* Skip to Content Link (for screen readers) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #C9A35E;
    color: #18312e;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .top-bar,
    .navbar-transparent.scrolled,
    .footer {
        background: #000 !important;
    }

    .top-bar a,
    .navbar-transparent .nav-link,
    .footer a {
        color: #fff !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .top-bar,
    .navbar-transparent,
    .navbar-transparent .nav-link,
    .navbar-transparent .nav-link::after,
    .footer a,
    .footer .footer-social a,
    .scroll-to-top {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================
   MOBILE NAVIGATION FIXES
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #18312e;
        /* Brand Dark Green */
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(201, 163, 94, 0.3);
        /* Gold border */
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 5px 0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-transparent .nav-link {
        padding: 10px 0;
        text-align: left !important;
    }

    .navbar-transparent .nav-link:hover,
    .navbar-transparent .nav-link.active {
        padding-left: 10px;
        /* Indent on hover */
        background: rgba(255, 255, 255, 0.03);
    }

    .navbar-transparent .nav-link::after {
        display: none;
        /* Remove underline animation on mobile */
    }

    /* Dropdown Menus */
    .navbar-transparent .dropdown-menu {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
        padding-left: 20px;
        margin-top: 0;
    }

    /* Buttons (Login/Register/Order) */
    .navbar-nav .btn {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 5px;
        display: block;
        text-align: center;
    }

    /* Cart Icon */
    .navbar-nav .cart-link {
        display: inline-block;
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    .navbar-nav .cart-link .cart-icon-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Add text label for cart if needed, or just style the icon better */
    .navbar-nav .cart-link::after {
        content: ' Cart';
        font-family: 'Jost', sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        margin-left: 8px;
    }
}

/* ============================================
   ADDED: OPENING HOURS MODAL FIXES
   ============================================ */
.opening-hours-list {
    padding-right: 5px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border for light bg */
    transition: background-color 0.2s;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.hours-row.today {
    background-color: rgba(201, 163, 94, 0.1);
    border-radius: 6px;
    border-bottom: none;
}

.hours-row .day-name {
    font-weight: 600;
    color: #333;
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hours-row .day-hours {
    flex: 0 0 65%;
    text-align: right;
    padding-left: 10px;
}

.hours-row .day-hours .text-danger {
    color: #dc3545 !important;
    font-weight: 600;
}

.hours-row .day-hours .text-success {
    color: #198754 !important;
    font-weight: 500;
}

.hours-row .day-hours small.text-muted {
    font-size: 0.85em;
    margin-top: 4px;
    line-height: 1.3;
    display: block;
    color: #6c757d !important;
    white-space: normal;
    /* Allow wrapping */
    text-align: right;
}

/* Mobile responsive styles for opening hours */
@media (max-width: 767.98px) {
    .hours-row {
        flex-direction: column;
        gap: 5px;
    }

    .hours-row .day-name {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 2px;
    }

    .hours-row .day-hours {
        flex: 0 0 100%;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .hours-row .day-hours small.text-muted {
        margin-top: 2px;
        text-align: left;
    }
}