/*
.delivery-points-block {
    margin: 40px 0;
}

.delivery-tabs .nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.delivery-tabs .nav-tabs > li > a {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
}

.delivery-tabs .nav-tabs > li.active > a {
    color: #e31e24;
    border-bottom: 2px solid #e31e24;
    background: transparent;
}

.delivery-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
    height: 100%;
}

.delivery-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.delivery-image {
    text-align: center;
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-image img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

.delivery-name h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    text-align: center;
}

.delivery-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.delivery-address i {
    color: #e31e24;
    margin-right: 5px;
}

.delivery-schedule {
    font-size: 13px;
    color: #888;
}

.delivery-schedule .weekdays,
.delivery-schedule .weekends {
    margin-bottom: 5px;
}
*/