/**
 * Product shipping info block
 *
 * Lifted out of product-page.css so the product page and the clip sheet on the
 * home page render this block from the same rules rather than two copies that
 * drift apart.
 *
 * @package Qatarshoes
 */

/* ==========================================================================
   Shipping Info Block
   ========================================================================== */
.shipping-info {
    margin: 16px 0;
    padding: 0;
    background: none;
    border-radius: 0;
}

.shipping-info-header {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #2D1F1F;
    margin-bottom: 8px;
}

.shipping-info-row {
    font-size: 14px;
    color: #2d1f1fa8;
    margin: 8px 0;
    font-weight: 400;
    line-height: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.shipping-info-icon {
    width: 18px;
    height: 18px;
    color: #666;
    flex-shrink: 0;
}

.shipping-estimated {
        font-size: 14px;
    color: #1a1a1a;
    margin: 8px 0;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.shipping-cost {
    color: #2D1F1F80;
    font-size: 12px;
    font-weight: 500;
}

.shipping-location-link {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
     font-weight: 500;
}

.shipping-location-link:hover {
    opacity: 0.7;
}

.shipping-city-link {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.shipping-city-link:hover {
    color: #1a1a1a;
}

/* ==========================================================================
   City Selector Dropdown
   ========================================================================== */
.shipping-location-text {
    color: #1a1a1a;
    font-weight: 500;
}

.shipping-city-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    min-width: 220px;
    padding: 4px 0;
    z-index: 50;
}

.shipping-city-dropdown.open {
    display: block;
}

.shipping-city-option {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    font-size: 13px;
    color: #2d1f1f;
    cursor: pointer;
    font-family: inherit;
}

.shipping-city-option:hover {
    background: #f5f5f5;
}

.shipping-city-option.selected {
    font-weight: 600;
    color: #1a1a1a;
}

.shipping-city-name {
    flex: 1;
    text-align: left;
}

.shipping-city-price {
    color: #666;
    font-size: 12px;
}

.shipping-city-option.selected .shipping-city-price {
    color: #1a1a1a;
    font-weight: 600;
}

/* ==========================================================================
   RTS Country & Method Selector
   ========================================================================== */
.rts-country-wrapper,
.rts-method-wrapper {
    position: relative;
    display: inline-block;
}

.shipping-dropdown-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    padding: 8px 14px 4px;
    border-top: 1px solid #f0f0f0;
}

.shipping-dropdown-header:first-child {
    border-top: none;
}
