/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Customized CSS */

.product-slick-title {
    display: block;
    font-size: 1.5em; /* Optional: Adjusts font size for the title */
    font-weight: bold; /* Optional: Makes the title bold */
    color: #333; /* Optional: Adjusts the title */
}

.product-slider {
    width: 100%;
    margin: auto;
    gap: 16px; /* Adds space between each product tile */
}

.product-slick-tile {
    display: flex;
    justify-content: center; /* Aligns horizontally to the center */
    align-items: center; /* Aligns vertically to the center */
    text-align: center; /* Ensures text inside h6 is also centered */
    flex-direction: column; /* Ensures h6 and image are stacked */
    flex: 1 1 200px; /* Allows the product tiles to be flexible */
    max-width: 300px; /* Optional: ensures that tiles don’t grow too large */
    text-decoration: none !important;
    margin: 8px;
}
/* Centering the h3 tags inside the product tiles */
.product-slick-tile span {
    text-align: center; /* Centers the text inside h3 */
    margin: 10px 0; /* Optional: Adjusts margin for spacing, you can customize this */
}
.product-slick-tile img {
    width: 100%;
    height: auto;
}
.product-slick-info {
    padding: 8px 0;
}
.product-slick-name {
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: block;
}
.product-slick-variation {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    display: block;
}

.home-page .experience-assets-WTE .row{margin-left:0;margin-right:0;}
.home-page .experience-assets-WTE .title{font-size:1rem;padding-left:0.7em;padding-bottom:1em;color:#767676;font-weight:400;}


/* ==========================================================
   Homepage Campaign Slider
   ========================================================== */
/* Section Heading */
.product-slick-title{
    display:inline-block;
    position:relative;
    font-size:1.75rem;
    font-weight:700;
    color:#1f2937;
    text-transform:uppercase;
    letter-spacing:.3px;
    margin-bottom:18px;
}
.product-slick-title::after{
    content:"";
    display:block;
    width:56px;
    height:3px;
    margin-top:6px;
    background:#d32f2f;
    border-radius:3px;
}
/* Slider Container */
.product-slider{
    width:100%;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}
/* Product Tile */
.product-slick-tile{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
    flex:1 1 200px;
    max-width:300px;
    margin:8px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    text-decoration:none !important;
    cursor:pointer;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}
.product-slick-tile:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(0,0,0,.10);
}
/* Campaign Badge */
.product-slick-tile::before{
    content:"30% OFF";
    position:absolute;
    top:10px;
    left:10px;
    z-index:5;
    background:#d32f2f;
    color:#fff;
    font-size:10px;
    font-weight:700;
    padding:4px 9px;
    border-radius:16px;
}
/* Product Image */
.product-slick-tile img{
    width:100%;
    height:auto;
    display:block;
    padding:6px;
    box-sizing:border-box;
    transition:transform .3s ease;
}
.product-slick-tile:hover img{
    transform:scale(1.02);
}
/* Product Information */
.product-slick-info{
    padding:10px 10px 12px;
}
/* Product Name */
.product-slick-name{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:14px;
    font-weight:600;
    line-height:1.25;
    color:#2d2d2d;
    min-height:36px;
    margin-bottom:4px;
}
/* Product Variation */
.product-slick-variation{
    display:block;
    font-size:12px;
    color:#757575;
    line-height:1.2;
}
/* Mobile */
@media (max-width:768px){
    .product-slick-title{
        font-size:1.5rem;
    }
    .product-slick-name{
        font-size:13px;
        min-height:auto;
    }
    .product-slick-variation{
        font-size:11px;
    }
    .product-slick-tile::before{
        font-size:9px;
        padding:3px 8px;
    }
}