/* WooCommerce Coupon Display Plugin Styles */

.wc-coupon-display {
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    box-sizing: border-box;
}

.wc-coupon-content {
    position: relative;
    z-index: 1;
}

.wc-coupon-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.wc-coupon-description {
    font-size: 18px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.wc-coupon-code {
    background-color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
    min-width: 120px;
}

.wc-coupon-code:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.wc-coupon-code:active {
    transform: scale(0.98);
}

.wc-coupon-click-text {
    font-size: 14px;
    margin: 10px 0 15px 0;
    opacity: 0.9;
}

.wc-coupon-pricing {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.4;
}

.wc-discounted-price {
    color: #ff0000;
    font-size: 26px;
    font-weight: bold;
}

.wc-original-price {
    text-decoration: line-through;
    color: #c4c4c4;
    margin-left: 10px;
    font-size: 18px;
}

.wc-coupon-urgency {
    font-size: 14px;
    margin: 15px 0 0 0;
    font-style: italic;
    opacity: 0.9;
}

.wc-coupon-confirmation {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.wc-coupon-confirmation.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wc-coupon-display {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .wc-coupon-title {
        font-size: 20px;
    }
    
    .wc-coupon-description {
        font-size: 16px;
    }
    
    .wc-coupon-code {
        font-size: 24px;
        padding: 12px 18px;
        min-width: 100px;
    }
    
    .wc-coupon-pricing {
        font-size: 16px;
    }
    
    .wc-discounted-price {
        font-size: 22px;
    }
    
    .wc-original-price {
        font-size: 16px;
        display: block;
        margin: 5px 0 0 0;
    }
}

@media (max-width: 480px) {
    .wc-coupon-display {
        padding: 15px 10px;
    }
    
    .wc-coupon-title {
        font-size: 18px;
    }
    
    .wc-coupon-description {
        font-size: 14px;
    }
    
    .wc-coupon-code {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .wc-coupon-confirmation {
        bottom: 15px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Animation for coupon code */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.wc-coupon-code.animate {
    animation: pulse 0.6s ease-in-out;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .wc-coupon-display {
        border-color: #ffffff;
    }
}

/* Print styles */
@media print {
    .wc-coupon-confirmation {
        display: none !important;
    }
    
    .wc-coupon-code {
        cursor: default;
    }
    
    .wc-coupon-click-text {
        display: none;
    }
}