/* Info Block */
.info-block {
    margin-top: 30px;
    padding: 20px;
    padding-bottom: 90px;
    background: #d9d9d9;
    border-radius: 10px 10px 0 0;
}

.info-logo {
    display: block;
    width: 72px;
    height: 26px;
    object-fit: contain;
}

.info-text {
    margin-top: 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
}

.info-address {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e1e1e;
}

.info-value {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
}

/* Info Titles (unified) */
.info-title {
    margin-top: 20px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e1e1e;
}

/* Delivery Hours */
.delivery-hours {
    margin-top: 8px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-hours .day {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e1e1e;
}

.delivery-hours .time {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(30, 30, 30, 0.5);
}

/* Info Phone */
.info-phone {
    display: block;
    margin-top: 4px;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #394DB1;
    text-decoration: underline;
}

/* Problems Section */
.info-problems {
    margin-top: 8px;
}

.info-problems p {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #1e1e1e;
    margin: 0;
}

.info-problems ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-problems li {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #1e1e1e;
}

/* Legal Links */
.info-legal {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-legal a {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e1e1e;
    text-decoration: none;
}

.info-legal .separator {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e1e1e;
}

/* ===========================================
   Desktop - Info
   =========================================== */
@media (min-width: 1024px) {
    .info-block {
        margin: 30px 16px 0;
        padding: 32px 40px;
        padding-bottom: 32px;
        border-radius: 10px;
    }

    /* 3 oszlopos grid */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .info-col .info-title:first-child {
        margin-top: 0;
    }

    .info-logo {
        width: 100px;
        height: auto;
    }

    .info-text {
        margin-top: 16px;
        font-size: 17px;
    }

    .info-address {
        margin-top: 20px;
    }

    .info-label,
    .info-value {
        font-size: 16px;
    }

    .info-title {
        margin-top: 24px;
        font-size: 17px;
    }

    /* Delivery hours */
    .delivery-hours li {
        justify-content: flex-start;
        gap: 20px;
    }

    .delivery-hours .day {
        font-size: 14px;
        min-width: 70px;
    }

    .delivery-hours .time {
        font-size: 14px;
    }

    .info-phone {
        font-size: 15px;
    }

    .info-problems p,
    .info-problems li {
        font-size: 12px;
    }

    .info-legal {
        margin-top: 28px;
        justify-content: center;
    }

    .info-legal a,
    .info-legal .separator {
        font-size: 14px;
    }
}
