/* Container Styles */
.prk-flash-sale-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.prk-flash-sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.prk-flash-sale-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.prk-flash-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Product Display */
.prk-product-display {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: center;
}

.prk-product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.prk-product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Product Info */
.prk-product-info {
    padding: 10px;
}

.prk-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Price Styles */
.prk-price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.prk-regular-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.prk-sale-price {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b6b;
}

/* Sold Info */
.prk-sold-info {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

.prk-sold-count {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-right: 5px;
}

/* Timer Styles */
.prk-countdown-timer {
    margin: 20px 0;
}

.prk-timer-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.prk-timer-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.prk-timer-box {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.prk-timer-digit {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.prk-timer-label {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.prk-timer-separator {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
}

/* Button Styles */
.prk-view-product-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.prk-view-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Dots Navigation */
.prk-product-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.prk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prk-dot.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .prk-product-display {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .prk-product-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .prk-flash-sale-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .prk-timer-wrapper {
        flex-wrap: wrap;
    }
    
    .prk-timer-box {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .prk-timer-digit {
        font-size: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prk-product-display {
    animation: fadeIn 0.5s ease;
}

/* RTL Support */
.rtl .prk-price-wrapper {
    flex-direction: row-reverse;
}

.rtl .prk-sold-count {
    margin-right: 0;
    margin-left: 5px;
}
