/* Frontend Styles for WooCommerce Product Groups & Discounts */

/* Sale Badge */
.wcpgd-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wcpgd-sale-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 5px 5px;
    border-color: transparent transparent #c0392b transparent;
}

/* Product listing adjustments */
.products .product {
    position: relative;
}

/* Single product page */
.single-product .wcpgd-sale-badge {
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
}

/* Discount information */
.wcpgd-discount-info {
    background: #f8f9fa;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    border-left: 4px solid #2ecc71;
}

.wcpgd-discount-info h4 {
    margin: 0 0 10px 0;
    color: #27ae60;
    font-size: 16px;
}

.wcpgd-discount-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

/* Sliding discount timer */
.wcpgd-sliding-timer {
    background: #fff3cd;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    display: inline-block;
}

.wcpgd-sliding-timer strong {
    color: #856404;
}

/* Cart discount notice */
.wcpgd-cart-discount {
    background: #d4edda;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
    border-left: 4px solid #28a745;
    color: #155724;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wcpgd-sale-badge {
        top: 5px;
        right: 5px;
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .single-product .wcpgd-sale-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Animation for sale badge */
@keyframes wcpgd-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.wcpgd-sale-badge.pulse {
    animation: wcpgd-pulse 2s ease-in-out infinite;
}
