/* Location Sidebar Styles */
.location-sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background-color: #2e140a;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.location-sidebar-wrapper.show {
    transform: translateX(0);
}

.location-sidebar-content {
    padding: 25px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sidebar Divider */
.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 240, 215, 0.3), transparent);
    margin: 20px 0;
    position: relative;
}

.sidebar-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(253, 240, 215, 0.5);
    border-radius: 50%;
}

.location-sidebar-content .closeButton {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(253, 240, 215, 0.1);
    border: none;
    color: #fdf0d7;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.location-sidebar-content .closeButton:hover {
    background: rgba(253, 240, 215, 0.2);
    color: #fff;
}

/* About Section - Like Footer */


.location-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.location-logo img {
    width: 100px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #fdf0d7;
    font-size: xx-large !important;
    font-weight: 600;
    line-height: 1.2;
}

.brand-tagline {
    color: rgba(253, 240, 215, 0.7);
    font-size: 11px;
}

.location-about .about-text {
    color: rgba(253, 240, 215, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Map */
.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-map iframe {
    display: block;
    transition: all 0.3s ease;
}

.location-map:hover iframe {
    filter: brightness(1.05);
}

/* Widget Title */
.widget-title {
    color: #fdf0d7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(253, 240, 215, 0.2);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fdf0d7;
}

/* Location Menu */
.location-widget {
    background: rgba(253, 240, 215, 0.03);
    padding: 15px;
    border-radius: 8px;
}

.location-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-menu li {
    margin-bottom: 10px;
}

.location-menu li:last-child {
    margin-bottom: 0;
}

.location-menu a {
    color: rgba(253, 240, 215, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    display: block;
}

.location-menu a:hover {
    color: #fdf0d7;
}

/* Info Box - Like Footer */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* .info-box .box-icon {
    width: 40px;
    height: 40px;
    background: rgba(253, 240, 215, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdf0d7;
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(253, 240, 215, 0.2);
    transition: all 0.3s ease;
} */

.info-box:hover .box-icon {
    background: rgba(253, 240, 215, 0.2);
    transform: scale(1.1);
}

/*  */

.info-box .box-link {
    color: #fdf0d7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box .box-link:hover {
    color: #fff;
}

/* Social Links - Footer Style */
.location-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.location-social .social-title {
    color: rgba(253, 240, 215, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.location-social .social-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: rgba(253, 240, 215, 0.3);
    margin: 8px auto 0;
}

.location-social .social-links-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-social .social-link-sidebar {
    border-radius: 50%;
    transition: all 0.3s ease;
}

.location-social a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: rgba(253, 240, 215, 0.1);
    border: 1px solid rgba(253, 240, 215, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fdf0d7 !important;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-social a:hover {
    background: #fdf0d7;
    color: #4b2110 !important;
    border-color: #fdf0d7;
}

/* Overlay */
.location-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.location-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .location-sidebar-wrapper {
        width: 85%;
    }
    
    .location-sidebar-content {
        padding: 20px;
    }
}

body.location-sidebar-open {
    overflow: hidden;
}
