.whats-nearby-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: sans-serif;
}

.whats-nearby-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.whats-nearby-address-subtitle {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.whats-nearby-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.nearby-cat-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.nearby-cat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.nearby-cat-header i, .nearby-cat-header svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #3b82f6;
    fill: #3b82f6;
}

.nearby-cat-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
}

.nearby-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nearby-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
}

.nearby-item-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.nearby-item-distance {
    font-size: 12px;
    color: #64748b;
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.nearby-loading, .nearby-empty, .nearby-error {
    font-style: italic;
    color: #94a3b8 !important;
    font-size: 12px !important;
}

.nearby-error {
    color: #ef4444 !important;
}
