
:root {

    /*colors*/
    --base-rgb: 31,31,31;
    /*--gray-rgb: 140,140,140;*/
    --light-rgb: 249,249,249;
    --gray-rgb: 227,227,227;
    --text: 31,31,31;
    --acc-rgb: 255,213,188;
    --acc-text: 39,36,33;
	--highlight-rgb: 104,73,73;

    /* FONTS */
    --font-size-075: 0.75rem;
    --font-size-08: 0.8rem;
    --font-size-09: 0.9rem;
    --font-size-1: 1rem;
    --font-size-11: 1.1rem;
    --font-size-12: 1.2rem;
    --font-size-13: 1.3rem;
    --font-size-14: 1.4rem;
    --font-size-15: 1.5rem;
    --font-size-16: 1.6rem;
    --font-size-17: 1.7rem;
    --font-size-18: 1.8rem;
    --font-size-19: 1.9rem;
    --font-size-2: 2rem;
    --font-size-3: 3rem;
    --font-size-4: 4rem;
    --font-size-6: 6rem;

    /* BTN PADD */
    
    --base-btn-pad: 0.4rem 1rem;

    /* ANIM */ 
    --easy: all 0.3s ease-in-out;
    --easy-05: all 0.5s ease-in-out;
}

body {
    position: relative;
    margin:0;
    padding: 0;
    font-family: "Spectral", serif;
    font-size: clamp(1rem, 0.1011rem + 1.4514vw, 1.2rem);
    color: rgb(var(--text));
	letter-spacing:-.02em;
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(var(--text));
}	

ul {
    list-style: none;
    margin:0;
    padding:0;
}

a {
    text-decoration: none;
    color:rgb(var(--base-rgb));
}

a:hover {
    cursor: pointer;
}

/* OBERON HOOK WEIGHT */

.woocommerce-product-attributes-item--attribute_pa_hmotnost {
    display:none;
}


/* PRODUCTS */ 

.prodSq {
    position: relative;
    display: inline-block;
    overflow: hidden !important;
	box-shadow: rgba(0, 0, 0, 0) -4px 9px 25px -6px;
	 transition: var(--easy);
	 margin-bottom: 0.5rem;
}

.prodSq a img {
    width: 100%;
    height:auto !important;
}

.prodSq .overlay {
    filter: opacity(0) blur(0.2rem);
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    /*height: 100%;*/
    transition: var(--easy);
    top:0;
}

.prodSq:hover {
	box-shadow: rgba(0, 0, 0, 0.2) -4px 9px 25px -6px;
	border-radius:10px;
    background: rgb(var(--acc-rgb));;
}

.prodSq:hover  .prodInfo {

}


.prodSq:hover .overlay {
    filter: opacity(1) blur(0rem);
}

.prodSq .prodWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.listLoop .prodSq .prodWrap {
    background: transparent;
}

.prodWrap .prodImg {
    display: flex;
    height: auto !important;
}

.prodWrap img {
    width: 100%;
    object-fit: cover;
}

.prodWrap.reverse .prodImg {
    display: flex;
    height: 100% ;
}


.prodWrap .prodInfo {
    display: flex;
    flex-direction: column;
    padding:1rem 0.8rem 1rem 0.8rem;
    height: fit-content;
}

.prodWrap h4 {
    font-size: clamp(1rem, 0.7867rem + 0.3445vw, 1.2rem);
    font-weight: 500;
    margin:0;
    /*text-transform: uppercase;*/
}

#listLoop .prodWrap h4 {
	font-size: clamp(1rem, 0.7867rem + 0.3445vw, 1.2rem);
}

.productInfo .prodReviews,
.prodWrap .prodReviews {
    font-size:var(--font-size-09);
    margin-top:0.5rem;
}

.productInfo .prodReviews {
    font-size: var(--font-size-1);
}
.productInfo .prodReviews i,
.prodWrap .prodReviews i {
    color:rgb(var(--acc-rgb));
}

.productInfo .prodReviews i.none,
.prodWrap .prodReviews i.none {
    filter:opacity(0.3)
}

.productInfo .prodReviews span,
.prodWrap .prodReviews span {
    margin-left:0.5rem;
    color:rgb(var(--gray-rgb));
}

.productInfo .prodPrice,
.prodWrap .prodPrice {
    font-size: clamp(1.2rem, 0.9867rem + 0.3445vw, 1.4rem);
    font-weight: 600;
    margin-top:0.3rem;
	display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1rem;
}

.productInfo .woocommerce-variation-price, .productInfo .single-product-price  {
    margin-top:0;
    font-size: var(--font-size-18);
	display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1rem;
	float:left;
	width:auto;
	margin-right:1rem;
}

.productInfo .woocommerce-variation-price del,
.prodWrap .prodPrice del,  .productInfo .single-product-price del {
    color:rgb(var(--gray-rgb));
    text-decoration: line-through;
    filter:opacity(1)
}

.prodWrap .prodPrice ins, .productInfo .woocommerce-variation-price ins,  .productInfo .single-product-price ins {
	text-decoration:none;
}

.productInfo .prodSaleInfo {
	font-size:var(--font-size-1);
}

.productInfo .onSaleBadge, .prodSq .onSaleBadge {
    background-color: rgb(var(--highlight-rgb));
    width: fit-content;
    color: #fff;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
	border-radius:4px;
}

.prodSq .onSaleBadge {
	position:absolute;
	top:.5rem;
	left:.5rem;
	z-index:400;
}

.productInfo .variation-buttons {
	margin-bottom:1rem;
}
/*
.productInfo .quantity {
	display:none;
}*/

/* product side */ 

.prodSide {
    display: flex;
    align-items: center;
}

.prodSide img {
    max-width: 100px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.prodSide .prodSideInfo {
    display: flex;
    
    justify-content: center;
    flex-direction: column;
    padding-left:1rem;
}

.prodSide .prodSideInfo h5 {
    font-weight: 600;
    font-size: var(--font-size-12);
    margin-bottom: 0;
}

.prodSide:hover h5 {
    text-decoration: underline;
}

.prodSide .prodSideReviews {
    font-size:var(--font-size-09);
    margin-top:0.2rem;
}

.prodSide .prodSideReviews i {
    color:rgb(var(--acc-rgb));
}

.prodSide .prodSideReviews i.none {
    filter:opacity(0.3)
}

.prodSide .prodSideReviews span {
    margin-left:0.35rem;
    color:rgb(var(--gray-rgb));
}

.prodSide .prodSidePrice {
    font-size: var(--font-size-12);
    font-weight: 600;
    margin-top:0.1rem;
}

.prodSide .prodSidePrice .prodOnsale {
    margin-left:1rem;
    color:rgb(var(--gray-rgb));
    text-decoration: line-through;
    filter:opacity(0.8)
}

/* RELATED PRODUCTS */

.relatedSide li {
    margin-bottom:1rem;
}

.relatedSide li:last-child {
    margin-bottom:0;
}


/* widget */

.widget {
    display: flex;
    flex-direction: column;
    margin-bottom:2rem;
}

.widget h6 {
    font-size:var(--font-size-14);
    font-weight: 600;
    margin-bottom:2rem;
}

/* hide item */

.hideItem { 
    display:none;
}

/* breadcrumb */ 

.rank-math-breadcrumb a {
    font-size: var(--font-size-08);
    text-transform: uppercase;
    
}
.rank-math-breadcrumb a,
.rank-math-breadcrumb span {
    color:rgba(var(--text),0.5);
    transition: var(--easy);
}

.rank-math-breadcrumb span.last,
.rank-math-breadcrumb a:last-child {
     color:rgba(var(--text),1);
    font-size: var(--font-size-08);
        text-transform: uppercase;
}

.rank-math-breadcrumb a:hover {
     color:rgba(var(--text),1);
}

/* SINGLE PRODUCT */

.si-product {
    padding:2rem 1.5rem 0 1.5rem ;
}

#lightgallery {
    display: grid;
    grid-template-columns: 1fr auto;
}

.lightgallery img {
    width: 100%;
    height: auto;
}
/* SINGLE PRODUCT */

.si-product {
    padding:1rem 2rem 2rem ;
}

.productInfo {
    display: flex;
    flex-direction: column;
    padding:0 2rem;
}

.productName {
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--font-size-16);
}

#lightgallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
/*
.product-gallery .swiper-wrapper {
	display:flex;
	flex-direction: row;
    flex-wrap: nowrap;
}*/

@media (min-width:992px) {
	.product-gallery {
		position:sticky;
		top:152px;
	}
}

.swiperProduct {
  width: 100%;
  overflow: hidden;
}

.swiperProduct .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiperProduct .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
}

.swiperProduct .swiper-slide a {
  display: block;
  width: 100%;
}

.swiperProduct .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.swiperProductThumbs {
    margin-top:1rem;
}

.swiperProductThumbs .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 80px));
    gap: 10px;
}

@media (max-width: 991px) {
    .swiperProductThumbs .swiper-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(50px, 50px));
    }
}

.swiperProductThumbs .swiper-slide {
    width: 100% !important;
}

.swiperProductThumbs  img:hover {
    filter: grayscale(1) blur(0rem) opacity(1);
    border-radius:5px !important;
    width: 99%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px;
    cursor:pointer;
}
.product-gallery img {
    width: 100%;
    height: auto;
	margin:0;
	 transition: var(--easy);
	 filter: grayscale(0) blur(0rem) opacity(1);
	 border-radius:0;
	box-shadow: rgba(0, 0, 0, 0) 0px 3px 5px;
}

.product-gallery .swiper-slide a {
	display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.product-gallery img:hover {
	filter: grayscale(1) blur(0rem) opacity(1);
	 border-radius:20px;
	width: 99%;
    height: auto;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px;
}

.prodVariant {
    display: flex;
    margin-top:2rem;
}

.prodVariant .variantType {
    display: flex;
    flex-direction: column;
}

.prodVariant .variantType h6 {
    font-size: var(--font-size-12);
}

.prodVariant .variantType ul {
    display: flex;
}

.prodVariant .variantType ul li {
    margin-right:0.5rem;
}

.prodVariant .variantType ul li button {
    background-color: #fff;
    font-size: var(--font-size-12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0.1rem 0.6rem;
    border:1px solid rgb(var(--gray-rgb));
    border-radius: 5px;
    transition: var(--easy);
}

.prodVariant .variantType ul li button:hover {
    background-color: rgb(var(--acc-rgb));
}

.prodVariant .variantType ul li button.active {
    border-color: rgb(var(--acc-rgb));
    background-color: rgb(var(--acc-rgb));
}

.prodAdd {
    margin-top:2rem;
}

.prodAdd .addToCard {
    padding:0.5rem 0;
    border:0px;
    border-radius: 4px;
    background-color: rgb(var(--acc-rgb));
    transition: var(--easy);
    font-size: var(--font-size-14);
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
}

.prodAdd .addToCard:hover {
    background-color: rgb(var(--base-rgb));
    color:#fff;
}

.prodLook {
    margin-top: 2rem;
    display:flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}



.prodLook h6 {
    font-size: var(--font-size-14);
    text-transform: uppercase;
    margin-bottom:1rem;
    font-weight: 600;
}

.prodLook .look {
    display: flex;
    background-color: rgb(var(--light-rgb));
    margin-top:0.5rem;
    position: relative;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
}


/*.prodLook .look:after {
    content: '+';
    display:flex;
    position: absolute;
    color:rgb(var(--base-rgb));
    font-size: var(--font-size-2);
    right:2rem;
}*/


.prodLook .look img {
    max-width: 110px;
    height: auto;
}

.prodLook .lookInfo  {
    padding:0 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.prodLook .lookInfo h4 {
    font-size: clamp(1rem, 0.1011rem + 1.4514vw, 1.2rem);
    text-transform: uppercase;
    font-weight: 600;
    margin:0;
    padding:0;
}

.prodLook .lookInfo .lookPrice {
    font-size: var(--font-size-12);
    margin-top:0.2rem;
}

.prodLook .lookInfo .lookPrice .lookOnsale {
    margin-left: 0.5rem;
    filter:opacity(0.3);
    text-decoration: line-through;
}

.prodLook .lookInfo .addLookCart {
    border:0;
    border-radius: 4px;
    padding:0.2rem 0.6rem;
    margin-top:0.2rem;
    background-color: rgb(var(--base-rgb));
    color: #fff;
    font-size: var(--font-size-09);
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--easy);
}

.prodLook .lookInfo .addLookCart:hover {
    background: rgb(var(--acc-rgb));
    color: rgb(var(--base-rgb));

}

.lookPlus {
    font-size: var(--font-size-2);
    line-height: 1;
    position: absolute;
    right: 0;
    padding: 2rem 1rem 2rem 2rem;
}

.prodInfo .prodExtras {
    margin-top:2rem;
}

.miniBasket {
    display: flex;
    flex-direction: column;
}

.miniBasket .goCart {
    width: 100%;
    font-size: var(--font-size-12);
    background:rgb(var(--base-rgb));
    color:#fff;
    transition: var(--easy);
    border-radius: 4px;
    padding:0.6rem 0.6rem;
    display: flex;
    margin: 0 0 1.5rem;
    justify-content: center;
	line-height:1;
}

.miniBasket .goCart:hover {
    background:rgb(var(--acc-rgb));
    color:rgb(var(--base-rgb));
}


.miniBasket .basket-show {
    display: flex;
    flex-direction: column;
    padding: 0;
	overflow-y: scroll;
    height: auto;
    max-height: 500px;
	scrollbar-width: none;       /* Firefox */
	-ms-overflow-style: none;    /* IE a starý Edge */
}

.miniBasket .basket-show::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Opera, nový Edge */
}

.miniBasket .basket-show li {
    display: flex;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgb(var(--gray-rgb));
}

.miniBasket .basket-show li:last-child {
    border-bottom: none;
	padding-bottom:0;
}

.miniBasket .basket-show .basket-img {
    display:flex;
}

.miniBasket .basket-show .basket-img img {
    max-width: 64px;
    height:  64px;
    border-radius: 3px;
}


.miniBasket .basket-show .basket-desc {
    display: flex;
    width: calc(100% - 180px);
    flex-direction: column;
    justify-content: center;
}

.miniBasket .basket-show .basket-desc a {
    display: flex;
    flex-direction: column;
    padding:0 0.8rem;
}

.miniBasket .basket-show li h4 {
    font-weight: 600;
    font-size:var(--font-size-11);
    width: 100%;
    margin:0;
    padding:0;
    text-align: left;
}

.miniBasket .basket-show .basket-attr {
    font-size: var(--font-size-09);
    margin:0;
    padding:0;
    text-align: left;
}
.miniBasket .basket-show .basket-attr li {
    margin-right: 0.4rem;
}

.miniBasket .basket-show .basket-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width:86px;
}

.miniBasket .basket-show .basket-price .price {
    font-weight: 600;
    font-size:var(--font-size-11);
}

.miniBasket .basket-show .basket-price .quantity {
    font-size: var(--font-size-09);
}

.miniBasket .basket-show .basket-erase {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.miniBasket .basket-show .basket-erase button {
    border:none;
    background: #fff;
    border-radius: 50%;
    display: flex;
    width: 24px;
    height: 24px;
    font-size:var(--font-size-08);
    align-items: center;
    justify-content: center;
    transition: var(--easy);
}

.miniBasket .basket-show .basket-erase:hover button {
    background:rgb(var(--acc-rgb));
}

.miniBasket  .basket-total {
    display:flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(var(--gray-rgb));
}

.miniBasket  .basket-total h4 {
    font-size: var(--font-size-12);
    margin:0;
    padding:0;
}

.miniBasket  .basket-total span {
    font-size: var(--font-size-12);
    font-weight: 600;
}

.miniBasket .woocommerce-mini-cart__empty-message {
	margin-top:1.5rem;
	margin-bottom:0;
	font-size: var(--font-size-12);
	text-align:center;
}

.miniBasket > img {
	width: 150px;
    margin: 1.5rem auto 0;
}

/* CUSTOM MENU WRAP */

#wpadminbar {
    position: absolute !important;
}

#sinariCustomMenu {
    display:none;
    filter:opacity(0);
}

#sinariCustomMenu.activeMenu {
    display:unset;
    animation:600ms ease 0s normal forwards 1 fadeIn;
    -webkit-animation:600ms ease 0s normal forwards 1 fadeIn;
    filter:opacity(1);
	/*background-color:rgb(var(--light-rgb));*/
    background-color: #fff;
}

body.customMenuActive {
    overflow: hidden !important;
}

body.customMenuActive .mainWrapper footer,
body.customMenuActive .mainWrapper main {
    animation:500ms ease 0s normal forwards 1 fadeOut;
    -webkit-animation:500ms ease 0s normal forwards 1 fadeOut;
   filter:opacity(0);
}

@keyframes fadeOut{
    0%{filter:opacity(1);}
    80%{filter:opacity(0);}
    100%{filter:opacity(0);}
}

@-webkit-keyframes fadeOut{
    0%{filter:opacity(1);}
    80%{filter:opacity(0);}
    100%{filter:opacity(0);}
}

@keyframes fadeIn{
    0%{filter:opacity(0);}
    80%{filter:opacity(0);}
    100%{filter:opacity(1);}
}

@-webkit-keyframes fadeIn{
    0%{filter:opacity(0);}
    80%{filter:opacity(0);}
    100%{filter:opacity(1);}
}


.menuCustom .menuWrap .closeCustomMenu {
    border:none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    right:1rem;
    top:1rem;
    background: transparent;
    border-radius: 4px;
    padding:0.55rem 1rem;
    font-size: var(--font-size-13);
    transition: var(--easy);
    font-weight: 500;
}

.menuCustom .menuWrap .closeCustomMenu i {
    font-size: 1rem;
    display: inline-block;
    margin-left:0.8rem;
    margin-bottom:-2px;
    transition: var(--easy);
}

.menuCustom .menuWrap .closeCustomMenu:hover {
    color:#fff;
    background-color: rgb(var(--base-rgb));
}
.menuCustom .menuWrap .closeCustomMenu:hover i {
    color:#fff;
}


.menuCustom {
    position: fixed;
    top:120px;
    left: 0;
    display: flex;
    height: calc(100% - 120px);
    width:100%;
    background: #fff;
    z-index: 80;
}

.menuCustom .menuWrap {
    display: none;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.menuCustom .menuWrap .mwMenuCat {
    display: flex;
    flex-direction: column;
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems {
    display: flex;
    width: calc(90vw);
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems .item {
    width:25%;
    margin:0 1rem;
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems .item .itemTitle {
    margin-top:1.5rem;
    display: inline-block;
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems .item .itemTitle:hover {
    text-decoration: underline;
}

.menuCustom .menuWrap .mwMenuCat .mwMenuCatTitle {
    font-size: var(--font-size-16);
    font-weight: 500;
    display: inline-block;
    margin-left:1rem;
    margin-bottom:1.5rem;
}


.menuCustom .menuWrap .mwMenuCat .menuCatItems .itemImg {
    width:100%;
    display: flex;
    height:auto;
    padding:1.5rem;
    background-color: rgb(var(--light-rgb));
    transition: var(--easy);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems .itemImg .itemImgOverlay {
    background-size: cover;
    background-position: center center;
    display: flex;
    height: 100%;
    width: 100%;
}

.menuCustom .menuWrap .mwMenuCat .menuCatItems .itemImg:hover {
    background-color: rgb(var(--acc-rgb))
}


.menuCustom .menuWrap.activeMenuWrap {
    display:flex;
    align-items: center;

}

.menuCustom .menuWrap .mwTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
    background-size: cover;
    background-position: center center;
     overflow: hidden;
}

.menuCustom .menuWrap .mwTitle .overlayWrap {
    display: flex;
    width: 30%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    top:0;
    left: 0;
    z-index: 1;
}

.menuCustom .menuWrap .mwTitle p {
    font-size: var(--font-size-2);
    color:#fff;
    position: relative;
    z-index: 15;
    display: flex;
    padding:0 0.5rem;
    overflow-x:hidden;
    flex-direction: column;
    align-items: flex-end;
	margin-bottom:0
}

@media (max-width: 640px) {
    .menuCustom .menuWrap .mwTitle p {
        font-size: var(--font-size-14);
        padding: 0.5rem;
    }
}

.menuCustom .menuWrap .mwTitle p:before {
    display: flex;
    width: 0%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom:0;
    left:0;
    content:'';
    transition: var(--easy);
}

.menuCustom .menuWrap .mwTitle:hover p:before {
    width: 100%;
}


.menuCustom .menuWrap .mwMenu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top:100px;
    width: 30%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.menuCustom .menuWrap .mwMenu > ul {
    min-width:60%;
}

.menuCustom .menuWrap .mwMenu li {
    padding:0.4rem 0;
}

.menuCustom .menuWrap .mwMenu > ul > li {
    position: relative;
}

.menuCustom .menuWrap .mwMenu > ul > li > i {
    position:absolute;
    right: 0;
    top:0.5rem;
    cursor: pointer;
}


.menuCustom .menuWrap .mwMenu a {
    overflow-x:hidden;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    font-size:var(--font-size-14);
}

.menuCustom .menuWrap .mwMenu a:before {
    display: flex;
    width: 0%;
    height: 1px;
    background-color: rgb(var(--text));
    position: absolute;
    bottom:0;
    left:0;
    content:'';
    transition: var(--easy);
}
.menuCustom .menuWrap .mwMenu a:hover:before {
    width: 100%;
}
.menuCustom .menuWrap .mwMenu .mwMenuList.sub {
    padding-left:2rem;
    padding-top:1rem;
    padding-bottom:1rem;
    position:relative;
    top:0;
    filter:opacity(1);
    transition: var(--easy);
}

.menuCustom .menuWrap .mwMenu > ul > li.hasSub.deactivated .mwMenuList.sub  {
    position:absolute;
    top:0;
    filter:opacity(0);
    transition: none;
    display:none;
}

.menuCustom .menuWrap .mwMenu .hasSub li {
    position: relative;
    display: flex;
    align-items: center;
}

.menuCustom .menuWrap .mwMenu .mwMenuList.sub li:before {
    content:'';
    display: inline-block;
    width:0.7rem;
    height: 1px;
    left:-1.5rem;
    background-color:rgb(var(--acc-rgb));
    position: absolute;
}

.menuCustom .menuWrap .mwProdList {
    width:80%;
}

.menuCustom .menuWrap .mwProdList li {
    margin-bottom:1.5rem;
}

.menuCustom .menuWrap .mwProd {
    width:40%;
    padding:100px 20px 0 20px;
    display:flex;
    align-items: flex-start;
    justify-content: center;
    height:100%;
}

.menuCustom .menuWrap .prodMenu {
    display:flex;
    width:100%;
    transition: var(--easy);
}

.menuCustom .menuWrap .prodMenu img {
    width:120px;
    height:auto;
}

.menuCustom .menuWrap .prodMenu:hover {
    background: rgba(var(--gray-rgb),0.1);
}



.menuCustom .menuWrap .prodMenu .prodMenuCon {
    display:flex;
    flex-direction: column;
    width:100%;
    justify-content: center;
    padding-left:2rem;
}
.menuCustom .menuWrap .prodMenu .prodMenuCon .prodPrice,
.menuCustom .menuWrap .prodMenu .prodMenuCon h4 {
font-size:var(--font-size-14);
}

.menuCustom .menuWrap .prodMenu .prodMenuCon .prodPrice {
    margin-top:1rem;
    font-weight: 500;
}

/* ADS BANNER */

.adsBanners {
    display:inline-block;
    max-width: 100%;
	
}

.adsBanners picture {
	height:100%;
	display:block;
	
}

.adsBanners img {
    width: 100%;
	border-radius:4px;
}

.adsBanners .adsBanner.tablet {
    display:none;
}

.product-info .added_to_cart wc-forward {
	display:none !important;
}


.lcl_force_txt_over #lcl_txt, .lcl_txt_over #lcl_txt {
	background:transparent;
	border: 0px solid transparent;
	border-radius: 0;
	max-height: calc(100% - 42px);
	padding: 13px 22px;
	overflow: auto;
	bottom: 0;
	width:100%;
    color:#000;
}

.lcl_force_txt_over #lcl_txt .lcl_txt_border, .lcl_txt_over #lcl_txt .lcl_txt_border, .lcl_txt_under #lcl_txt .lcl_txt_border {
	border-bottom: 1px dashed rgba(255,255,255,0.2);
	  margin-bottom: 10px;
	  padding-bottom: 8px;
	  color: #fff;
  font-weight: 400;
}

#lcl_txt > :last-child {
	color:#000;
    width:100%;
    text-align:center;
    font-size:var(--font-size-11);
}

/* custom sinari ordering v loope */ 

.woo-ordering {
	display:flex;
	width:100%;
	align-items:center;
	justify-content:center;
	margin-bottom:0 !important;
}


.woo-ordering .sortMob {
	display:none;
}

@media (max-width: 1024px)  {
	
	/*.woo-ordering {
		display:none;
	}*/
	
	
	.woo-ordering {
		width:auto;
		position:relative;
		
	}
	
	
	
	.woo-ordering .sinari-ordering {
		position: absolute;
		flex-direction: column;
		top: 42px;
		right: 0px;
		min-width: 100vw;
		background: #fff;
		z-index: 100;
		margin: 0;
		padding: 0;
		display:none;
	  }
	
	.woo-ordering .sinari-ordering.active {
		display:unset;
	}
	
	.woo-ordering ul li {
		cursor: pointer;
		margin: 0;
		padding: 0.5rem 0;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #ddd;
		background: #f6f6f6;
	
	}
	
	.woo-ordering .sortMob {
		display:unset;
		width:auto;
		
	}
	
}


.woo-ordering select {
	display:none;
}

.woo-ordering ul {
	display:flex;
	justify-content:center;
	align-items:center;
}

.woo-ordering ul li {
	cursor:pointer;
	margin: 0 1rem;
}

.woo-ordering ul li:first-child {
	font-weight:600;
	
}

.woo-ordering ul li:hover:first-child,
.woo-ordering ul li.active:first-child {
	text-decoration:none;
}


.woo-ordering ul li:hover,
.woo-ordering ul li.active {
	text-decoration:underline;
}

@media (min-width: 1025px) and (max-width:1280px)  {
	
	.woo-ordering ul li {
		margin: 0 0.4rem;
	}

}

.prodSq .overlay {
    pointer-events: none;
}

#reviews .cr-reviews-slider .slick-track {
	margin-left:unset;
	margin-right:unset;
}

/* =========================================================
   SINARI – WooCommerce loader (CSS-only, produkčný)
   ========================================================= */


/* ---------------------------------------------------------
   1. Lokálne blokovanie (shipping, payment, fragments)
   --------------------------------------------------------- */

.woocommerce .blockUI.blockOverlay {
	position: absolute;
	inset: 0;
	z-index: 100;
}


/* ---------------------------------------------------------
   2. Fullscreen blokovanie IBA pri odoslaní objednávky
   --------------------------------------------------------- */

body.wc-processing .woocommerce .blockUI.blockOverlay {
	position: fixed !important;
	inset: 0;
	z-index: 9999;
}


/* ---------------------------------------------------------
   3. Vypnutie pôvodného WooCommerce spinnera
   --------------------------------------------------------- */

.woocommerce .blockUI.blockOverlay::before {
	display: none !important;
}


/* ---------------------------------------------------------
   4. SINARI loader – lokálny (nad zhrnutím, shipping, payment)
   --------------------------------------------------------- */

.woocommerce .blockUI.blockOverlay::after {
	content: "";
	width: 72px;
	height: 16px;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	background:
		radial-gradient(circle, #FFD5BC 90%, transparent) 0 50% / 16px 16px,
		radial-gradient(circle, #FFD5BC 90%, transparent) 50% 50% / 16px 16px,
		radial-gradient(circle, #FFD5BC 90%, transparent) 100% 50% / 16px 16px;
	background-repeat: no-repeat;

	animation: sinari-flow 1.4s ease-in-out infinite;
	pointer-events: none;
}


/* ---------------------------------------------------------
   5. SINARI loader – SUBMIT objednávky (viewport center)
   --------------------------------------------------------- */

body.wc-processing::after {
	content: "";
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 72px;
	height: 16px;
	z-index: 10000;

	background:
		radial-gradient(circle, #FFD5BC 90%, transparent) 0 50% / 16px 16px,
		radial-gradient(circle, #FFD5BC 90%, transparent) 50% 50% / 16px 16px,
		radial-gradient(circle, #FFD5BC 90%, transparent) 100% 50% / 16px 16px;
	background-repeat: no-repeat;

	animation: sinari-flow 1.4s ease-in-out infinite;
	pointer-events: none;
}


/* ---------------------------------------------------------
   6. Animácia
   --------------------------------------------------------- */

@keyframes sinari-flow {
	0%   { opacity: .25; }
	20%  { opacity: 1; }
	40%  { opacity: .25; }
	60%  { opacity: 1; }
	80%  { opacity: .25; }
	100% { opacity: .25; }
}

/* .swiper-slide */

.swiperHero .swiper-slide {
    min-height:100% !important;
    height:unset;
}

.heroImage .heroWrap h3,
.heroImage .heroWrap {
    color:#fff;
}
.heroImage .heroWrap h3 {
    margin-bottom:1.5rem  !important;
}

.heroImage .heroWrap h2 {
    color:rgb(var(--acc-rgb));
    line-height:95%;
}

.heroImage .heroWrap a {
    color:rgb(var(--acc-rgb));
}

.heroImage .heroWrap a i {
    border-color:rgb(var(--acc-rgb)) !important;
}

.heroImage .heroWrap a span:after {
    background-color: rgb(var(--acc-rgb)) !important;
}

.yith-wcan-filters {
	margin-bottom:0;
}