/* SOHO Delivery Module Styles */

.delivery-section {
    background: var(--card-bg, #1a1a2e);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.delivery-section .section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary, #fff);
}

/* City Search */
.city-search-wrapper {
    position: relative;
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.city-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-option:hover {
    background: rgba(255,255,255,0.05);
}

.city-option:last-child {
    border-bottom: none;
}

.zone-count {
    font-size: 12px;
    color: var(--text-secondary, #888);
}

/* Form Elements */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary, #888);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: var(--text-primary, #fff);
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color, #e94560);
}

.form-row {
    display: flex;
    gap: 12px;
}

.flex-1 {
    flex: 1;
}

/* Zone Info */
.zone-info {
    margin-top: 16px;
    padding: 16px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.zone-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.zone-fee {
    font-weight: 700;
    color: var(--accent-color, #e94560);
}

.zone-message {
    font-size: 13px;
    color: var(--text-secondary, #888);
}

.free-delivery {
    color: #4CAF50;
    font-weight: 500;
}

/* Min Order Warning */
.min-order-warning {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    color: #FF9800;
    font-size: 13px;
}

/* Map */
.map-toggle {
    margin-top: 16px;
    text-align: center;
}

.link-button {
    background: none;
    border: none;
    color: var(--accent-color, #e94560);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px;
}

.map-container {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.delivery-map {
    width: 100%;
    height: 300px;
    background: #2d2d45;
}

.btn-small {
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--accent-color, #e94560);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}
