.state-group {
    margin-bottom: 40px;
}

.state-header-bar {
    background-color: #E5E7EB;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.state-name {
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
}

.retailers-count {
    background-color: #E5D4D3;
    color: #590401;
    height: 28px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
}

.retailer-rows {
    display: flex;
    flex-direction: column;
}

.retailer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px;
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.3s ease;
}

.retailer-row:hover {
    background-color: #FAFAFA;
}

.retailer-info {
    text-align: left;
}

.retailer-name {
    font-size: 24px;
    font-weight: 500;
    color: #0A0A0A;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.retailer-location {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 400;
    display: flex;
    gap: 8px;
}

.dot-separator {
    color: #CBD5E1;
}

.view-retailer-btn {
    background-color: var(--accent-color);
    color: #FFFFFF;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.view-retailer-btn:hover {
    opacity: 0.9;
}

.goto-icon-img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.view-retailer-link {
    text-decoration: none;
}

@media (max-width: 768px) {
    .data-container {
        padding-bottom: 60px;
    }

    .retailer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0;
    }

    .retailer-name {
        font-size: 20px;
    }

    .retailer-location {
        flex-direction: column;
        gap: 4px;
    }

    .dot-separator {
        display: none;
    }

    .view-retailer-btn {
        width: 100%;
        justify-content: center;
    }
}