@media (min-width: 769px) {
    .hero-content h1 {
        transform: translateY(-32px);
        margin-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section-new .form-row {
        display: flex !important;
        flex-direction: column !important;
    }
    .hero-section-new .form-row .form-group {
        width: 100% !important;
        margin-bottom: 12px !important;
    }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(1) { order: 1; }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(2) { order: 2; }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(3) { order: 3; }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(4) { order: 4; }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(5) { order: 5; }
    .hero-section-new .form-row.has-store-filter .form-group:nth-child(6) { order: 6; }

    .hero-section-new .form-row:not(.has-store-filter) > *:nth-child(1) { order: 1; }
    .hero-section-new .form-row:not(.has-store-filter) .form-group:nth-child(2) { order: 2; }
    .hero-section-new .form-row:not(.has-store-filter) .form-group:nth-child(3) { order: 3; }
    .hero-section-new .form-row:not(.has-store-filter) .form-group:nth-child(4) { order: 4; }
    .hero-section-new .form-row:not(.has-store-filter) .form-group:nth-child(5) { order: 5; }
    .hero-section-new .form-row:not(.has-store-filter) .form-group:nth-child(6) { order: 6; }
}

.google-ads-section {
    padding: 20px 0;
    text-align: center;
}

.google-ads-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .google-ads-container {
        max-width: 100%;
        aspect-ratio: 300 / 250;
    }
    .google-ads-container ins,
    .google-ads-container iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (min-width: 768px) {
    .google-ads-container {
        max-width: 100%;
        aspect-ratio: 728 / 90;
    }
    .google-ads-container ins,
    .google-ads-container iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

/* Force-hide scrollbars inside the stores section */
.stores-section,
.stores-section * {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.stores-section *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Stores Section */
.stores-section {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.stores-header {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.stores-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.stores-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
}

.stores-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.stores-slider {
    flex: 1;
    overflow: hidden !important;
    border-radius: var(--radius-lg);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stores-slider::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.stores-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: var(--space-lg);
}

.store-slide {
    flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
    min-width: 0;
    display: flex;
}

.store-card {
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition-fast);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.store-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.store-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
}

.store-address {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
}

.store-address a {
    text-decoration: none;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}

.store-address a:hover {
    color: var(--primary-color);
}

.store-rating {
    margin-top: var(--space-sm);
}

.store-rating a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-rating a:hover .stars {
    filter: brightness(1.1);
}

.rating-number {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--dark-color);
}

.stars {
    letter-spacing: 2px;
    font-size: var(--font-size-base);
    transition: filter var(--transition-fast);
}

.reviews-count {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.stores-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.stores-arrow:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-50%) scale(1.1);
}

.stores-arrow-left {
    left: -22px;
}

.stores-arrow-right {
    right: -22px;
}

.stores-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.stores-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.stores-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition-fast);
}

.stores-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .store-slide {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }
}

@media (max-width: 768px) {
    .stores-section {
        padding: var(--space-xl) 0;
    }
    .stores-header h2 {
        font-size: var(--font-size-2xl);
    }
    .stores-header p {
        font-size: var(--font-size-sm);
    }
    .store-slide {
        flex: 0 0 100%;
    }
    .stores-arrow {
        display: none;
    }
}
