/* SPS customizing CSS Starts Here */

/* home page remove featured products */
.home .featured-products-wrapper {
    display: none;
}

/*.carousel, */
/* OBSOLETE
.category-item {
    display:none;
}
*/

/*  remove information header */
.duc-head label[for*="Information_"] {
    display: none !important;
}


/* Nav menu: remove view all link */
.category-title-wrapper.view-show-all {
    display: none;
}


/* how to select a child object */
.main .product-item:nth-child(2) .product-description 
{
    display: none;
}

.category-item .image-wrapper img {
    border-radius: 20px;
    border: 1px solid black;
}

/*CSS to change the wrapper background color and radius shape */
.product-item .image-wrapper {
    background: #fab50e24;
    border: var(--image-box-border-width) solid var(--image-box-border-color);
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    border: 1px solid black;
}

/*change wrapper at order level */
.preview-wrapper .carousel-root .carousel-slider .slide .image-wrapper {
    padding: 20px;
    background: #fab50e24;
}
.inner-image-wrapper img {
    border-radius: 20px !important;
}
.category-title .link {
    font-size: 17px;
    font-weight: bold;
}
/* trying to make the logo appear larger */
img.logo {
    width: 150x; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    /* Alternatively, you can set both width and height */
    /* height: 150px; */
}