:root
{
    --blue: #084B83;
    --indigo: #414288;
    --purple: #6200ee;
    --pink: #F06C9B;
    --red: #E63946;
    --orange: #F06449;
    --yellow: #fdbb2d;
    --green: #5FB49C;
    --teal: #009688;
    --cyan: #00bcd4;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #414288;
    --secondary: #6c757d;
    --success: #5FB49C;
    --info: #00bcd4;
    --warning: #fdbb2d;
    --danger: #E63946;
    --light: #f8f9fa;
    --dark: #343a40;
    --special-pink: #d81b60;
    --special-paradise-pink: #E5446D;
    --special-ruby: #8B2635;
    --special-eggplant: #4C2B36;
    --special-sienna: #3D0814;
    --special-jet: #353238;
    --special-dark: #2A2B2A;
    --special-cedar-chest: #BE5A38;
    --special-gunmetal: #143642;
    --special-blue: #0B3954;
    --special-red: #f05454;
    --special-orange: #f9813a;
    --special-green: #4caf50;
    --special-lightgreen: #16a596;
    --special-brown: #92817a;
    --special-coffee: #8D6346;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Poppins", sans-serif;
    --font-family-monospace: "Anonymous+Pro", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.ajax-loader{
    left: 0;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}
/* Data not found */
.data-not-found{
    border: 2px dotted grey;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
}
/*  */
.middle-on-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Messages */
.hint-note{
    font-size: 10px;
}

.error{
    /* display: none; */
    /* width: 100%; */
    margin-top: 0.25rem;
    font-size: 90%;
    color: #E63946;
}

/* Products */
.product-grid {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 5px 15px 0;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.product-grid:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.product-grid .product-image {
    position: relative;
}

.product-grid .product-image a.image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-grid .product-sale-label {
    color: #fff;
    background: #009de1;
    font-size: 13px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    position: absolute;
    left: -4px;
    top: -2px;
}

.product-grid .price {
    color: #fff;
    background: #009de1;
    font-size: 13px;
    padding: 2px 6px 2px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1px 3px 3px 1px;
    position: absolute;
    top: 25px;
    left: -15px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
}

.product-grid .price span {
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.5;
}

.product-grid .price:before {
    content: "";
    background: #fff;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 7px;
}

.product-grid .price.fixed {
    background: #b71540;
    top: -4px;
}

.product-grid .icons {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 30%;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    position: absolute;
    right: 10px;
    transition: all 0.2s ease-out;
    background-color: var(--secondary);
}

.product-grid .add-to-cart {
    top: 60px;
    /* background: #28a745; */ /* Green background for "Add to Cart" */
}

.product-grid .add-to-cart:hover {
    text-shadow: 0 0 5px #000;
    background-color: var(--primary);
    /* background: #218838; */ /* Darker green on hover */
}

.product-grid .add-to-favourites {
    top: 10px;
    /* background: #007bff; */ /* Blue background for "Add to Favourite" */
}

.product-grid .add-to-favourites:hover {
    text-shadow: 0 0 5px #000;
    background-color: var(--primary);
    /* background: #0069d9; */ /* Darker blue on hover */
}

.product-grid:hover .icons {
    opacity: 1;
}

.product-grid .product-content {
    background-color: #fff;
    text-align: left;
    padding: 15px 10px;
    border-top: 1px solid transparent;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s;
}

.product-grid:hover .product-content {
    /* border-top-color: #dbdbdb; */
}

.product-grid .title {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.product-grid .title a {
    color: #323b45;
    transition: all 0.4s ease-out;
}

.product-grid .title a:hover {
    color: #b71540;
}

.product-grid .rating {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-grid .rating li {
    color: #f1c40f;
    font-size: 12px;
    display: inline-block;
}

.product-grid .rating li.far {
    color: #dbdbdb;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin: 5px 15px 30px;
    }
}

@media (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 50%; /* 2 products per row */
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 50%; /* 2 products per row */
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%; /* 2 products per row */
        max-width: 50%;
    }
}


/* Footer */
.facebook {
    border: 2px solid #3b5998; /* Facebook color */
    border-radius: 50%;
    padding: 10px 15px;
}

.twitter {
    border: 2px solid #1da1f2; /* Twitter color */
    border-radius: 50%;
    padding: 10px 15px;
}

.instagram {
    border: 2px solid #e4405f; /* Instagram color */
    border-radius: 50%;
    padding: 10px 15px;
}

.linkedin {
    border: 2px solid #0077b5; /* LinkedIn color */
    border-radius: 50%;
    padding: 10px 15px;
}

@media (max-width: 992px) {
    .col-md-3, .col-md-2, .col-md-4 {
        flex: 0 0 50%; /* 2 columns per row on medium devices */
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-3, .col-md-2, .col-md-4 {
        flex: 0 0 100%; /* 1 column per row on small devices */
        max-width: 100%;
    }
}

/*  Show SEO keyword */
.chips {
    /* display: flex;
    flex-wrap: wrap; */
    display: block;
    width: 100%;
}

.chips-holder {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.chip {
    background-color: #e0e0e0;
    border-radius: 16px;
    padding: 5px 10px;
    margin: 2px;
    display: flex;
    align-items: center;
}

.chip .close {
    margin-left: 8px;
    cursor: pointer;
}

/* CK-Editor-height */
.ck-content{
    height: 200px;
}

/* Images-Gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-container {
    position: relative;
    display: inline-block;
}
  
.image-container img {
    display: block;
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
.image-container .close-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Home */
.vendor-card-container{
    height: 270px;
}
.vendor-card-body-height{
    height: 250px;
    padding: 13px 2px;
}
.height-inherit{
    /* width: fit-content; */
    height: 200px;
}
.vendor-register-now{
    font-size: 25px;
}

/* Product List */
.product-list-title{
    color: #212529;
    display: block;
}

.product-list-menu {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.product-list-menu a {
    color: #343a40;
}

/* Seller Profile */
.seller-avatar{
    width: 180px;
    height: 180px;
}


.tooltip-box {
    position: absolute;
    background: rgb(143 153 183 / 80%);
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    display: none;
    max-width: 50vw;
    font-size: 14px;
    z-index: 1000;
}