#slidernew.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px;
    background: #dddddd54 !important;
    margin-top: -50px;
}

#slidernew.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff !important;
}

#slidernew .owl-nav button.owl-prev,
#slidernew .owl-nav button.owl-next {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

#slidernew .owl-nav button.owl-prev {
    background: #1d1c1c42 !important;
    border-radius: 0 20px 20px 0 !important;
    height: 30px;
    width: 25px;
    color: #fff !important;
    left: -4px;
    font-size: 12px !important;
}
#slidernew .owl-nav button.owl-next {
    background: #1d1c1c42 !important;
    border-radius: 20px 0 0 20px !important;
    height: 30px;
    width: 25px;
    color: #fff !important;
    right: -4px;
    font-size: 12px !important;
}

#slidernew:hover .owl-nav button.owl-prev,
#slidernew:hover .owl-nav button.owl-next {
    opacity: 1;
    visibility: visible;
}

.drz-flash-sale-wrapper {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
}

.drz-section-title {
    font-size: 20px;
    color: #424242;
    margin-bottom: 12px !important;
    font-weight: 400;
}

.drz-nav-bar {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 8px;
    background: #fff;
    padding: 10px 15px;
}

.drz-tab-active {
    color: #f85606;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.drz-btn-view-all {
    color: #f85606;
    border: 1px solid #f85606;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.drz-btn-view-all:hover {
    background-color: #f85606;
    color: #fff;
}

.drz-product-card {
    background: #ffffff;
    cursor: pointer;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.drz-product-card {
    box-shadow: none;
}

.drz-product-card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.drz-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f9f9f9;
}

.drz-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drz-product-details {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.drz-product-title {
    font-size: 13px;
    color: #212121;
    line-height: 18px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    font-weight: 400;
}

.drz-price-box {
    margin-bottom: 2px;
}

.drz-current-price {
    color: #f85606;
    font-size: 18px;
    font-weight: 500;
}

.drz-discount-box {
    font-size: 12px;
}

.drz-original-price {
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 4px;
}

.drz-discount-badge {
    color: #212121;
    font-weight: 400;
}

@media (max-width: 576px) {
    .drz-section-title {
        font-size: 16px;
    }
    .drz-current-price {
        font-size: 15px;
    }
    .drz-product-title {
        font-size: 12px;
        line-height: 16px;
        height: 32px;
    }
    .drz-btn-view-all {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* ================ categories ================ */
.drz-cat-wrapper {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
}

.drz-cat-title {
    font-size: 20px;
    color: #424242;
    margin-bottom: 12px !important;
    font-weight: 400;
}

.drz-cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    background: transparent;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.drz-cat-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 8px 10px 8px;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
    height: 100%;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.drz-cat-img-box {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drz-cat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.drz-cat-name {
    font-size: 13px;
    color: #212121;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px;
    word-break: break-word;
}

.drz-cat-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
    z-index: 5;
    transform: translateY(-2px);
}

.drz-cat-card:hover .drz-cat-name {
    color: #000000;
}

@media (max-width: 1200px) {
    .drz-cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .drz-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .drz-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .drz-cat-img-box {
        width: 60px;
        height: 60px;
    }

    .drz-cat-name {
        font-size: 11px;
        line-height: 14px;
        height: 28px;
    }

    .drz-cat-title {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .drz-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= just for you -> products =============== */
.drz-jfy-wrapper {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-family: "Roboto", "Segoe UI", Tahoma, sans-serif;
}

.drz-jfy-title {
    font-size: 20px;
    color: #424242;
    margin-bottom: 15px;
    font-weight: 400;
}

.drz-jfy-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.drz-jfy-card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.drz-jfy-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f9f9f9;
}

.drz-jfy-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drz-jfy-details {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.drz-jfy-product-title {
    font-size: 13px;
    color: #212121;
    line-height: 18px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    font-weight: 400;
}

.drz-jfy-price-box {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.drz-jfy-current-price {
    color: #f85606;
    font-size: 18px;
    font-weight: 400;
}

.drz-jfy-discount-badge {
    color: #9e9e9e;
    font-size: 12px;
}

.drz-jfy-rating-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.drz-jfy-stars {
    color: #faca51;
    font-size: 10px;
}

.drz-jfy-review-count {
    color: #9e9e9e;
    font-size: 11px;
}

@media (max-width: 576px) {
    .drz-jfy-title {
        font-size: 16px;
    }

    .drz-jfy-product-title {
        font-size: 12px;
        line-height: 16px;
        height: 32px;
    }

    .drz-jfy-current-price {
        font-size: 15px;
    }

    .drz-jfy-discount-badge {
        font-size: 10px;
    }

    .drz-jfy-stars {
        font-size: 9px;
    }

    .drz-jfy-review-count {
        font-size: 10px;
    }
}

/* ============ 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;
}

.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;
    }
}

/* ================= details col-3 page =============== */

.pib-delivery-card {
    background-color: #FAFAFA;
    padding: 16px;
    border-radius: 4px;
    color: #212121;
}

.pib-section {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pib-section-title {
    font-size: 13px;
    color: #757575;
    display: block;
    margin-bottom: 12px;
}

.pib-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pib-text {
    font-size: 14px;
    color: #212121;
    line-height: 1.4;
}

.pib-icon {
    font-size: 16px;
    color: #212121;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pib-login-link {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 500;
}

.pib-change-btn {
    color: #1a73e8;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.pib-price {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 8px;
}

.pib-border-none {
    border-bottom: none !important;
}
/* ===== header ======== */

@media (max-width: 576px) {
    .cp-main-header {
        background: #fff !important;
        padding: 0 !important;
    }
    .msb-search-form {
        width: 100%;
        padding: 8px 12px;
    }

    .msb-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #ffffff;
        border: 1px solid #ff4a4a;
        border-radius: 50px;
        padding: 3px 3px 3px 14px;
        height: 42px;
        box-sizing: border-box;
    }

    .msb-search-icon {
        color: #9ea5b4;
        font-size: 15px;
        margin-right: 8px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .msb-search-input {
        width: 100%;
        height: 100% !important;
        border: none !important;
        outline: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        font-size: 14px;
        color: #333;
        line-height: normal !important;
    }

    .msb-search-input::placeholder {
        color: #9ea5b4;
    }

    .msb-search-btn {
        background-color: #ff5500;
        color: #ffffff;
        border: none;
        outline: none;
        padding: 0 20px !important;
        height: 100%;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background-color 0.2s ease-in-out;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .msb-search-btn:hover {
        background-color: #e04b00;
    }
}
