/* Product Shipping Widget Styles - SIMPLE VERSION */

.cew-product-shipping-container {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cew-product-shipping-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.cew-shipping-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cew-shipping-row:last-child {
    margin-bottom: 0;
}

.cew-shipping-label {
    font-weight: 600;
    color: #555;
    min-width: 150px;
    margin-right: 10px;
}

.cew-shipping-value {
    color: #333;
}

@media (max-width: 768px) {
    .cew-product-shipping-container {
        padding: 15px;
    }
    
    .cew-shipping-label {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cew-shipping-row {
        flex-direction: column;
    }
    
    .cew-shipping-label {
        margin-bottom: 5px;
        min-width: auto;
    }
}

/* Product Shipping Widget Styles */

.cew-product-shipping-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #ff6b6b;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cew-product-shipping-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #1dd1a1, #5f27cd);
    z-index: 1;
}

.cew-product-shipping-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 10px;
}

.cew-product-shipping-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #feca57;
    border-radius: 3px;
}

.cew-shipping-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cew-shipping-row:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cew-shipping-row:last-child {
    margin-bottom: 0;
}

.cew-shipping-label {
    font-weight: 700;
    color: #feca57;
    min-width: 160px;
    margin-right: 15px;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cew-shipping-value {
    color: #fff;
    font-weight: 600;
    font-size: 1.05em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Special styling for different types of information */
.cew-shipping-row:nth-child(1) .cew-shipping-label {
    color: #1dd1a1;
}

.cew-shipping-row:nth-child(2) .cew-shipping-label {
    color: #ff9ff3;
}

.cew-shipping-row:nth-child(3) .cew-shipping-label {
    color: #feca57;
}

.cew-shipping-row:nth-child(4) .cew-shipping-label {
    color: #54a0ff;
}

@media (max-width: 768px) {
    .cew-product-shipping-container {
        padding: 20px;
        margin: 20px 0;
        border-width: 2px;
    }
    
    .cew-product-shipping-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .cew-shipping-row {
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .cew-shipping-label {
        min-width: 130px;
        font-size: 1em;
        margin-right: 10px;
    }
    
    .cew-shipping-value {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .cew-product-shipping-container {
        padding: 15px;
        border-radius: 12px;
    }
    
    .cew-shipping-row {
        flex-direction: column;
        padding: 8px 10px;
    }
    
    .cew-shipping-label {
        margin-bottom: 5px;
        min-width: auto;
        font-size: 0.95em;
    }
    
    .cew-shipping-value {
        font-size: 0.9em;
    }
    
    .cew-product-shipping-title {
        font-size: 1.2em;
    }
}