.custom-address-wrapper {
    width: 100%;
}
.address-label {
    margin: 0;
    width: auto;
    display: block;
}

.address-field {
    margin-bottom: 16px;
}

.address-field.full-width {
    width: 100%;
}

.address-field label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

.address-field input,
.address-field select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #c9cfd6;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 767px) {
    .address-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}