.despo-store-locator {
    padding: 0 0 40px;
}

.search-panel {
    background: #fff;
    padding: 25px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 20px;
}

.search-input-wrapper input {
    padding-left: 45px;
    padding-right: 45px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 14px;
}

.search-input-wrapper input:focus {
    border-color: #a67c52;
    box-shadow: none;
}

.locate-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.locate-btn:hover {
    color: #a67c52;
}

.filter-select {
    position: relative;
    margin-bottom: 15px;
}

.filter-select select {
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    font-size: 14px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
}

.filter-select select:focus {
    border-color: #a67c52;
    box-shadow: none;
}

.filter-select .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.btn-search {
    width: 100%;
    height: 50px;
    background: #a67c52;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: background 0.3s;
}

.btn-search:hover {
    background: #8b6544;
    color: #fff;
}

#store-map {
    width: 100%;
    height: 500px;
    border: 1px solid #e5e5e5;
}

.faq-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.faq-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #232323;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #232323;
}

.faq-question:hover {
    color: #a67c52;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.results-section {
    margin-top: 40px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #232323;
}

.results-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a67c52;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    margin-left: 10px;
}

.btn-add-store {
    background: transparent;
    border: 2px solid #a67c52;
    color: #a67c52;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-add-store:hover {
    background: #a67c52;
    color: #fff;
}

.btn-add-store i {
    font-size: 18px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.store-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    position: relative;
    transition: box-shadow 0.3s;
}

.store-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.store-type {
    font-size: 12px;
    color: #a67c52;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    margin: 0 0 15px;
    line-height: 1.4;
}

.store-address,
.store-city,
.store-phone,
.store-email {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px;
    line-height: 1.5;
}

.store-phone a,
.store-email a {
    color: #232323;
    font-weight: 500;
}

.store-phone a:hover,
.store-email a:hover {
    color: #a67c52;
}

.btn-navigate {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
    color: #a67c52;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    justify-content: space-between;
}

.btn-navigate:hover {
    color: #8b6544;
    text-decoration: none;
}

.btn-navigate i {
    font-size: 18px;
    background: #f5f5f5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-navigate:hover i {
    background: #a67c52;
    color: #fff;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.no-results p {
    margin: 0;
    color: #666;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #232323;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-item .page-link:hover {
    border-color: #a67c52;
    color: #a67c52;
}

.pagination .page-item.active .page-link {
    background: #a67c52;
    border-color: #a67c52;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

.gm-style .store-info-window {
    padding: 15px;
    min-width: 220px;
}

.gm-style .store-info-window h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    color: #232323;
}

.gm-style .store-info-window p {
    margin: 0 0 5px;
    font-size: 13px;
    color: #666;
}

.gm-style .store-info-window a {
    color: #a67c52;
}

.gm-style .store-info-window .info-navigate {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #a67c52;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

.gm-style .store-info-window .info-navigate:hover {
    background: #8b6544;
}

.despo-store-request .card {
    border-radius: 0;
    border: 1px solid #e5e5e5;
}

.despo-store-request .card-body {
    padding: 30px;
}

.despo-store-request h4 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    color: #232323;
    font-size: 18px;
}

.despo-store-request .form-group {
    margin-bottom: 15px;
}

.despo-store-request label.required::after {
    content: ' *';
    color: #dc3545;
}

.despo-store-request .form-control {
    border-radius: 0;
    height: 45px;
    border-color: #e5e5e5;
}

.despo-store-request .form-control:focus {
    border-color: #a67c52;
    box-shadow: none;
}

.despo-store-request textarea.form-control {
    height: auto;
}

.despo-store-request .btn-primary {
    background: #a67c52;
    border-color: #a67c52;
    border-radius: 0;
    padding: 12px 25px;
}

.despo-store-request .btn-primary:hover {
    background: #8b6544;
    border-color: #8b6544;
}

.despo-store-request .btn-secondary {
    border-radius: 0;
    padding: 12px 25px;
}

.despo-store-request .btn i.material-icons {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.despo-store-request .alert i.material-icons {
    vertical-align: middle;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #store-map {
        height: 400px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }

    #store-map {
        height: 300px;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-add-store {
        width: 100%;
        justify-content: center;
    }

    .despo-store-request .col-form-label {
        text-align: left !important;
    }
}
