.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #007bff, transparent);
}

.divider-icon {
    color: #007bff;
    font-size: 20px;
}

/* کارت آدرس */
.address-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #007bff;
}

.address-card.default-address {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* نشان آدرس اصلی */
.default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.default-badge i {
    font-size: 12px;
}

/* هدر کارت */
.address-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.address-icon {
    width: 50px;
    height: 50px;
    background: #e7f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #007bff;
    flex-shrink: 0;
}

.address-title-wrapper {
    flex: 1;
    min-width: 0;
}

.address-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.address-type-badge {
    font-size: 11px;
    color: #6c757d;
    background: #f0f0f0;
    padding: 2px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 3px;
}

/* محتوای کارت */
.address-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.address-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.detail-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

.detail-text {
    font-size: 14px;
    color: #2c3e50;
    margin: 2px 0 0 0;
    line-height: 1.6;
}

.detail-text a.contact-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-text a.contact-link:hover {
    color: #007bff;
}

/* فوتر کارت */
.address-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.address-footer .btn {
    flex: 1;
    min-width: 100px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
}

.map-btn {
    border-color: #6c757d;
    color: #6c757d;
}

.map-btn:hover {
    background: #6c757d;
    color: #fff;
}

.direction-btn {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.direction-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

/* پاسخگویی */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .address-card {
        padding: 20px;
    }
    
    .address-header {
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .address-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .address-footer {
        flex-direction: column;
    }
    
    .address-footer .btn {
        width: 100%;
    }
    
    .default-badge {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 3px 10px;
    }
}