/* ============================================
   Flash Sale Section - Premium Production Version
   Bogura Bazar Theme
============================================ */

/* ========== সেকশন কন্টেইনার ========== */
.section-flash-card {
    margin: 40px 0;
    background: linear-gradient(135deg, #fff8f0 0%, #e8f5e9 100%);
    border-radius: 28px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.section-flash-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 98, 13, 0.08), transparent);
    border-radius: 50%;
}

.section-flash-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06), transparent);
    border-radius: 50%;
}

.flash-sale-wrapper {
    position: relative;
    z-index: 2;
}

/* ========== হেডার সেকশন ========== */
.flash-sale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 8px;
}

.flash-sale-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flash-sale-title i {
    font-size: 42px;
    color: #f5620d;
    animation: flashPulse 1.5s infinite;
    filter: drop-shadow(0 2px 8px rgba(245, 98, 13, 0.3));
}

@keyframes flashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.flash-sale-title h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #f5620d;
    letter-spacing: -0.5px;
}

.flash-sale-title .badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    animation: badgeGlow 1.5s infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ========== টাইমার ========== */
.flash-sale-timer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timer-label {
    font-size: 14px;
    font-weight: 600;
    color: #f5620d;
}

.timer-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #0f0;
    padding: 8px 14px;
    border-radius: 12px;
    text-align: center;
    min-width: 65px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timer-box span:first-child {
    font-size: 24px;
    font-weight: 800;
    display: block;
    font-family: monospace;
}

.timer-unit {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.timer-sep {
    font-size: 24px;
    font-weight: 800;
    color: #f5620d;
}

.view-all-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 22px;
    border-radius: 15px;
    background: white;
    color: #f5620d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.view-all-link:hover {
    background: #f5620d;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(245, 98, 13, 0.3);
}

/* ========== প্রোডাক্ট কার্ড ========== */
.flash-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flash-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(245, 98, 13, 0.12);
}

/* ব্যাজ পজিশন ঠিক করা */
.flash-product-card {
    position: relative;
}

/* ========== ব্যাজ স্টাইল - একই সারিতে ========== */
.flash-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* রিসেট: অন্য ফাইলের absolute পজিশন যাতে এখানে ডিস্টার্ব না করে */
.flash-product-badge .discount-badge,
.flash-product-badge .flash-badge {
    position: static;
    top: auto;
    right: auto;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.flash-badge {
    background: linear-gradient(135deg, #f5620d, #e04e05);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(245, 98, 13, 0.3);
    white-space: nowrap;
}

.flash-badge i {
    font-size: 10px;
}

/* ========== ইমেজ সেকশন ========== */
.flash-product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fafbfc;
}

.flash-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flash-product-card:hover .flash-product-image img {
    transform: scale(1.08);
}

/* ========== বডি সেকশন ========== */
.flash-product-body {
    padding: 18px 16px 20px;
}

.flash-product-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    line-height: 1.4;
}

/* ========== প্রাইস ও প্রগ্রেস ========== */
.flash-product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.flash-product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.flash-product-price .current {
    font-size: 22px;
    font-weight: 800;
    color: #f5620d;
}

.flash-product-price .old {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.flash-progress {
    flex: 1;
    min-width: 100px;
}

.progress-bar-bg {
    background: #e5e7eb;
    border-radius: 20px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #f5620d, #f97316);
    border-radius: 20px;
    height: 6px;
    width: 0%;
    transition: width 0.5s ease;
}

.stock-text {
    font-size: 10px;
    font-weight: 600;
    color: #ef4444;
    display: block;
    text-align: right;
}

.stock-text i {
    margin-right: 4px;
    font-size: 9px;
}

/* ========== কার্ট বাটন ========== */
.flash-cart-btn {
    width          : 100%;
    background     : linear-gradient(135deg, #00A65A, #008D4C);
    border         : none;
    border-radius  : 12px;
    padding        : 12px 16px;
    color          : white;
    font-weight    : 700;
    font-size      : 14px;
    cursor         : pointer;
    transition     : all 0.3s ease;
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
}

.flash-cart-btn:hover {
    background: linear-gradient(135deg, #f5620d, #e04e05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 98, 13, 0.3);
}

.flash-cart-btn:active {
    transform: translateY(0);
}

.flash-cart-btn.out-of-stock {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.flash-cart-btn.out-of-stock:hover {
    background: #e5e7eb !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ========== এম্পটি স্টেট ========== */
.empty-flash {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
}

.empty-flash i {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-flash p {
    color: #64748b;
    margin-bottom: 20px;
}

/* ============================================
   রেসপন্সিভ - হেডার সেন্টার + ফন্ট সাইজ মিন 13px
============================================ */

/* ========== ডেস্কটপ (1200px+) ========== */
@media (min-width: 1200px) {
    .flash-product-image {
        height: 220px;
    }
    .flash-product-price .current {
        font-size: 22px;
    }
}

/* ========== ডেস্কটপ (992px - 1199px) ========== */
@media (max-width: 1199px) and (min-width: 992px) {
    .flash-product-image {
        height: 200px;
    }
    .flash-product-price .current {
        font-size: 20px;
    }
}

/* ========== ট্যাবলেট (768px - 991px) ========== */
@media (max-width: 991px) and (min-width: 768px) {
    .section-flash-card {
        margin: 30px 0;
        padding: 25px 15px;
        border-radius: 24px;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        font-size: 14px;
    }

    .flash-sale-title h3 {
        font-size: 24px;
    }
    .flash-sale-title i {
        font-size: 36px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
    }
    .timer-box {
        min-width: 55px;
        padding: 6px 10px;
    }
    .timer-box span:first-child {
        font-size: 18px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 18px;
    }
    .flash-product-image {
        height: 180px;
    }
    .flash-product-title {
        font-size: 14px;
    }
    .flash-product-price .current {
        font-size: 18px;
    }
    .flash-cart-btn {
        font-size: 14px;
        padding: 10px 14px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
    }
}

/* ========== মোবাইল ল্যান্ডস্কেপ (576px - 767px) ========== */
@media (max-width: 767px) and (min-width: 576px) {
    .section-flash-card {
        border-radius: 12px;
        padding: 20px 12px;
        margin: 25px 0;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
        gap: 14px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 10px 18px;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
        gap: 5px;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        padding: 8px 18px;
        font-size: 14px;
    }

    .flash-sale-title i {
        font-size: 32px;
    }
    .flash-sale-title h3 {
        font-size: 22px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
    }
    .timer-box {
        min-width: 50px;
        padding: 5px 8px;
    }
    .timer-box span:first-child {
        font-size: 16px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 18px;
    }
    .flash-product-image {
        height: 200px;
    }
    .flash-product-title {
        font-size: 14px;
        min-height: 38px;
    }
    .flash-product-price .current {
        font-size: 18px;
    }
    .flash-cart-btn {
        font-size: 14px;
        padding: 10px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
    }
}

/* ========== মোবাইল পোর্ট্রেট (480px - 575px) ========== */
@media (max-width: 575px) and (min-width: 480px) {
    .section-flash-card {
        margin: 20px 0;
        border-radius: 12px;
        padding: 16px 10px;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 8px;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
        gap: 4px;
        flex-wrap: wrap;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        padding: 8px 18px;
        font-size: 14px;
    }

    .flash-sale-title i {
        font-size: 28px;
    }
    .flash-sale-title h3 {
        font-size: 20px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
        padding: 4px 10px;
    }
    .timer-box {
        min-width: 45px;
        padding: 4px 8px;
    }
    .timer-box span:first-child {
        font-size: 14px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 16px;
    }
    .flash-product-image {
        height: 180px;
    }
    .flash-product-body {
        padding: 14px 12px 16px;
    }
    .flash-product-title {
        font-size: 14px;
        min-height: 36px;
    }
    .flash-product-price .current {
        font-size: 16px;
    }
    .flash-cart-btn {
        padding: 10px;
        font-size: 14px;
    }
    .discount-badge,
    .flash-badge {
        font-size: 13px;
        padding: 3px 8px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
        font-size: 13px;
    }
}

/* ========== ছোট মোবাইল (400px - 479px) ========== */
@media (max-width: 479px) and (min-width: 400px) {
    .section-flash-card {
        margin: 15px 0;
        border-radius: 14px;
        padding: 14px 8px;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 14px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
        gap: 8px;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 8px 12px;
        gap: 6px;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
        gap: 3px;
        flex-wrap: wrap;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        padding: 6px 14px;
        font-size: 14px;
        gap: 6px;
    }

    .flash-sale-title i {
        font-size: 24px;
    }
    .flash-sale-title h3 {
        font-size: 18px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
        padding: 3px 8px;
    }
    .timer-box {
        min-width: 38px;
        padding: 3px 6px;
        border-radius: 8px;
    }
    .timer-box span:first-child {
        font-size: 13px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 14px;
    }
    .flash-product-image {
        height: 150px;
    }
    .flash-product-body {
        padding: 10px 8px 12px;
    }
    .flash-product-title {
        font-size: 13px;
        min-height: 32px;
        margin-bottom: 8px;
    }
    .flash-product-price .current {
        font-size: 14px;
    }
    .flash-product-price .old {
        font-size: 13px;
    }
    .flash-cart-btn {
        padding      : 8px;
        font-size    : 14px;
        border-radius: 5px;
        gap          : 6px;
    }
    .discount-badge,
    .flash-badge {
        font-size: 13px;
        padding: 2px 6px;
    }
    .flash-badge i {
        font-size: 13px;
    }
    .stock-text {
        font-size: 13px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
    }
}

/* ========== অতি ছোট মোবাইল (380px - 399px) ========== */
@media (max-width: 399px) and (min-width: 380px) {
    .section-flash-card {
        margin: 12px 0;
        border-radius: 12px;
        padding: 12px 6px;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
        gap: 6px;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 6px 10px;
        gap: 4px;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
        gap: 2px;
        flex-wrap: wrap;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        padding: 4px 10px;
        font-size: 14px;
        gap: 4px;
        border-radius: 15px;
    }

    .flash-sale-title i {
        font-size: 20px;
    }
    .flash-sale-title h3 {
        font-size: 16px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
        padding: 2px 6px;
    }
    .timer-box {
        min-width: 32px;
        padding: 2px 4px;
        border-radius: 6px;
    }
    .timer-box span:first-child {
        font-size: 13px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 12px;
    }
    .flash-product-image {
        height: 130px;
    }
    .flash-product-body {
        padding: 8px 6px 10px;
    }
    .flash-product-title {
        font-size: 13px;
        min-height: 28px;
        margin-bottom: 6px;
    }
    .flash-product-price .current {
        font-size: 14px;
    }
    .flash-product-price .old {
        font-size: 13px;
    }
    .flash-progress {
        min-width: 60px;
    }
    .flash-cart-btn {
        padding      : 6px;
        font-size    : 14px;
        border-radius: 5px;
        gap          : 4px;
    }
    .flash-cart-btn i {
        font-size: 13px;
    }
    .discount-badge,
    .flash-badge {
        font-size: 13px;
        padding: 2px 4px;
        border-radius: 20px;
    }
    .flash-badge i {
        font-size: 13px;
    }
    .stock-text {
        font-size: 13px;
    }
    .progress-bar-bg {
        height: 4px;
    }
    .progress-bar-fill {
        height: 4px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
    }
}

/* ========== অতি ছোট মোবাইল (380px পর্যন্ত) ========== */
@media (max-width: 379px) {
    .section-flash-card {
        margin: 10px 0;
        border-radius: 10px;
        padding: 10px 4px;
    }

    .flash-sale-header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 6px;
        margin-bottom: 10px;
    }

    .flash-sale-title {
        justify-content: center;
        width: 100%;
        gap: 4px;
    }

    .flash-sale-timer {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        padding: 4px 8px;
        gap: 3px;
        border-radius: 10px;
    }

    .timer-label {
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .timer-group {
        justify-content: center;
        gap: 2px;
        flex-wrap: wrap;
    }

    .view-all-link {
        justify-content: center;
        width: auto;
        margin: 0 auto;
        padding: 3px 8px;
        font-size: 14px;
        gap: 3px;
        border-radius: 15px;
    }

    .flash-sale-title i {
        font-size: 18px;
    }
    .flash-sale-title h3 {
        font-size: 14px;
    }
    .flash-sale-title .badge {
        font-size: 13px;
        padding: 2px 4px;
    }
    .timer-box {
        min-width: 28px;
        padding: 2px 3px;
        border-radius: 4px;
    }
    .timer-box span:first-child {
        font-size: 13px;
    }
    .timer-unit {
        font-size: 13px;
    }
    .timer-sep {
        font-size: 10px;
    }
    .flash-product-image {
        height: 110px;
    }
    .flash-product-body {
        padding: 6px 4px 8px;
    }
    .flash-product-title {
        font-size: 13px;
        min-height: 24px;
        margin-bottom: 4px;
    }
    .flash-product-price .current {
        font-size: 13px;
    }
    .flash-product-price .old {
        font-size: 13px;
    }
    .flash-progress {
        min-width: 50px;
    }
    .flash-cart-btn {
        padding      : 4px;
        font-size    : 14px;
        border-radius: 5px;
        gap          : 3px;
    }
    .flash-cart-btn i {
        font-size: 13px;
    }
    .discount-badge,
    .flash-badge {
        font-size: 13px;
        padding: 1px 4px;
        border-radius: 16px;
    }
    .flash-badge i {
        font-size: 13px;
    }
    .stock-text {
        font-size: 13px;
    }
    .progress-bar-bg {
        height: 3px;
    }
    .progress-bar-fill {
        height: 3px;
    }

    /* ✅ প্রাইস র‍্যাপার - প্রতি লাইনে একটি করে */
    .flash-product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .flash-product-price {
        width: 100%;
        justify-content: flex-start;
    }

    .flash-progress {
        width: 100%;
        min-width: unset;
    }

    .stock-text {
        text-align: left;
    }
}

/* ============================================
   টাচ ডিভাইস অপটিমাইজেশন
============================================ */
@media (hover: none) and (pointer: coarse) {
    .flash-product-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .flash-product-card:hover .flash-product-image img {
        transform: none;
    }
    .flash-cart-btn:hover {
        transform: none;
        background: linear-gradient(135deg, #00A65A, #008D4C);
        box-shadow: none;
    }
    .view-all-link:hover {
        transform: none;
        background: white;
        color: #f5620d;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
}


/* ========== ফ্ল্যাশ সেল লিংক ========== */
.flash-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.flash-product-link:hover {
    text-decoration: none;
    color: inherit;
}

.flash-product-link:hover .flash-product-image img {
    transform: scale(1.08);
}

.flash-product-link:hover .flash-product-title {
    color: #f5620d;
}

/* ========== ফ্ল্যাশ কার্ড ========== */
.flash-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.flash-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(245, 98, 13, 0.12);
}

/* ========== ফ্ল্যাশ কার্ট বাটন ========== */
.flash-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #00A65A, #008D4C);
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.flash-cart-btn:hover {
    background: linear-gradient(135deg, #f5620d, #e04e05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 98, 13, 0.3);
}
