.music-banner-box {
    position: relative;
    width: 100%;
}

.music-banner-bg {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.music-banner-overlay-content {
    position: absolute;
    top: 50%;
    left: 60px; /* desktop offset */
    transform: translateY(-50%);
    color: #fff;
}

/* Desktop styles */
.music-banner-category {
    color: #00ff66;
    font-weight: 600;
    margin-bottom: 10px;
}

.music-banner-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.music-banner-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.music-banner-time {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.music-banner-time span {
    font-size: 18px;
}

.music-banner-time p {
    font-size: 12px;
    margin: 0;
}

.music-banner-btn {
    background: #00ff66;
    padding: 12px 35px;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.music-banner-btn:hover {
    background: #00ff66;
}

/* Mobile / Tablet Responsive */
@media (max-width: 992px) {
    .music-banner-overlay-content {
        left: 30px;
        right: 30px;
    }
    .music-banner-title {
        font-size: 40px;
    }
}
.view-all-product-btn{
    padding:15px 35px;
    color:white;
    font-weight:bold;
    font-size:15px;
    background:#db4444;
    border-radius:4px;
}
@media (max-width: 768px) {
    .view-all-product-btn{
        padding:12px 30px;
        font-size:14px;
    }
    .music-banner-overlay-content {
        left: 20px;
        right: 20px;
        text-align: center; /* center on smaller screens */
    }
    .music-banner-title {
        font-size: 32px;
    }
    .music-banner-category {
        font-size: 14px;
    }
    .music-banner-timer {
        flex-wrap: wrap; /* wrap the countdown circles */
        justify-content: center;
        gap: 10px;
    }
    .music-banner-time {
        width: 55px;
        height: 55px;
    }
    .music-banner-btn {
        display: block;
        margin: 0 auto;
        padding: 10px 25px;
    }
    .music-banner-title {
        margin-bottom: 15px;
    }
    .music-banner-time span {
        font-size: 14px;
    }
    .music-banner-time p {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .music-banner-title {
        font-size: 20px;
    }
    .music-banner-category {
        margin-top: 20px !important;
        font-size: 10px;
    }
    .music-banner-time {
        width: 45px;
        height: 45px;
    }
}
/* ======= flash sale ========== */
.flash-wrapper {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.flashsale-main-title {
    font-size: 40px;
    font-weight: 700;
}

.flashsale-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.flashsale-time-box {
    text-align: center;
}

.flashsale-time-box span {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.flashsale-time-box small {
    font-size: 14px;
    color: #555;
}

.flashsale-dot {
    font-size: 30px;
    color: #e57373;
    font-weight: bold;
}
/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .flash-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin: 10px 0;
    }

    .flashsale-main-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .flashsale-countdown {
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 0;
        justify-content: flex-start;
    }

    .flashsale-time-box {
        font-size: 16px; /* smaller numbers for mobile */
        width: 60px; /* prevent overflow */
    }

    .flashsale-time-box span {
        font-size: 14px;
    }

    .flashsale-time-box small {
        font-size: 12px;
    }

    .flashsale-dot {
        font-size: 24px;
    }
}

#slider.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -30px !important;
}
#slider.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #db4444;
    border: 2px solid #fff;
    width: 17px !important;
    height: 17px !important;
}
#slider.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}
#slider.owl-theme .owl-dots .owl-dot span {
    background: #808080;
}

/* border animation */

/* ============================================
   #products — Card Border Draw Animation
   Top-left → দুই পাশ দিয়ে → Bottom-right
   ============================================ */

#products .product-card {
    position: relative;
    border-radius: 8px;
    overflow: visible; /* clip বন্ধ রাখুন */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Top & Right border — ::before */
#products .product-card::before,
#products .product-card::after {
    content: "";
    position: absolute;
    border-radius: 8px;
    transition: none;
    pointer-events: none;
}

/* TOP border (left→right) + RIGHT border (top→bottom) */
#products .product-card::before {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-top: 2px solid #f97316;
    border-right: 2px solid #f97316;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.3s ease 0s;
}

/* BOTTOM border (right→left) + LEFT border (bottom→top) */
#products .product-card::after {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-bottom: 2px solid #f97316;
    border-left: 2px solid #f97316;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    clip-path: inset(100% 0 0 100%);
    transition: clip-path 0.3s ease 0s;
}

/* Hover এ দুই দিক থেকে border draw হবে */
#products .product-card:hover::before {
    clip-path: inset(0 0% 0% 0);
    transition: clip-path 0.4s ease 0s;
}

#products .product-card:hover::after {
    clip-path: inset(0% 0 0 0%);
    transition: clip-path 0.4s ease 0s;
}

#products .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-text {
    color: #777;
    margin-right: 10px;
    font-size: 16px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 18px;
    transition: 0.3s;
}

.share-btn:hover {
    opacity: 0.85;
}

.email {
    background: #4aa3ff;
}

.twitter {
    background: #1da1f2;
}

.facebook {
    background: #3b5998;
}

.linkedin {
    background: #0077b5;
}

.whatsapp {
    background: #25d366;
}
.details-call-for-order {
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #f3af3d;
    color: #f3af3d;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: border 0.3s ease;
    -webkit-transition: border 0.3s ease;
    -moz-transition: border 0.3s ease;
    -ms-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
}
.details-call-for-order:hover {
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #f3af3d;
    color: #fff;
    background: #f3af3d;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: border 0.3s ease;
}
