/* Main Wrapper */
.ls-wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
    color: var(--ls-text, #1A1A1A);
    box-sizing: border-box;
}

.ls-wrapper * {
    box-sizing: border-box;
}

/* Header & Nav */
/* Header & Nav */
.ls-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ls-section-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: var(--ls-section-title, #000000);
    /* Variable title color */
    letter-spacing: -0.02em;
}

.ls-arrows {
    display: flex;
    gap: 0.5rem;
}

.ls-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: var(--ls-nav-bg, #f0f0f0);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--ls-nav-arrow, #1a1a1a);
}

.ls-nav-btn:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

/* Navigation Container (Tabs + Arrows) */
.ls-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* Scrollable Tabs List */
.ls-tabs-list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
    padding-bottom: 4px;
    /* Space for scrollbar if visible, effectively hidden by styling below */

    /* Hide scrollbar for Chrome, Safari and Opera */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.ls-tabs-list::-webkit-scrollbar {
    display: none;
}

.ls-arrows {
    flex-shrink: 0;
    /* Prevent arrows from shrinking */
    display: flex;
    gap: 0.5rem;
}

.ls-tab-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--ls-tab-inactive-bg, transparent);
    /* Use variable for inactive bg */
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--ls-tab-inactive-text, var(--ls-text));
    /* Use variable for inactive text */
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
}

.ls-tab-pill:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.ls-tab-pill.active {
    background-color: var(--ls-tab-active-bg, #ffffff);
    color: var(--ls-tab-active-text, #000000);
    border-color: var(--ls-tab-active-bg, #ffffff);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Content Container */
.ls-content-container {
    background-color: var(--ls-bg, #F4F4F4);
    /* Light gray background */
    position: relative;
    /* overflow: hidden; Not needed unless rounding corners */
}

/* Panel Layout */
.ls-location-panel {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* Remove fixed min-height to let content dictate, or use smaller min-height */
    /* min-height: 480px; */
    border-radius: 8px;
    /* rounded-mercury-ui-md (approx) */
    /* background-color: #fff; REMOVED to respect container bg */
    /* Ensure bg is white if showing through */
    /* Padding is handled by info column, map is image-like */
}

.ls-map-column {
    width: 35%;
    /* Adjust width to match reference better (approx 1/3) */
    position: relative;
    /* Rounding for the map side */
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    /* Clip iframe corners */
}

/* On mobile, full width and rounded top only or similar */
@media (max-width: 900px) {
    .ls-location-panel {
        flex-direction: column-reverse;
    }

    .ls-map-column {
        width: 100%;
        height: 200px;
        /* Shorter map on mobile */
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
}

.ls-map-frame {
    height: 100%;
    width: 100%;
    background: #E0E0E0;
}

.ls-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.ls-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #DDD;
    color: #888;
    font-weight: 500;
}

/* Info Column */
.ls-info-column {
    flex: 1;
    padding: 24px 32px;
    /* px-6 py-8 */
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    /* Ensure background color applies if set on parent, but wrapper handles it */
}

/* ... media query unchanged ... */

/* Header Row: Title & Directions Button */
.ls-info-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.ls-header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ls-small-brand {
    font-size: 0.875rem;
    color: var(--ls-brand, #4d4d4d);
    /* Use variable */
    font-weight: 500;
}

.ls-location-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ls-text);
}

/* Get Directions Pill Button */
.ls-directions-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 40px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #d6d6d6;
    background-color: var(--ls-btn-dir-bg, #ffffff);
    /* Variable bg */
    color: var(--ls-btn-dir-text, #0d0d0d);
    /* Variable text */
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ls-directions-pill-btn:hover {
    color: var(--ls-link-hover, #333333);
    border-color: var(--ls-link-hover, #333333);
    background-color: #f9f9f9;
    /* Slight bg change for feedback */
}

/* Details Grid */
.ls-details-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .ls-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.ls-detail-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ls-label {
    font-size: 0.875rem;
    color: var(--ls-label, #4d4d4d);
    /* Use variable */
    font-weight: 500;
    display: block;
}

.ls-wrapper .ls-address-text,
.ls-wrapper .ls-address-text a {
    font-size: 0.875rem;
    color: var(--ls-text) !important;
    font-weight: 400;
    line-height: 1.5;
    font-style: normal;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.ls-wrapper .ls-address-text a:hover {
    color: var(--ls-link-hover, #333333) !important;
    text-decoration: underline;
}

.ls-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.ls-contact-link {
    font-size: 0.875rem;
    color: var(--ls-text);
    text-decoration: none;
    line-height: 1.5;
    min-height: 25px;
    display: inline-flex;
    align-items: center;
}

.ls-contact-link:hover {
    text-decoration: underline;
    color: var(--ls-link-hover, #333333);
}

/* Divider */
.ls-divider {
    height: 1px;
    background-color: #d6d6d6;
    width: 100%;
}

/* Footer / Hours */
.ls-info-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

@media (min-width: 640px) {
    .ls-info-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.ls-hours-text {
    font-size: 0.875rem;
    color: var(--ls-text);
    /* Logic text usually matches body text */
    line-height: 1.5;
}

/* Actions */
.ls-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 640px) {
    .ls-actions {
        flex-direction: row;
        width: auto;
    }
}

/* Order Link */
.ls-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--ls-primary);
    /* Use variable */
    font-weight: 500;
    transition: all 0.2s ease;

    /* Mobile emphasis */
    width: 100%;
    padding: 12px 24px;
    border: 1px solid var(--ls-primary);
    border-radius: 6px;
}

@media (min-width: 640px) {
    .ls-text-link {
        width: auto;
        padding: 0;
        border: none;
        border-radius: 0;
        justify-content: flex-start;
        color: var(--ls-link-order, #4d4d4d);
    }
}

.ls-text-link:hover {
    color: var(--ls-link-hover, #333333);
    border-color: var(--ls-link-hover, #333333);
}

/* Reservation / Order Now Button */
.ls-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--ls-primary);
    color: var(--ls-btn-res-text, #ffffff);
    /* Use variable */
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
    width: 100%;
    text-align: center;
}

.ls-location-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ls-location-title a:hover {
    color: var(--ls-link-hover, #333333);
}

@media (min-width: 768px) {
    .ls-primary-btn {
        width: auto;
        min-width: 120px;
    }
}

.ls-primary-btn:hover {
    background-color: var(--ls-btn-res-hover-bg, #e67373);
    color: var(--ls-btn-res-hover-text, #ffffff);
}

/* Accessibility Focus Styles */
/* Accessibility Focus Styles for Plugin Elements Only */
.ls-wrapper .ls-tab-pill:focus-visible,
.ls-wrapper .ls-nav-btn:focus-visible,
.ls-wrapper .ls-directions-pill-btn:focus-visible,
.ls-wrapper .ls-contact-link:focus-visible,
.ls-wrapper .ls-text-link:focus-visible,
.ls-wrapper .ls-primary-btn:focus-visible,
.ls-wrapper a:focus-visible,
.ls-wrapper button:focus-visible {
    outline: 2px solid #000;
    /* High contrast outline */
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

/* Ensure focus is not hidden for keyboard users within wrapper */
.ls-wrapper :focus:not(:focus-visible) {
    outline: none;
}