/*
 * Shipping Methods Display
 * Shortcode: [wd_product_shipping_methods] | [wd_product_shipping_methods layout="list"]
 */

/* =========================================
   SHARED WRAPPER
   ========================================= */
.wd-product-shipping-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    border-radius: 12px;
    background: #fff;
    position: relative;
}

/* =========================================
   GRID LAYOUT (default)
   ========================================= */
.wd-shipping-layout-grid .wd-shipping-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 24%;
    padding: 5px;
}

.wd-ship-icon-wrapper {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-ship-icon-img {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.wd-ship-icon-svg svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

.wd-ship-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: var(--e-global-color-primary, #333);
}

.wd-shipping-layout-grid .wd-ship-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--e-global-color-secondary, #555);
    margin-bottom: 5px;
    direction: ltr;
}

.wd-shipping-layout-grid .wd-ship-info {
    font-size: 13px;
    color: #777;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .wd-shipping-layout-grid {
        justify-content: center;
        gap: 20px;
    }

    .wd-shipping-layout-grid .wd-shipping-item {
        width: 45%;
        max-width: 150px;
    }
}

/* =========================================
   LIST LAYOUT
   [wd_product_shipping_methods layout="list"]
   ========================================= */
.wd-shipping-layout-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px 0;
}

.wd-shipping-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
}

.wd-list-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.wd-list-icon img,
.wd-list-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.wd-list-icon .wd-ship-icon-svg svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.wd-list-text {
    display: flex;
    align-items: baseline;
    row-gap: 0;
    column-gap: 5px;
    flex: 1;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--e-global-color-primary, #333);
    line-height: 1.3;
}

.wd-list-label {
    font-weight: 400;
}

.wd-list-price {
    font-weight: 700;
    white-space: nowrap;
    direction: ltr;
}

.wd-list-info {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* =========================================
   CHECKOUT / CART — shipping description
   ========================================= */
.wd-checkout-shipping-desc {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 2px;
    padding-right: 0;
}
