/* Flash Sale Page */
.flash-sale-page .page-header { margin: 20px 0 30px; }
.flash-sale-page .page-title { margin: 0; font-size: 2rem; font-weight: 800; color: #0a1f2e; }

/* Grid */
.flash-sale-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .flash-sale-grid { grid-template-columns: 1fr; }
}

/* Card Container */
.flash-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: start;
    border-radius: 12px;
    padding: 16px;
}

.flash-card.is-light {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Thumbnail */
.flash-thumb {
    width: 140px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef4f7;
    display: block;
}

.flash-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Content */
.flash-content { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.flash-title { margin: 0; font-size: 1.1rem; font-weight: 700; }
.flash-card.is-light .flash-title a { color: #0a1f2e; text-decoration: none; }
.flash-card.is-light .flash-title a:hover { color: #21bf73; }

/* Price */
.flash-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.flash-price-line .label { color: #6b7c8d; font-weight: 600; }
.flash-price-line .regular-price del { color: #6b7c8d; }
.flash-price-line .sale-intro { color: #6b7c8d; }
.flash-price-line .sale-price { color: #21bf73; font-weight: 800; font-size: 1.1rem; }

/* Badge */
.save-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #21bf73;
    color: #ffffff;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Features */
.flash-features { color: #6b7c8d; font-size: 0.9rem; line-height: 1.4; }

/* Load More */
.load-more-wrap { margin: 24px 0; text-align: center; }
.load-more-btn { padding: 10px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: #1877f2; color: #fff; font-weight: 700; cursor: pointer; transition: all 0.25s ease; }
.load-more-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.load-more-btn.loading { opacity: 0.8; pointer-events: none; }
