/**
 * KB Store Locator - Front Styles
 */

/* Container */
.kbsl-container {
    padding: 20px 0;
}

/* Map Styles */
.kbsl-map {
    height: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kbsl-mini-map {
    height: 150px;
    width: 100%;
    border-radius: 4px;
}

.kbsl-modal-map {
    height: 250px;
    width: 100%;
    border-radius: 4px;
}

.kbsl-home-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

/* Search Panel */
.kbsl-search-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kbsl-search-panel .card-header {
    background: #2fb5d2;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.kbsl-search-panel .card-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.kbsl-search-form .input-group {
    margin-bottom: 15px;
}

#kbsl-use-location {
    margin-top: 10px;
}

#kbsl-use-location i {
    vertical-align: middle;
    margin-right: 5px;
}

/* Store List */
.kbsl-stores-list {
    max-height: 500px;
    overflow-y: auto;
}

.kbsl-stores-list .card-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.kbsl-store-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.kbsl-store-item:hover {
    background-color: #f8f9fa;
}

.kbsl-store-item.active {
    background-color: #e3f2fd;
    border-left: 3px solid #2fb5d2;
}

.kbsl-store-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #232323;
}

.kbsl-store-address {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 5px;
}

.kbsl-store-phone {
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.kbsl-store-phone i {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 5px;
    color: #2fb5d2;
}

.kbsl-store-distance {
    display: inline-block;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 10px;
}

.kbsl-store-actions {
    display: flex;
    gap: 10px;
}

.kbsl-store-actions .btn {
    font-size: 0.8rem;
}

/* Info Window */
.kbsl-info-window {
    max-width: 280px;
    padding: 10px;
}

.kbsl-info-window h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #232323;
}

.kbsl-info-window p {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.kbsl-info-window .btn {
    margin-top: 10px;
}

/* Modal Styles */
#kbsl-store-modal .modal-header {
    background: #2fb5d2;
    color: #fff;
}

#kbsl-store-modal .modal-header .close {
    color: #fff;
    opacity: 1;
}

#kbsl-modal-hours table {
    width: 100%;
    font-size: 0.875rem;
}

#kbsl-modal-hours table td {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

#kbsl-modal-hours table td:first-child {
    font-weight: 500;
}

/* Pickup Container (Checkout) */
.kbsl-pickup-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.kbsl-pickup-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kbsl-pickup-panel .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.kbsl-pickup-panel .card-header h4 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.kbsl-pickup-panel .card-header h4 i {
    margin-right: 10px;
    color: #2fb5d2;
}

.kbsl-store-info {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.kbsl-pickup-summary {
    margin-top: 20px;
}

.kbsl-pickup-summary h5 {
    display: flex;
    align-items: center;
}

.kbsl-pickup-summary h5 i {
    margin-right: 10px;
}

/* Order Detail Pickup Info */
.kbsl-order-pickup {
    margin-top: 20px;
}

.kbsl-order-pickup .card-header {
    background: #f8f9fa;
}

.kbsl-order-pickup .card-header h4 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.kbsl-order-pickup .card-header h4 i {
    margin-right: 10px;
    color: #2fb5d2;
}

/* Home Widget */
.kbsl-home-widget {
    padding: 40px 0;
    background: #f8f9fa;
    margin: 20px 0;
}

.kbsl-widget-title {
    text-align: center;
    margin-bottom: 30px;
    color: #232323;
}

.kbsl-search-widget {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.kbsl-featured-store.card {
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kbsl-featured-store.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Navigation Link */
.kbsl-nav-item a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kbsl-nav-item a i {
    font-size: 1rem;
}

/* Loading State */
.kbsl-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.kbsl-loading::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2fb5d2;
    border-radius: 50%;
    animation: kbsl-spin 1s linear infinite;
}

@keyframes kbsl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .kbsl-map {
        height: 350px;
        margin-top: 20px;
    }

    .kbsl-stores-list {
        max-height: 300px;
    }

    .kbsl-home-map {
        height: 300px;
        margin-top: 20px;
    }

    .kbsl-store-actions {
        flex-direction: column;
    }

    .kbsl-store-actions .btn {
        width: 100%;
    }
}

/* Custom Map Marker */
.kbsl-marker {
    background: #2fb5d2;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.kbsl-marker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2fb5d2;
}
