/* Image Hover */
.img-hover-block {
    z-index: 0;
}

.img-hover-block span {
    position: relative;
}

.img-hover-block:hover span {
    mix-blend-mode: difference;
    color: #FFF;
    z-index: 2;
}

.hover-reveal {
    position: fixed;
    width: 220px;
    height: 320px;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

.hover-reveal__inner,
.hover-reveal__img {

    position: relative;
}

.hover-reveal__inner {
    overflow: hidden;
}

.hover-reveal__img {
    background-size: cover;
    background-position: 50% 50%;
}


.mega-menu-content .mega-menu-links li {
    list-style: none;
}

.mega-menu-content .mega-menu-links li a {
    display: block;
    padding: 0.25rem 1.125rem;
    font-family: var(--cnvs-primary-font);
    font-size: calc(0.5vw + 0.875rem);
    font-weight: 300;
    transition: all 0.2s ease-in-out;
    position: relative; /* Ensure relative positioning for pseudo-element */
}

/* Add ">" shape after the link text */
.mega-menu-content .mega-menu-links li a::after {
    content: "\27A4";
    position: absolute;
    right: 0.75rem; /* Adjust the distance from the text */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease-in-out;
    opacity: 0; /* Initially hide the ">" symbol */
	padding-left: 50%;
}

/* Show ">" symbol on hover */
.mega-menu-content .mega-menu-links li a:hover::after {
    opacity: 1;
}



.target-content {
    position: relative;
    overflow: hidden;
    background-color: rgba(0,0,0,.1);
}

.target-content > div {
    position: relative;
    opacity: 0.7;
    z-index: 1;
    transform: scale(1);
    will-change: transform;
    transition: all 0.2s linear;
}

.target-content > .target-active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.02);
}

.target-content > div:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}




.product:hover .product-desc h2 {
    font-style: italic;
}

.circular-text {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
}

.circular-text-rotate {
    font-size: 13px;
    font-family: var(--cnvs-body-font) !important;
    opacity: .5;
    text-transform: uppercase;
}

.skrollable {
    transition: all 0.2s linear;
    transform-style: preserve-3d;
}

.is-expanded-menu .menu-container > .menu-item > .menu-link > div > i {
    transition: transform .2s cubic-bezier(0.7, 0, 0.2, 1);
    margin-left: 20px;
    top: 0;
}
