/* Frontend styles for Flash Sale Countdown widgets */

.fscfe-countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 10px 0;
    text-align: center;
}

.fscfe-countdown-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.fscfe-countdown-timer {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.fscfe-countdown-timer .fscfe-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    background: #fff;
    padding: 8px 4px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.fscfe-countdown-timer .fscfe-time-unit .number {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.fscfe-countdown-timer .fscfe-time-unit .label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.fscfe-countdown-expired {
    color: #e74c3c;
    font-weight: 600;
    padding: 10px;
}

.fscfe-product-grid {
    display: grid;
    gap: 20px;
}

.fscfe-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fscfe-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fscfe-product-image {
    position: relative;
    overflow: hidden;
}

.fscfe-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fscfe-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.fscfe-product-content {
    padding: 12px;
}

.fscfe-product-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fscfe-product-title a {
    color: #333;
    text-decoration: none;
}

.fscfe-product-title a:hover {
    color: #e74c3c;
}

.fscfe-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

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

.fscfe-sale-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.fscfe-countdown-in-product {
    margin-top: 8px;
    font-size: 12px;
}

.fscfe-add-to-cart {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    margin-top: 8px;
    transition: background 0.2s;
}

.fscfe-add-to-cart:hover {
    background: #e74c3c;
    color: #fff;
}

.fscfe-no-products {
    text-align: center;
    padding: 30px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .fscfe-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    }
}
