.store-locator-hero {
    display: none;
}

.store-search-section {
    display: none;
}

.store-results-section {
    padding: 0;
    border-top: 1px solid #adadad;
    border-bottom: 1px solid #adadad;
    margin: 50px auto;
}

.results-container {
    display: flex;
    height: calc(100vh - 100px);
    min-height: 600px;
}

.results-sidebar {
    width: 30%;
    max-width: 400px;
    background: #f5f5f5;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.results-header {
    padding: 25px 30px;
    background: #fff;
    border-bottom: 2px solid var(--pbmit-global-color);
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.my-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #4caf50;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.stores-list-wrapper {
    padding: 20px 30px;
}

.no-results-message {
    text-align: center;
    padding: 80px 20px;
}

.no-results-message i {
    font-size: 60px;
    color: #ccc;
    display: block;
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin: 0 0 8px;
}

.no-results-message p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.store-card-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-card-item:hover,
.store-card-item.is-highlighted {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.15);
    transform: translateX(4px);
}

.store-card-item.is-selected {
    border-color: #4caf50;
    background: linear-gradient(to right, #f1f8f4 0%, #fff 100%);
}

.card-header-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
}

.store-number-badge {
    width: 44px;
    height: 44px;
    background: var(--pbmit-global-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 19px;
    flex-shrink: 0;
}

.store-card-item.is-selected .store-number-badge {
    background: #4caf50;
}

.store-main-info {
    flex: 1;
}

.store-title-text {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}

.distance-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.selected-check-badge {
    position: absolute;
    top: -4px;
    right: 0;
    background: #4caf50;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.card-body-section {
    margin-bottom: 18px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--pbmit-global-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-row a {
    color: var(--pbmit-global-color);
    text-decoration: none;
    font-weight: 600;
}

.info-row a:hover {
    text-decoration: underline;
}

.card-actions-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.action-btn {
    padding: 12px 18px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-make-store {
    background: var(--pbmit-global-color);
    color: #fff;
}

.btn-make-store:hover {
    background: #d45a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-details {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.btn-details:hover {
    border-color: var(--pbmit-global-color);
    color: var(--pbmit-global-color);
}

.btn-appointment {
    background: #1976d2;
    color: #fff;
}

.btn-appointment:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.results-map-area {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-search-bar {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-form-inline {
    display: flex;
    gap: 10px;
   align-items: flex-start;
}

.search-input-inline {
    flex: 1;
    padding: 12px 15px!important;
    border: 1px solid #ddd!important;
    border-radius: 4px!important;
    font-size: 14px!important;
    width: 300px!important;
}

.search-input-inline:focus {
    outline: none;
    border-color: var(--pbmit-global-color);
}

.radius-select-inline {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    width: 150px;
    height: 48px;
}

.btn-search-inline {
    padding: 12px 30px;
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btn-search-inline:hover {
    background: #d45a0f;
}

.btn-location-inline {
    padding: 12px 20px;
    background: #fff;
    color: var(--pbmit-global-color);
    border: 2px solid var(--pbmit-global-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-location-inline:hover {
    background: var(--pbmit-global-color);
    color: #fff;
}

.btn-location-inline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.map-element {
    flex: 1;
}

.results-map-area {
    flex: 1;
    position: relative;
}

.map-element {
    width: 100%;
    height: 100%;
}

.custom-map-marker {
    background: transparent;
    border: none;
}

.marker-circle {
    width: 40px;
    height: 40px;
    background: var(--pbmit-global-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 3px solid #fff;
    position: relative;
}

.marker-circle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--pbmit-global-color);
}

.marker-circle.marker-selected {
    background: #4caf50;
}

.marker-circle.marker-selected::after {
    border-top-color: #4caf50;
}

.map-info-popup {
    padding: 12px;
    min-width: 220px;
}

.map-info-popup h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.map-info-popup p {
    margin: 6px 0;
    font-size: 13px;
    color: #666;
}

@media (max-width: 1199px) {
    .search-form-row {
        flex-wrap: wrap;
    }
    
    .search-input-wrapper {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .search-form-inline {
        flex-wrap: wrap;
    }
    
    .search-input-inline {
        flex-basis: 100%;
    }
    
    .results-container {
        flex-direction: column;
        height: auto;
    }
    
    .results-sidebar {
        width: 100%;
        max-width: 100%;
        min-height: 500px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .results-map-area {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .map-search-bar {
        padding: 15px;
    }
    
    .search-form-inline {
        flex-direction: column;
    }
    
    .search-input-inline,
    .radius-select-inline,
    .btn-search-inline,
    .btn-location-inline {
        width: 100%;
    }
    
    .store-locator-hero {
        padding: 35px 0;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .store-search-section {
        padding: 18px 0;
    }
    
    .results-header {
        padding: 18px 20px;
    }
    
    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .results-count {
        font-size: 18px;
    }
    
    .stores-list-wrapper {
        padding: 15px 20px;
    }
    
    .store-card-item {
        padding: 18px;
    }
    
    .store-number-badge {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .store-title-text {
        font-size: 17px;
    }
}