
/**
 * Public CSS for Location Based Delivery
 *
 * @package Location_Based_Delivery
 */

/* Popup Overlay */
.lbd-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Popup Content */
.lbd-popup-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    animation: lbdFadeInUp 0.3s ease-out;
}

.lbd-map-popup {
    max-width: 800px;
}

@keyframes lbdFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popup Header */
.lbd-popup-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.lbd-popup-header h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.lbd-popup-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.lbd-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lbd-popup-close:hover {
    color: #333;
    background: #f5f5f5;
    transform: rotate(90deg);
}

.lbd-popup-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Popup Body */
.lbd-popup-body {
    padding: 30px;
}

/* Buttons */
.lbd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.lbd-btn-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
}

/* Location Option Button */
.lbd-btn-location {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 20px 24px;
}

.lbd-btn-location:hover {
    background: #e8f5e9;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.lbd-location-option-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.lbd-location-option-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.lbd-location-option-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.lbd-location-option-action {
    font-size: 14px;
    font-weight: 500;
    color: #4CAF50;
}

.lbd-btn-primary {
    background: #4CAF50;
    color: white;
}

.lbd-btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.lbd-btn-success {
    background: #4CAF50;
    color: white;
}

.lbd-btn-success:hover {
    background: #45a049;
}

.lbd-btn-success.lbd-btn-disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.lbd-btn-success.lbd-btn-disabled:hover {
    background: #cccccc;
    transform: none;
    box-shadow: none;
}

.lbd-btn-text {
    background: transparent;
    color: #4CAF50;
    border: 1px solid #4CAF50;
    padding: 8px 16px;
    font-size: 14px;
}

.lbd-btn-text:hover {
    background: #f5f5f5;
}

/* Divider */
.lbd-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #999;
}

.lbd-divider::before,
.lbd-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.lbd-divider span {
    padding: 0 15px;
    font-size: 14px;
}

/* Login Link */
.lbd-login-link {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.lbd-login-text {
    font-size: 14px;
    color: #666;
}

.lbd-login-action {
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lbd-login-action:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Mandatory location state - hide close button */
.lbd-popup-overlay.lbd-mandatory-location .lbd-popup-close {
    display: none !important;
}

/* Address Search Container */
.lbd-search-container {
    margin-bottom: 20px;
}

.lbd-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.lbd-search-input-wrapper:focus-within {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.lbd-search-icon {
    flex-shrink: 0;
    color: #999;
    margin-right: 10px;
}

.lbd-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
    font-family: inherit;
}

.lbd-search-input::placeholder {
    color: #999;
}

.lbd-search-clear {
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.lbd-search-clear:hover {
    background: #f5f5f5;
    color: #666;
}

.lbd-search-hint {
    margin: 10px 0 0 0;
    font-size: 13px;
    color: #888;
    text-align: center;
}

/* Google Places Autocomplete Dropdown */
.pac-container {
    z-index: 10000001 !important; /* Must be higher than popup overlay (999999) */
    margin-top: 2px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    font-family: inherit;
    background-color: #fff !important;
    position: fixed !important; /* Ensure it's fixed positioned */
}

/* Ensure pac-container appears above all modals */
.pac-container::after {
    content: '';
    display: block;
    clear: both;
}

.pac-item {
    padding: 10px 15px;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.4;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background: #f8f9fa;
}

.pac-item-selected,
.pac-item-selected:hover {
    background: #e8f5e9;
}

.pac-icon {
    margin-right: 10px;
}

.pac-item-query {
    font-size: 14px;
    color: #333;
}

/* Map Container */
.lbd-map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Service Area Message */
.lbd-service-area-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #856404;
}

.lbd-service-area-message.lbd-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.lbd-service-area-message svg {
    flex-shrink: 0;
}

/* Location Info */
.lbd-location-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lbd-location-address h3 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.lbd-location-address p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Hide the Change Location button - Issue fix */
#lbdChangeLocationBtn {
    display: none !important;
}

/* Loading Overlay */
.lbd-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lbd-loading-spinner {
    text-align: center;
}

.lbd-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: lbdSpin 1s linear infinite;
}

@keyframes lbdSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lbd-loading-spinner p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Improve mobile popup scrolling */
    .lbd-popup-overlay {
        align-items: flex-start; /* Align to top for better scrolling */
        padding: 10px;
    }
    
    .lbd-popup-content {
        max-width: 95%;
        margin: 10px auto;
        max-height: 95vh; /* Prevent popup from being too tall */
        overflow-y: auto; /* Allow internal scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .lbd-popup-header {
        padding: 20px;
        position: sticky; /* Keep header visible while scrolling */
        top: 0;
        background: #ffffff;
        z-index: 10;
    }
    
    .lbd-popup-body {
        padding: 20px;
        overflow-y: auto; /* Allow scrolling within body */
    }
    
    .lbd-search-container {
        margin-bottom: 15px;
    }
    
    .lbd-search-input-wrapper {
        padding: 10px 14px;
    }
    
    .lbd-search-input {
        font-size: 14px;
    }
    
    .lbd-search-hint {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .lbd-map-container {
        height: 300px;
    }
    
    .lbd-popup-header h2 {
        font-size: 20px;
    }
    
    .lbd-btn-large {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .lbd-location-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .lbd-map-container {
        height: 250px;
    }
    
    .lbd-popup-header h2 {
        font-size: 18px;
    }
}

/* Header Location Display */
/* Container that wraps both logo and location display */
.lbd-logo-location-container {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.lbd-header-location-wrapper {
    display: inline-flex !important;
    align-items: center;
    position: relative;
    z-index: 1000;
    vertical-align: middle;
    margin-left: 20px !important;
    flex-shrink: 0;
}

/* Fallback positioning if no suitable container found */
.lbd-header-location-wrapper.lbd-fallback-position {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.lbd-header-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    white-space: nowrap;
    line-height: 1;
}

/* Fallback position styling */
.lbd-fallback-position .lbd-header-location {
    margin-left: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lbd-header-location:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
    transform: translateY(-1px);
}

.lbd-location-icon {
    width: 16px;
    height: 16px;
    fill: #4CAF50;
    flex-shrink: 0;
    margin-right: 4px;
}

.lbd-location-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
}

.lbd-location-name-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.lbd-location-name {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    line-height: 1;
}

.lbd-delivery-time {
    color: #4CAF50;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* Location State Variations */
/* Default state - location is set and in delivery area */
.lbd-header-location.lbd-location-in-area .lbd-location-icon {
    fill: #4CAF50;
}

.lbd-header-location.lbd-location-in-area .lbd-delivery-time {
    color: #4CAF50;
}

/* Location not set state */
.lbd-header-location.lbd-location-not-set {
    border-color: #2196F3;
    background: #E3F2FD;
}

.lbd-header-location.lbd-location-not-set:hover {
    border-color: #1976D2;
    background: #BBDEFB;
}

.lbd-header-location.lbd-location-not-set .lbd-location-icon {
    fill: #2196F3;
}

.lbd-header-location.lbd-location-not-set .lbd-location-name {
    color: #1976D2;
}

.lbd-header-location.lbd-location-not-set .lbd-delivery-time {
    color: #2196F3;
    font-weight: 500;
}

/* Location outside delivery area state */
.lbd-header-location.lbd-location-outside-area {
    border-color: #FF9800;
    background: #FFF3E0;
}

.lbd-header-location.lbd-location-outside-area:hover {
    border-color: #F57C00;
    background: #FFE0B2;
}

.lbd-header-location.lbd-location-outside-area .lbd-location-icon {
    fill: #FF9800;
}

.lbd-header-location.lbd-location-outside-area .lbd-location-name {
    color: #E65100;
}

.lbd-header-location.lbd-location-outside-area .lbd-delivery-time {
    color: #F57C00;
    font-weight: 600;
}

/* Position beside logo - works with most WordPress themes */
body.admin-bar .lbd-header-location-wrapper {
    margin-top: 32px;
}

/* Integration with common header structures */
header .lbd-header-location-wrapper,
.site-header .lbd-header-location-wrapper,
.header .lbd-header-location-wrapper,
nav .lbd-header-location-wrapper,
.navbar .lbd-header-location-wrapper {
    display: inline-flex !important;
    vertical-align: middle;
}

/* Ensure inline display within common logo containers */
.logo + .lbd-header-location-wrapper,
.site-logo + .lbd-header-location-wrapper,
.custom-logo-link + .lbd-header-location-wrapper,
.site-branding + .lbd-header-location-wrapper,
a[rel="home"] + .lbd-header-location-wrapper {
    display: inline-flex !important;
    vertical-align: middle;
}

/* Make parent containers of logo flexible to accommodate inline elements */
.logo:has(+ .lbd-header-location-wrapper),
.site-logo:has(+ .lbd-header-location-wrapper),
.custom-logo-link:has(+ .lbd-header-location-wrapper),
.site-branding:has(+ .lbd-header-location-wrapper),
a[rel="home"]:has(+ .lbd-header-location-wrapper),
a[href*="grosri"]:has(+ .lbd-header-location-wrapper) {
    display: inline-block !important;
    vertical-align: middle;
}

/* Ensure parent containers can accommodate both logo and location inline */
header:has(.lbd-header-location-wrapper),
.site-header:has(.lbd-header-location-wrapper),
.header:has(.lbd-header-location-wrapper),
nav:has(.lbd-header-location-wrapper),
.navbar:has(.lbd-header-location-wrapper) {
    /* Allow wrapping for flexibility */
}

/* Specific rules for common WordPress theme structures */
.site-branding:has(.lbd-header-location-wrapper) {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

/* Force inline display for elements next to location wrapper */
header > *,
.site-header > *,
.header > * {
    display: inline-block;
    vertical-align: middle;
}

/* Revert specific elements that shouldn't be inline */
header > nav,
.site-header > nav,
.header > nav,
header > .navigation,
.site-header > .navigation,
.header > .navigation {
    display: block;
}

/* Grosri-specific fixes */
.grosri-logo + .lbd-header-location-wrapper,
#grosri-logo + .lbd-header-location-wrapper,
a[href*="grosri"] + .lbd-header-location-wrapper {
    display: inline-flex !important;
    vertical-align: middle;
    margin-left: 20px !important;
}

/* Container that holds both logo and location should be flex */
div:has(> .logo + .lbd-header-location-wrapper),
div:has(> .site-logo + .lbd-header-location-wrapper),
div:has(> .custom-logo-link + .lbd-header-location-wrapper),
div:has(> a[rel="home"] + .lbd-header-location-wrapper),
div:has(> a[href*="grosri"] + .lbd-header-location-wrapper) {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

/* Responsive Design for Header Location */
@media (max-width: 1024px) {
    .lbd-logo-location-container {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .lbd-header-location-wrapper {
        margin-left: 15px !important;
    }
    
    .lbd-header-location {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .lbd-location-icon {
        width: 14px;
        height: 14px;
        margin-right: 3px;
    }
    
    .lbd-location-name {
        font-size: 12px;
    }
    
    .lbd-delivery-time {
        font-size: 10px;
        font-weight: 700;
    }
    
    /* Adjust fallback position for tablets */
    .lbd-header-location-wrapper.lbd-fallback-position {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .lbd-logo-location-container {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .lbd-header-location-wrapper {
        margin-left: 10px !important;
    }
    
    .lbd-header-location {
        padding: 5px 10px;
        gap: 6px;
    }
    
    .lbd-location-text {
        display: none;
    }
    
    .lbd-header-location {
        border-radius: 50%;
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
    }
    
    .lbd-location-icon {
        width: 20px;
        height: 20px;
        margin: 0;
    }
    
    /* Mobile fallback positioning */
    .lbd-header-location-wrapper.lbd-fallback-position {
        top: 10px;
        right: 10px;
    }
    
    .lbd-fallback-position .lbd-header-location {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .lbd-fallback-position .lbd-location-text {
        display: none;
    }
    
    .lbd-fallback-position .lbd-location-icon {
        margin: 0;
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .lbd-logo-location-container {
        display: flex !important;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .lbd-header-location-wrapper {
        margin-left: 8px !important;
    }
    
    .lbd-header-location {
        width: 32px;
        height: 32px;
    }
    
    .lbd-location-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Small mobile fallback positioning */
    .lbd-header-location-wrapper.lbd-fallback-position {
        top: 8px;
        right: 8px;
    }
    
    .lbd-fallback-position .lbd-header-location {
        width: 36px;
        height: 36px;
    }
    
    .lbd-fallback-position .lbd-location-icon {
        width: 20px;
        height: 20px;
    }
}



/* Success Message */
.lbd-success-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000001;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease;
}

/* Temporary Message */
.lbd-temp-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000001;
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: fadeInScale 0.3s ease;
    text-align: center;
    max-width: 90%;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Responsive styles for new elements */
@media (max-width: 768px) {
    .lbd-btn-location {
        padding: 16px 20px;
    }
    
    .lbd-location-option-name {
        font-size: 16px;
    }
    
    .lbd-location-option-action {
        font-size: 13px;
    }
    
    .lbd-login-link {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .lbd-login-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lbd-btn-location {
        padding: 14px 16px;
    }
    
    .lbd-location-option-content {
        gap: 12px;
    }
    
    .lbd-location-option-name {
        font-size: 15px;
    }
    
    .lbd-location-option-action {
        font-size: 12px;
    }
    
    .lbd-login-text {
        font-size: 12px;
    }
    
    .lbd-temp-message {
        max-width: 85%;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ========================================
   Mobile Shortcode Location Button Styles
   ======================================== */

/* Hide shortcode version on desktop - only show on mobile */
.lbd-mobile-location-wrapper,
.lbd-shortcode-location-wrapper {
    display: none !important;
}

/* Show shortcode version ONLY on mobile (768px and below) */
@media (max-width: 768px) {
    /* Show the shortcode location button */
    .lbd-mobile-location-wrapper,
    .lbd-shortcode-location-wrapper {
        display: block !important;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure the location button inside shortcode is visible and full-width */
    .lbd-shortcode-location-wrapper .lbd-header-location {
        display: flex !important;
        width: 100%;
        border-radius: 12px;
        padding: 12px 16px;
        justify-content: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    /* Show full text on mobile for shortcode version */
    .lbd-shortcode-location-wrapper .lbd-location-text {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
    }
    
    /* Ensure icon is visible */
    .lbd-shortcode-location-wrapper .lbd-location-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        display: block !important;
    }
    
    /* Ensure name and delivery time are visible */
    .lbd-shortcode-location-wrapper .lbd-location-name {
        display: inline !important;
        font-size: 14px;
    }
    
    .lbd-shortcode-location-wrapper .lbd-delivery-time {
        display: inline !important;
        font-size: 12px;
    }
    
    /* Hide the header-injected location display on mobile */
    /* This ensures only the shortcode version shows on mobile */
    .lbd-header-location-wrapper:not(.lbd-shortcode-location-wrapper) {
        display: none !important;
    }
    
    /* Also hide the logo-location container version */
    .lbd-logo-location-container .lbd-header-location-wrapper {
        display: none !important;
    }
}

/* Extra styling for very small mobile devices */
@media (max-width: 480px) {
    .lbd-shortcode-location-wrapper .lbd-header-location {
        padding: 20px 9px;
    }
    
    .lbd-shortcode-location-wrapper .lbd-location-icon {
        width: 16px;
        height: 16px;
    }
    
    .lbd-shortcode-location-wrapper .lbd-location-name {
        font-size: 13px;
    }
    
    .lbd-shortcode-location-wrapper .lbd-delivery-time {
        font-size: 11px;
    }
}
