/* Deal of the Day Plugin Styles */

.deal-of-the-day-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.deal-title {
    text-align: center;
    color: #CF2D2E;
    margin-bottom: 10px;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.1em;
}

.deal-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: flex-start;
}

.deal-product-item {
    border: 2px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 0 1 300px;
    max-width: 300px;
}

.deal-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #333333;
}

.deal-yellow-banner {
    background: linear-gradient(90deg, #f5f5dc 0%, #f0e6ff 50%, #e6e6fa 100%);
    color: #333;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.deal-banner-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0 0 10px 0;
}

.deal-banner-description {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
}

.deal-product {
    padding: 20px;
    background: white;
    text-align: center;
}

.deal-product-image {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deal-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.deal-product-item:hover .deal-product-image img {
    transform: scale(1.05);
}

.deal-product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.deal-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #CF2D2E;
    margin-bottom: 15px;
    text-align: center;
}

.deal-product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

.deal-product-price ins {
    text-decoration: none;
    color: #CF2D2E;
}

.deal-product-actions {
    text-align: center;
}

.deal-product-actions .button {
    background: #CF2D2E;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}

.deal-product-actions .button:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 45, 46, 0.4);
}

.deal-product-actions .button:active {
    transform: translateY(0);
}

.no-deals-today {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.no-deals-today h2 {
    color: #999;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.no-deals-today p {
    font-size: 1.1em;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deal-of-the-day-container {
        padding: 15px;
    }
    
    .deal-title {
        font-size: 2em;
    }
    
    .deal-banner-title {
        font-size: 24px;
    }
    
    .deal-banner-description {
        font-size: 20px;
    }
    
    .deal-products-grid {
        gap: 20px;
    }
    
    .deal-product-item {
        border-width: 1px;
    }
    
    .deal-product {
        padding: 15px;
    }
    
    .deal-product-title {
        font-size: 14px;
        min-height: 38px;
    }
    
    .deal-product-price {
        font-size: 16px;
    }
    
    .deal-product-actions .button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .deal-title {
        font-size: 1.5em;
    }
    
    .deal-subtitle {
        font-size: 1em;
    }
    
    .deal-banner-title {
        font-size: 20px;
    }
    
    .deal-banner-description {
        font-size: 16px;
    }
    
    .deal-products-grid {
        gap: 15px;
    }
    
    .deal-yellow-banner {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .deal-product {
        padding: 12px;
    }
    
    .deal-product-title {
        font-size: 13px;
        min-height: 34px;
    }
    
    .deal-product-price {
        font-size: 15px;
    }
}

/* Widget Specific Styles */
.widget .deal-of-the-day-container {
    padding: 0;
}

.widget .deal-title {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.widget .deal-subtitle {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.widget .deal-products-grid {
    gap: 15px;
}

.widget .deal-product-item {
    border-width: 1px;
}

.widget .deal-product {
    padding: 12px;
    text-align: center;
}

.widget .deal-product-title {
    font-size: 13px;
    min-height: 32px;
}

.widget .deal-product-price {
    font-size: 14px;
    margin-bottom: 10px;
}

.widget .deal-product-actions .button {
    padding: 8px 16px;
    font-size: 12px;
}

/* Loading State */
.deal-of-the-day-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

.deal-of-the-day-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #CF2D2E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.deal-product-item:focus-within {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

.deal-product-actions .button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .deal-product-item {
        border-width: 3px;
    }
    
    .deal-yellow-banner {
        background: #000;
        color: #fff;
    }
    
    .deal-product-actions .button {
        background: #000;
        color: #fff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .deal-product-item,
    .deal-product-item:hover,
    .deal-product-image img,
    .deal-product-actions .button,
    .deal-product-actions .button:hover {
        transition: none;
        transform: none;
    }
    
    .deal-yellow-banner::before {
        animation: none;
    }
} 