/* Custom Shop Styles */

.rj h3{
    text-align: center;
    padding: 10px 0;
}
.slider-container{
    background-color: #fff !important;
}
.product-cart-button {
    display: flex !important;
    justify-content: center !important; /* Centers the buttons horizontally */
    align-items: center !important; /* Centers the buttons vertically if needed */
}

.product-cart-button .btn-group {
    display: flex !important;
    gap: 10px !important; /* Optional: Adds spacing between the buttons */
}

.add-to-cart, .buy-now {
    width: 50% !important;
    color: #4caf50 !important;
    background: none !important;
}

.add-to-cart:hover, .buy-now:hover {
    color: #FFF !important;
    background: #4caf50 !important;
}

.top-header-info {
    color: #fff;
    margin: 7px;
    float: left;
}

.details > .add-to-cart {
    color: #FFF !important;
    background: #4caf50 !important;
}

.details > .add-to-cart:hover {
    color: #4caf50 !important;
    background: #FFF !important;
}


/* Modal background */
.mrjodal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    padding-top: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal content */
.rjmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Basic form styling */
.mrjodal input[type="text"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.mrjodal button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.mrjodal button:hover {
    background-color: #45a049;
}

.h1-product-name {
    font-size: 1.2em;
    display: contents;
}


.support-container {
    position: fixed;
    bottom: 35px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.support-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25D366; /* Default WhatsApp color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.support-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
.messenger {
    background-color: #FFF;
}
.support-icon img {
    width: 30px;
    height: 30px;
}

.chat-btn a {
    color: #FFF !important;
    width: 100% !important;
}

.product-image img, .featured-products .product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
}
.product {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    margin-bottom: 25px;
    padding: 10px;
    height: 340px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.product .product-bottom {
    position: absolute;
    bottom: 10px;
    width: 94%;
}
.product .product-top {
    position: absolute;
    width: 94%;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.product .product-desc .product-name {
    font-size: 1.1em !important;
    font-weight: 600 !important;
}
.product.alt .product-image,.product .product-bottom{
    margin: 0 !important;
}
.product .product-bottom .product-price{
    line-height: 1em !important;
}
.product h2{
    margin: 0 !important;
}
.product a:hover{
    color: #ffb12f !important;
    text-decoration: none;
}

#orderComplete h3 {
    font-size: 1.1em !important;
    color: green;
    text-align: center;
}
#orderComplete h4 {
    font-size: 1.3em !important;
}
.featured-products .add-to-cart{
    padding: 5px;
}
@media (min-width: 992px) {
    .rj-col-3 {
        width: 25%;
    }
}
@media (max-width: 992px) {
    .product-container {
        position: unset !important;
    }
    .rj .product {
        height: 450px;
    }
    .rj .product-image {
        height: 320px !important;
    }
}


.owl-carousel .s_item {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.owl-carousel .s_item img {
    max-width: 100%;
    border-radius: 10px;
}
.owl-carousel .s_item .product_name a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: block;
    margin: 10px 0 5px;
}
.owl-carousel .s_item .product_price {
    font-size: 18px;
    font-weight: bold;
    color: #e91e63;
}
.owl-carousel .s_item .btn {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}
.owl-carousel .s_item .btn:hover {
    background-color: #45a049;
}
.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.owl-nav button {
    background: #ccc;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}
.owl-nav button:hover {
    background: #999;
}
.s_item .product-price{
    line-height: 0 !important;
    font-size: 1.2em;
}
.s_item{
    height: 440px;
}
.s_item .product-image{
    height: 300px !important;
}
.s_item .product-name {
    margin-top: -5px !important;
}
body {
    font-family: 'Noto Sans Bengali', sans-serif !important;
}
.panel-body h3{
    font-size: 18px;
}
.panel-body{
    font-size: 15px;
}