.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;
    justify-content: space-between;
    margin: 20px 0;
}

.flashsale-main-title {
    font-size: 32px;
    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: 22px;
        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;
}

.cart-btn {
    background: #1a1a2e;
    color: white;
}

.cart-btn:hover {
    background: #ff3f6c;
    color: #fff;
}

.buy-btn {
    background: #ff3f6c;
    color: #fff;
}
.buy-btn:hover {
    background: rgb(158, 38, 58);
    color: #fff;
}

.anime-icon {
    color: #ff3f6c;
    margin-right: 8px;
    animation: flashIcon 1s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 63, 108, 0.6));
}

@keyframes flashIcon {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: scale(1.2) rotate(-10deg);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    75% {
        transform: scale(1.2) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.jfy-view-btn {
    background: linear-gradient(135deg, #111, #333);
    color: white;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(255, 63, 108, 0.35);
}

.jfy-view-btn:hover {
    background: #ff3f6c;
    color: white;
    transform: translateY(-2px);
}

.jfy-view-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-25deg);
    animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
    100% {
        left: 130%;
    }
}

.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #ff3f6c, #ff6b81);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 8, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    min-width: 50px;
    text-align: center;
}

.discount-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
    border-radius: 25px 0 25px 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.newsletter {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 30px 0;
    color: #fff;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 24px 25px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    margin-bottom: 0px;
}
.newsletter-form button {
    padding: 15px 30px;
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
}

/* ============ checkout ============== */
/* Checkout Wrapper Layout */
.nk-checkout-wrapper {
    background-color: #f0f2f5;
    padding: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base Card/Box Module */
.nk-checkout-box {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 24px;
    margin-bottom: 20px;
}
.nk-checkout-box--coupon {
    padding: 15px 24px;
}

/* Heading Component */
.nk-box-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #212529;
}
.nk-heading-indicator {
    width: 4px;
    height: 18px;
    background-color: #ff9800;
    margin-right: 10px;
    border-radius: 2px;
    display: inline-block;
}

/* ==========================================================================
   Review Product Item Module (Updated for image_bc957a & image_bc9580 Style)
   ========================================================================== */
.nk-review-cart-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nk-review-item-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
    gap: 15px;
}
.nk-review-item-container:last-child {
    border-bottom: none;
}

/* লেফট কম্বাইন্ড ব্লক (ইমেজ + টেক্সট কনটেন্ট) */
.nk-review-product-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

/* প্রোডাক্ট ইমেজ */
.nk-review-product-thumb {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f1f3f5;
}

.nk-review-product-details {
    flex: 1;
}

/* প্রোডাক্ট টাইটেল */
.nk-review-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

/* অ্যাকশন লাইন (Qty এবং Price এর কন্টেইনার) */
.nk-review-meta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Quantity Controls */
.nk-qty-action-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nk-qty-label {
    color: #8c949c;
    font-size: 13px;
    font-weight: 500;
}
.nk-qty-custom-picker {
    max-width: 95px;
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e2e5e8;
}
.nk-qty-adjust-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 14px;
    padding: 0 8px;
    color: #495057;
}
.nk-qty-adjust-btn:hover {
    background: #e9ecef;
}
.nk-qty-display-input {
    border: none !important;
    font-weight: 600;
    height: 28px !important;
    font-size: 13px !important;
    background: transparent !important;
    padding: 0 !important;
    color: #212529;
}

/* প্রোডাক্ট প্রাইস স্টাইল */
.nk-review-pricing-box {
    display: flex;
    align-items: center;
}
.nk-review-item-price {
    font-weight: 700;
    color: #e2136e; /* ইমেজের ম্যাচিং কালার টোন */
    font-size: 15px;
}

/* ডিলিট বাটন কন্টেইনার এবং বাটন */
.nk-review-delete-box {
    display: flex;
    align-items: center;
}
.nk-review-delete-btn {
    background-color: #ef4444; /* ইমেজের মতো সলিড রেড ব্যাকগ্রাউন্ড */
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background-color 0.2s;
}
.nk-review-delete-btn:hover {
    background-color: #dc2626;
}

/* ==========================================================================
   Forms, Payments & Other Modules (Unchanged & Standardized)
   ========================================================================== */
.nk-input-field, .nk-select-field, .nk-textarea-field {
    border: 1px solid #e0e0e0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    height: 45px !important;
}
.nk-input-field:focus, .nk-select-field:focus, .nk-textarea-field:focus {
    border-color: #ff9800 !important;
}
.nk-input-phone-prefix {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-right: none;
    color: #757575;
    padding: 10px 12px;
    font-size: 14px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 45px !important;
}
.nk-input-phone-body {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.product-qty-input{
    box-shadow: none !important;
    background: white !important;
}
.nk-payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.nk-payment-tile {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color 0.2s, background-color 0.2s;
}
.nk-payment-tile--active {
    border: 1px solid #ffb300;
    background: #fffaf0;
}
.nk-payment-tile-check {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    color: #e0e0e0;
}
.nk-payment-tile--active .nk-payment-tile-check {
    color: #ffb300;
}
.nk-payment-tile-icon {
    font-size: 24px;
    margin-bottom: 5px;
    color: #6c757d;
}
.nk-payment-tile-icon--cod {
    color: #4caf50;
}
.nk-payment-badge-bkash {
    background-color: #e2136e;
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}
.nk-payment-tile-title {
    font-size: 12px;
    font-weight: 500;
    color: #757575;
    margin: 0;
}
.nk-payment-tile-title--cod {
    color: #4caf50;
    font-weight: 600;
}

.nk-summary-item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #495057;
}
.nk-summary-item-row--total {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    border-top: 1px dashed #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}

.nk-coupon-trigger-header {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-coupon-apply-btn {
    font-size: 14px;
}

.nk-notes-input-label {
    display: block;
    font-size: 13px;
    color: #757575;
    margin-bottom: 8px;
}

.nk-terms-checkbox-input {
    margin-left: 0 !important;
    cursor: pointer;
}
.nk-terms-checkbox-label {
    font-size: 13px;
    color: #495057;
    line-height: 1.5;
    cursor: pointer;
}
.nk-terms-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}
.nk-terms-link:hover {
    color: #e68900;
    text-decoration: underline;
}

.nk-btn-submit-order {
    background-color: #ff9800 !important;
    color: #fff !important;
    width: 100%;
    border: none;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 6px !important;
    transition: background-color 0.2s;
    letter-spacing: 0.5px;
}
.nk-btn-submit-order:hover {
    background-color: #e68900 !important;
}

@media (max-width: 576px) {
    .nk-review-product-main {
        gap: 10px;
    }
    .nk-review-product-thumb {
        width: 50px;
        height: 50px;
    }
    .nk-review-product-title {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .nk-review-meta-actions {
        gap: 12px;
    }
    .nk-qty-label {
        font-size: 12px;
    }
    .nk-review-item-price {
        font-size: 14px;
    }
    .nk-review-delete-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}
