/**
 * Photography Expeditions for WooCommerce - Seasonal Pricing CSS
 * Version: 1.0.0
 */

/* Season indicators for date options */
.pew-date-option {
    position: relative;
}

.pew-date-season-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 3px 6px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.pew-peak-season {
    background-color: #4CAF50;
    color: white;
}

.pew-off-peak-season {
    background-color: #FF9800;
    color: white;
}

/* Pricing adjustments display */
.pew-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 90%;
    margin-right: 5px;
}

/* Seasonal pricing explanation */
.pew-seasonal-pricing-info {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #2271b1;
    border-radius: 0 4px 4px 0;
}

.pew-seasonal-pricing-info h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.pew-pricing-explanation {
    margin-bottom: 0;
    font-size: 14px;
}

/* Season-specific highlights */
.pew-seasonal-highlight {
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 14px;
    border-radius: 4px;
    border-left-width: 4px;
    border-left-style: solid;
}

.pew-peak-highlight {
    background-color: #f1f8e9;
    border-left-color: #7cb342;
}

.pew-off-peak-highlight {
    background-color: #fff3e0;
    border-left-color: #ff9800;
}

/* Price breakdown */
.pew-price-breakdown {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.pew-price-breakdown-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.pew-price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.pew-price-line:last-child {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #e0e0e0;
    font-weight: 600;
}

.pew-price-label {
    color: #555;
}

.pew-price-value {
    color: #000;
}

.pew-price-discount {
    color: #4CAF50;
}

.pew-price-markup {
    color: #FF9800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pew-date-season-indicator {
        top: -5px;
        right: -5px;
        padding: 2px 4px;
        font-size: 9px;
    }
    
    .pew-seasonal-pricing-info,
    .pew-seasonal-highlight,
    .pew-price-breakdown {
        padding: 10px;
        font-size: 13px;
    }
}