/*--------------------------------------------------------------
# Store Locator Component
--------------------------------------------------------------*/

/* Main Store Locator Container */
.store-locator-container {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    min-height: 600px;
}

/* Tablet/Mobile Layout */
@media (max-width: 1024px) {
    .store-locator-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Store Controls */
.store-controls-enhanced {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-filters-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #111;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .search-filters-row {
        grid-template-columns: 1fr;
    }
}

/* Search Wrapper */
.search-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

.search-input-container {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #888;
    pointer-events: none;
    z-index: 2;
}

.store-search-input {
    width: 100%;
    padding: 14px 50px 14px 44px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.store-search-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.store-search-input:focus + .search-icon {
    fill: #FFD700;
}

.store-search-input::placeholder {
    color: #888;
}

.clear-search-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.clear-search-btn:hover {
    opacity: 1 !important;
}

.clear-search-btn svg {
    width: 16px;
    height: 16px;
    fill: #888;
    transition: fill 0.3s ease;
}

.clear-search-btn:hover svg {
    fill: #FFD700;
}

/* Filter Wrapper */
.filter-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.enhanced-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
}

.enhanced-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.enhanced-select:hover:not(:disabled) {
    border-color: #555;
}

.enhanced-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.enhanced-select.loading {
    background-image: repeating-linear-gradient(
        45deg,
        #333 0px,
        #333 10px,
        #444 10px,
        #444 20px
    );
    background-size: 20px 20px;
    animation: loading-stripe 1s linear infinite;
    cursor: wait;
}

@keyframes loading-stripe {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

/* Location Controls */
.location-controls {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.location-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex: 1;
}

.zip-input-container {
    position: relative;
    flex: 1;
    min-width: 150px;
}

.zip-code-input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.zip-code-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.zip-code-input::placeholder {
    color: #888;
}

.find-zip-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.find-zip-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-50%) scale(1.05);
}

.find-zip-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.find-zip-btn.loading {
    cursor: wait;
}

.find-zip-btn .search-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.find-zip-btn.loading .search-icon {
    animation: spin 1s linear infinite;
}

.find-zip-btn.success {
    background: linear-gradient(135deg, #00C851, #28a745);
}

.find-zip-btn.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.location-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.location-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

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

.location-btn.loading {
    cursor: wait;
}

.location-btn.loading .location-icon {
    animation: spin 1s linear infinite;
}

.location-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.location-btn.success {
    background: linear-gradient(135deg, #00C851, #28a745);
    color: white;
    animation: successPulse 0.6s ease-out;
}

.location-btn.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    animation: errorShake 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Location Notifications */
.location-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInFromRight 0.3s ease-out;
}

.location-notification.success {
    background: #155724;
    border: 1px solid #28a745;
    color: #d4edda;
}

.location-notification.error {
    background: #721c24;
    border: 1px solid #dc3545;
    color: #f8d7da;
}

.location-notification.info {
    background: #0c5460;
    border: 1px solid #17a2b8;
    color: #d1ecf1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    flex-shrink: 0;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Results Summary */
.results-summary {
    margin-bottom: 1rem;
}

.results-count {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #111;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.filter-label {
    color: #ccc;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag .remove-filter {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.filter-tag .remove-filter:hover {
    color: #fff;
}

.filter-tag .remove-filter svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.clear-all-btn {
    background: none;
    border: 1px solid #555;
    color: #ccc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: auto;
}

.clear-all-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

/* Map Styles */
#store-locator-map {
    width: 100%;
    height: 600px;
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    #store-locator-map {
        height: 400px;
        order: 2;
    }
    
    .store-list-container {
        order: 1;
    }
}

#store-locator-map:empty::before {
    content: 'Loading Map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
}

#store-locator-map:empty::after {
    content: '';
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Store List */
.store-list-container {
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.store-list-container::-webkit-scrollbar {
    width: 8px;
}

.store-list-container::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}

.store-list-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.store-list-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.store-list {
    display: flex;
    flex-direction: column;
}

.store-item {
    padding: 1.5rem;
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.store-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.store-item:hover::before {
    background: #FFD700;
}

.store-item:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(8px);
}

.store-item.hidden {
    display: none;
}

.store-item.visible {
    display: block;
}

.store-item.highlighted {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.store-item.highlighted::before {
    background: #FFD700;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.store-name {
    color: #FFD700;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C851;
}

.status-indicator.closed {
    background: #dc3545;
}

.status-text {
    color: #00C851;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-text.closed {
    color: #dc3545;
}

.store-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 16px;
    height: 16px;
    fill: #888;
    flex-shrink: 0;
}

.store-address,
.store-phone {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-phone:hover {
    color: #FFD700;
}

.store-actions {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Loading State */
.store-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    color: #FFD700;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

/* Empty State */
.no-stores-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    text-align: center;
    color: #ccc;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-stores-found h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.no-stores-found p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Store Locator Hero Section */
.store-locator-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    padding: 4em 0 3em;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.store-locator-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.store-locator-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.01)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.store-locator-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.store-locator-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5em 1.2em;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

.store-locator-hero-section .badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-locator-hero-section .badge-icon svg {
    width: 100%;
    height: 100%;
}

.store-locator-hero-section .hero-title {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1em 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 30%, #ffffff 60%, #FFD700 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
}

.store-locator-hero-section .hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-locator-hero-section .hero-description p {
    margin: 0;
}

.store-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-top: 2em;
    padding: 1.5em 2em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: statsFloat 6s ease-in-out infinite;
}

.store-stats .stat-item {
    text-align: center;
    min-width: 80px;
}

.store-stats .stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.2em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.store-stats .stat-label {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.store-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
}

/* Store Locator Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
    to {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes statsFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .store-locator-container {
        gap: 1rem;
    }

    .store-controls-enhanced {
        margin-bottom: 1rem;
    }

    .search-filters-row {
        padding: 1rem;
        gap: 1rem;
    }

    .search-wrapper {
        min-width: auto;
    }

    .store-search-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 14px 10px 38px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
        left: 10px;
    }

    .filter-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .enhanced-select {
        min-width: auto;
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
    }

    .location-controls {
        align-items: stretch;
    }

    .location-input-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .zip-input-container {
        width: 100%;
    }

    .zip-code-input {
        width: 100%;
        padding: 14px 45px 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .location-btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
    }

    .results-summary {
        text-align: center;
    }

    .active-filters {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .filter-tags {
        width: 100%;
    }

    .clear-all-btn {
        margin-left: 0;
        align-self: flex-end;
    }

    .location-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        padding: 12px 16px;
    }
    
    .notification-message {
        font-size: 13px;
    }

    #store-locator-map {
        height: 380px;
        border-radius: 8px;
    }

    .store-list-container {
        height: 380px;
        padding-right: 8px;
    }

    .store-item {
        padding: 1.25rem;
    }

    .store-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .store-name {
        font-size: 1.1rem;
    }

    .detail-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .detail-icon {
        width: 14px;
        height: 14px;
    }

    .store-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Store Locator Hero Mobile */
    .store-locator-hero-section {
        padding: 3em 0 2em;
        min-height: 50vh;
    }
    
    .store-locator-hero-section .hero-title {
        font-size: 2.5em;
    }
    
    .store-locator-hero-section .hero-description {
        font-size: 1.1em;
        margin-bottom: 2em;
    }
    
    .store-stats {
        flex-direction: column;
        gap: 1em;
        padding: 1.5em;
    }
    
    .store-stats .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
    }
    
    .store-locator-hero-section .hero-badge {
        font-size: 0.8em;
        padding: 0.4em 1em;
    }
}

@media (max-width: 480px) {
    .store-locator-hero-section {
        padding: 2em 0 1.5em;
    }
    
    .store-locator-hero-section .hero-title {
        font-size: 2em;
        margin-bottom: 0.8em;
    }
    
    .store-locator-hero-section .hero-description {
        font-size: 1em;
        margin-bottom: 1.5em;
    }
    
    .store-stats .stat-number {
        font-size: 1.8em;
    }
    
    .store-stats .stat-label {
        font-size: 0.75em;
    }
} 