main {
    background-color: white;
}

/* Contact Section */
.contact-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 50px 0;
        gap: 30px;
    }
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .contact-header {
        gap: 12px;
    }
}

.contact-title {
    font-size: 26px;
    font-weight: bold;
    color: #111827;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 36px;
    }
}

.contact-description {
    font-size: 14px;
    color: #4b5563;
}

@media (min-width: 768px) {
    .contact-description {
        font-size: 16px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.contact-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-card-content {
    padding: 20px;
    flex: 1;
}

@media (min-width: 768px) {
    .contact-card-content {
        padding: 30px;
    }
}

.contact-card-header {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .contact-card-header {
        margin-bottom: 16px;
    }
}

.contact-card-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .contact-card-subtitle {
        font-size: 16px;
    }
}

.contact-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

@media (min-width: 768px) {
    .contact-card-title {
        font-size: 24px;
    }
}

.contact-card-text {
    font-size: 14px;
    color: #9ca3af;
}

.contact-card-text .phone-label {
    display: inline-block;
    width: 40px;
}

.contact-card-text .phone-number {
    display: inline-block;
}

@media (min-width: 768px) {
    .contact-card-text {
        font-size: 16px;
    }
    .contact-card-text .phone-label {
        width: 50px;
    }
}

.contact-card-action {
    background-color: #F8F4E6;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .contact-card-action {
        padding: 20px 30px;
    }
}

.contact-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #BE930B;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .contact-card-link {
        font-size: 16px;
    }
}

/* Stores Section */
.stores-section {
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .stores-section {
        padding: 50px 0;
    }
}

.stores-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .stores-header {
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.stores-title {
    font-size: 26px;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

@media (min-width: 768px) {
    .stores-title {
        font-size: 36px;
    }
}

.search-wrapper {
    flex: 1;
    max-width: 321px;
    width: 100%;
}

.filters-button-wrapper {
    display: none;
    margin-bottom: 16px;
}

.filters-button {
    width: 100%;
    padding: 14px 20px;
    background-color: #f3f4f6;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.filters-icon {
    width: 20px;
    height: 20px;
}

.stores-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mobile Styles */
@media (max-width: 1199px) {
    .stores-header {
        flex-direction: column;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .filters-button-wrapper {
        display: block;
    }
    
    .filters-column {
        display: none;
    }
    
    .map-column {
        display: none;
    }
    
    .stores-column {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .stores-content {
        flex-direction: row;
        gap: 24px;
        height: 600px;
    }
    
    .filters-column {
        display: block;
        width: 25%;
        max-width: 280px;
        flex-shrink: 0;
    }
    
    .stores-column {
        width: 35%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
        max-height: 600px;
    }
    
    .stores-column .results-section {
        overflow-y: auto;
    }
    
    .mobile-pagination {
        display: none;
    }
    
    .map-column {
        display: block;
        flex: 1;
        min-width: 0;
        height: 100%;
    }
    
    .map-column #map {
        height: 100% !important;
    }
    
    .stores-header {
        justify-content: flex-start;
    }
    
    .search-wrapper {
        width: calc(100% - 55px);
        max-width: none;
        padding-left: calc(19% );
        box-sizing: border-box;
    }
}

#stores-app {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    width: 321px;
    height: 47px;
}

.search-icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    height: 100%;
    padding: 5px 8px 5px 36px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .search-input {
        font-size: 16px;
    }
}

.search-input:focus {
    outline: none;
    border-color: #3081EC;
}

.location-button {
    width: 47px;
    height: 47px;
    background-color: white;
    color: #374151;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.location-button:hover {
    background-color: #f3f4f6;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.filter-panel {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.2s;
}

.filter-panel-header:hover {
    background-color: #f9fafb;
}

.filter-panel-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.filter-panel-arrow {
    transition: transform 0.2s;
    color: #6b7280;
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

.filter-panel-arrow.rotated {
    transform: rotate(180deg);
}

.filter-panel-content {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.filter-checkbox {
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.filter-checkbox:checked {
    background-color: #BE930B;
    border-color: #BE930B;
}

.filter-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-text {
    color: #374151;
}

.results-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #8A8A8A #f1f1f1;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 12px;
}

.loading-text {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

@media (min-width: 768px) {
    .loading-text {
        font-size: 16px;
    }
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #3081EC;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.no-stores {
    padding: 32px;
    text-align: center;
    color: #6b7280;
}

.store-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 16px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.store-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.store-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.store-card-title-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-name {
    font-weight: 600;
    color: #111827;
    margin: 0;
    font-size: 16px;
}

.store-distance {
    color: #6b7280;
    font-size: 14px;
}

.store-card-arrow {
    transition: transform 0.2s;
    color: #6b7280;
}

.store-card-arrow.rotated {
    transform: rotate(180deg);
}

.store-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-size: 13px;
    margin-bottom: 8px;
}

.open-indicator {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
}

.open-indicator.open {
    background-color: #22c55e;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.store-feature {
    background-color: #111827;
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.store-image-container {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 12px;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-image-placeholder {
    width: 100%;
    height: 120px;
    background-color: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    margin-top: 12px;
}

.store-card-expanded {
    margin-top: 16px;
    padding-top: 16px;
}

.store-expanded-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.store-info-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
    margin-top: 1px;
}

.store-address {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.store-phone {
    color: #4b5563;
    font-size: 14px;
}

.store-hours-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-hours-header {
    align-items: flex-start;
}

.store-hours-header .store-hours-list {
    padding-left: 0;
    flex: 1;
}

.store-hours-label {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.store-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
}

.store-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-hours-day {
    color: #4b5563;
    font-size: 13px;
}

.store-hours-time {
    color: #4b5563;
    font-size: 13px;
}

.store-hours-row.today .store-hours-day,
.store-hours-row.today .store-hours-time {
    color: #1C1C1C;
    font-weight: 600;
}

.store-read-more-btn {
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #1C1C1C;
    border-radius: 6px;
    background-color: transparent;
    color: #1C1C1C;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.store-read-more-btn:hover {
    background-color: #1C1C1C;
    color: #FFFFFF;
}

.pagination {
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    font-size: 14px;
}

@media (min-width: 1200px) {
    .pagination {
        display: none;
    }
}

@media (max-width: 1199px) {
    .pagination.mobile-pagination {
        display: flex;
    }
}

.pagination-button {
    padding: 6px 12px;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #000000E5;
    font-size: 16px;
    cursor: pointer;
}

.pagination-button:first-child,
.pagination-button:last-child {
    border: none;
}

.pagination-button:hover:not(:disabled) {
    background-color: #f3f4f6;
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-button.active {
    background-color: #FFFFFF;
    color: #BE930B;
    border-color: #DCDCDC;
}

.pagination-dots {
    color: #6b7280;
    padding: 0 4px;
}

@media (min-width: 1200px) {
    .pagination-button {
        padding: 4px 12px;
        border-radius: 0.5rem;
        font-size: 14px;
    }
    
    .pagination-button.active {
        background-color: #3081EC;
        border-color: #3081EC;
    }
}

.map-container {
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
}

/* Vue.js specific styles */
[v-cloak] {
    display: none;
}

.input-field:focus {
    border-color: #e6b000;
    box-shadow: 0 0 0 3px rgba(230, 176, 0, 0.1);
}

/* Filter Modal Styles */
.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    z-index: 1000;
}

.filter-modal {
    width: 80%;
    max-width: 360px;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: env(safe-area-inset-top);
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.filter-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.filter-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-modal-close:hover {
    color: #111827;
}

.filter-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-modal-footer {
    padding: 14px 30px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.filter-button {
    width: 130px;
    height: 45px;
    border-radius: 6px;
    border-width: 1px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.clear-btn {
    background-color: #FFFFFF;
    border: 1px solid #BE930B;
    color: #BE930B;
}

.clear-btn:hover {
    background-color: #FEF9E7;
}

.apply-btn {
    background-color: #BE930B;
    border: 1px solid #BE930B;
    color: #FFFFFF;
}

.apply-btn:hover {
    background-color: #A67F0A;
}

/* Ensure modal only appears on mobile */
@media (min-width: 1200px) {
    .filter-modal-overlay {
        display: none;
    }
}

/* Location Permission Modal */
.location-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.location-modal {
    background-color: #FFFFFF;
    border-radius: 6px;
    width: 683px;
    height: 286px;
    padding: 50px 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 1;
    position: relative;
}

.location-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6B7280;
    padding: 4px;
}

.location-modal-close:hover {
    color: #111827;
}

.location-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.location-modal-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.location-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid;
}

.location-btn.continue-btn {
    background-color: #FFFFFF;
    border-color: #BE930B;
    color: #BE930B;
}

.location-btn.continue-btn:hover {
    background-color: #FEF9E7;
}

.location-btn.switch-btn {
    background-color: #FFFFFF;
    border-color: #BE930B;
    color: #BE930B;
}

.location-btn.switch-btn:hover {
    background-color: #FEF9E7;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .location-modal {
        width: 90%;
        max-width: 400px;
        height: auto;
        padding: 30px 20px;
        gap: 16px;
    }
    
    .location-modal-title {
        font-size: 18px;
    }
    
    .location-modal-text {
        font-size: 14px;
    }
    
    .location-modal-buttons {
        gap: 8px;
        width: 100%;
    }
    
    .location-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
}