.retailer-locator-section {
    width: 100%;
    background-color: #FFFFFF;
}

.locator-container {
    text-align: center;
    padding: 112px 64px;
    max-width: 1265px;
    margin: 0 auto;
}

.directory-header {
    margin-bottom: 64px;
}

.directory-badge {
    background-color: rgba(89, 4, 1, 0.05);
    color: #590401;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(89, 4, 1, 0.1);
}

.directory-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #0A0A0A;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.directory-title .highlight {
    color: #590401;
}

.directory-subtitle {
    font-size: 18px;
    color: #4A5565;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.directory-actions {
    margin-top: 40px;
}

.download-link {
    text-decoration: none;
}

.download-btn {
    background-color: #FFFFFF;
    color: #590401;
    border: 1.5px solid rgba(89, 4, 1, 0.4);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.download-btn:hover {
    background-color: #FEF2F2;
    border-color: #590401;
    transform: translateY(-2px);
}

.search-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
    position: sticky;
    top: 73px;
    background: #FFFFFF;
    padding: 20px 0 24px 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.search-controls.stuck {
    border-bottom-color: #F1F4F9;
}

.search-controls.unpinned {
    position: static;
    box-shadow: none;
    border-bottom-color: transparent;
}

.search-box-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: 54px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 0 24px;
    gap: 12px;
}

.search-icon-img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.search-box-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #0A0A0A;
}

.state-jump-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    gap: 16px;
    margin-top: 16px;
}

.state-jump-row {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-bottom: 1px solid #F1F4F9;
    padding: 0 12px;
    gap: 12px;
    overflow: hidden;
}

.jump-label {
    color: #64748B;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.state-badges {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
    flex: 1;
}

.state-badges::-webkit-scrollbar {
    display: none;
}

.state-badge {
    background: #F8FAFC;
    border: 1px solid #F1F4F9;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4A5565;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.state-badge:hover {
    background: #F1F5F9;
    color: #0A0A0A;
}

.state-badge.active {
    background: #590401;
    color: #FFFFFF;
    border-color: #590401;
    box-shadow: 0 4px 12px rgba(89, 4, 1, 0.2);
}

.scroll-btn {
    background: #F8FAFC;
    border: 1px solid #F1F4F9;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    background: #F1F5F9;
}

.scroll-btn img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.scroll-btn.next img {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .directory-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .locator-container {
        padding: 40px 20px;
    }

    .directory-title {
        font-size: 32px;
    }

    .directory-subtitle {
        font-size: 16px;
    }

    .search-box-wrapper {
        height: 48px;
    }

    .state-jump-container {
        flex-direction: column;
        align-items: flex-start;
    }
}