/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.smart-address-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.address-col h4 {
    margin-bottom: 15px;
}

.smart-address-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #fff;
}

.actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.smart-address-selector p {
	margin-top: 10px;
}

.smart-address-card {
	position: relative;
}
.default-badge {
	color: #000;
	background-color: #dcd;
	padding: 5px 10px;
	position: absolute;
	right: 0;
	margin-right: 10px;
	border-radius: 6px;
}

.multi-ship-wrapper {
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
}

.multi-ship-header,
.multi-ship-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.col-product {
    flex: 2;
}

.col-qty {
    flex: 1;
}

.col-address {
    flex: 2;
}

.product-thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.product-name {
    font-size: 14px;
}

.qty-box {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .smart-address-columns {
        grid-template-columns: 1fr;
    }
    .multi-ship-wrapper {
        padding: 10px;
    }
}