body {
    font-family: "Open Sans", sans-serif;
}
.product-card {
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}

.product-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.product-actions {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #22a3a4;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 6px 0;
    transition: bottom 0.4s ease-in-out;
}

.product-card:hover .product-actions {
    bottom: 60px;
}

.product-actions a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.product-actions a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .product-actions {
        display: none !important;
    }
    .quick-add-to-cart-btn {
        font-size: 10px !important;
    }
    .quick-buy-now-btn {
        font-size: 10px !important;
    }
}
.product-info {
    margin: 10px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 4px;
    text-align: left;
    color: #000;
    font-weight: bold;
}
.product-name:hover {
    color: #f4408e;
}

.product-price {
    font-size: 16px;
    color: #f4408e;
    text-align: left;
    font-weight: bold;
    margin: 10px 0;
}

.product-price del{
    display: none;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    text-align: right;
}
.ad-banner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    padding: 20px;
}

.ad-banner-box .content {
    position: relative;
    z-index: 2;
}

.ad-banner-box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ad-banner-box h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

.ad-banner-box a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.countdown-section h5 {
    color: #21a099;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.countdown-section h2 {
    font-weight: 700;
    margin-bottom: 40px;
    font-family: "Open Sans", sans-serif;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item h1 {
    font-size: 80px;
    font-weight: 600;
    color: #8d7d97;
    margin-bottom: 10px;
}

.countdown-item span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #6c6c6c;
}

.shop-btn {
    background-color: #22a3a4;
    border: none;
    color: white;
    padding: 12px 35px;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
    font-family: "Open Sans", sans-serif;
}

.shop-btn:hover {
    color: #fff;
    background-color: #22a3a4;
}

@media (max-width: 768px) {
    .countdown-item h1 {
        font-size: 50px;
    }
}

.category-product-secname {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    text-align: center;
}

#slider button.owl-prev {
    position: absolute;
    top: 40%;
    left: 0;
    font-size: 30px !important;
    background: rgba(255, 0, 0, 0.119) !important;
    width: 38px;
    height: 38px;
    color: red;
    border-radius: 50%;
    border: 1px solid red;
}
#slider button.owl-next {
    position: absolute;
    top: 40%;
    right: 0;
    font-size: 30px !important;
    background: rgba(255, 0, 0, 0.119) !important;
    width: 38px;
    height: 38px;
    color: red;
    border-radius: 50%;
    border: 1px solid red;
}
#slider button.owl-prev:hover,
#slider button.owl-next:hover {
    color: red !important;
}

.feature-section {
    width: 100%;
    padding: 20px 0;
    margin: 0;
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    border: 1px solid #f8d7da;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    background: #fff;
    transition: 0.3s;
}

.feature-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 30px;
    color: red;
}

.feature-title {
    font-weight: 600;
    color: red;
    margin-top: 15px;
    font-size: 18px;
}

.feature-text {
    color: #555;
    font-size: 15px;
    margin-top: 5px;
}

.quick-add-to-cart-btn {
    color: #fff;
    background: #f4408e;
    font-size: 12px;
    font-weight: bold;
    padding: 8px;
    width: 100%;
    margin-left: 8px;
    border-radius: 5px;
}
.quick-add-to-cart-btn:hover {
    color: #fff;
    background: #e52c73;
    font-size: 12px;
    font-weight: bold;
    padding: 8px;
    width: 100%;
    margin-left: 8px;
    border-radius: 5px;
}

.quick-buy-now-btn {
    font-size: 12px;
    font-weight: bold;
    padding: 7px;
    margin-left: 8px;
    border-radius: 5px;
    color: #fff;
    background: #e52c73;
    text-decoration: none;
    margin-top: -1px !important;
}
.quick-buy-now-btn:hover {
    font-size: 12px;
    font-weight: bold;
    padding: 7px;
    margin-left: 8px;
    border-radius: 5px;
    color: #fff;
    background: #c61051;
    text-decoration: none;
}
.sale-discount-badge {
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position: absolute;
    right: 8px;
    top: 8px;
    background: red;
    padding: 2px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    width:45px;
    height:45px;
    border-radius: 50%;
    line-height:1.3;
}

.product-btn-wrap {
    /* display: flex; */
    padding: 1px 16px 10px;
    background: #fff;
    /* border-top: 1px solid #eee; */
}

.product-btn-wrap .btn {
    width: 50%;
    height: 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    text-align: center;
    line-height: 1;
}


@media (max-width: 576px) {
    .product-btn-wrap .btn.quick-add-to-cart-btn,
    .product-btn-wrap .btn.quick-buy-now-btn {
        font-size: 16px !important;
        line-height: 2 !important;
        padding: 0;
    }
}

.category-section{
    background:#f8f9fb;
}

.category-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    padding:18px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.category-image{
    width:100%;
    aspect-ratio:1/1;      /* Perfect Square */
    border-radius:10px;
    overflow:hidden;
    margin-bottom:16px;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.category-card:hover img{
    transform:scale(1.05);
}

.category-title{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#111827;
    line-height:1.3;
}

/* Tablet */
@media(max-width:991px){

    .category-card{
        padding:15px;
    }

    .category-title{
        font-size:15px;
    }
}



.two-line-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-icon{
    color: black;
    font-size: 18px !important;
    margin-top: -3px;
}

.cart-iconn{
    margin: 5px 10px 0 10px; /* top right bottom left */
    font-size: 18px !important;
    color: black;
}
.search-width{
    width: 60%;
}

/* Mobile */
@media(max-width:575px){
    .search-width{
        width: 100%;
    }
    .category-card{
        padding:12px;
        border-radius:10px;
    }

    .category-title{
        font-size:14px;
    }
    .c-icon{
        color: black;
        font-size: 18px !important;
        margin-top: 3px;
    }
}

.wishlist{
    background: transparent;
    color: #e52c73;
    font-size: 22px;
    width: 20px;
    height: 20px;
}

/* Container Base Styles */
.delivery-info-container {
    max-width: 750px;
    margin: 0 auto;
    font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
    color: #333;
}

/* Header Title */
.delivery-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

/* Pink Bordered Box */
.delivery-charge-box {
    border: 2px solid #e83e8c; /* Pink border */
    border-radius: 4px;
    background-color: #fff;
}

/* Row Styling inside Box */
.charge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

/* Red Notice Text Styling */
.notice-text p {
    color: #ff2d55; /* Vibrant red/pink color from image */
    font-size: 15px;
    line-height: 1.6;
}

/* Estimate Delivery Text */
.delivery-estimate {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}


* ============ 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: 20px;
    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: #E21691; /* ইমেজের মতো সলিড রেড ব্যাকগ্রাউন্ড */
    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: #E21691;
}

/* ==========================================================================
   Forms, Payments & Other Modules (Unchanged & Standardized)
   ========================================================================== */
.nk-input-field, .nk-select-field, .nk-textarea-field {
    border: 1px solid #e0e0e0 !important;
    background: #fde6f2;
    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: 1px solid #e0e0e0 !important;
    background: #fde6f2;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    height: 45px !important;
}
.nk-input-field{
    background: #fde6f2 !important;
}
.nk-input-field:focus, .nk-select-field:focus, .nk-textarea-field:focus {
    border-color: #ff9800 !important;
}
.nk-input-phone-prefix {
    background-color: #fde6f2;
    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: #E21691 !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: #E21691 !important;
}
#select2-city_id-container, #select2-zone_id-container{
    background: #fde6f2;
}

.wishlist-badge {
    position: absolute;
    top: 16px;
    right: -10px;
    background-color: #E30086;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
@media (max-width: 576px) {
    .wishlist-badge {
        top: 8px;
        right: -8px;
    }
    .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;
    }
}
