/*
	💗 Credo-b.ru 2025 CSS 💗
▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁*/




/* ▉▉▉ 🔵 COMMON ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */

/* MAIN COLORS */
:root {
    /* Primary */
    --credo_color_main_1: #F0F0E4; /* Cannoli cream */
    --credo_color_main_2: #cccccc;
    --credo_color_main_3: #BAAA91; /* Safari */
    --credo_color_main_4: #C39F89; /* Sirocco */
    --credo_color_main_5: #b9b9b9; 
    --credo_color_main_6: #9b9b9b; /* Chanterelle */
    --credo_color_main_7: #716662; /* Baltic Amber */
    --credo_color_main_8: #000; /* Chocolate Martini */

    /* Secondary */
    --credo_color_dop_1: #889F69; /* Tendril */              /* GREEN */
    --credo_color_dop_2: #7291C8; /* Cornflower blue */      /* BLUE */
    --credo_color_dop_3: #A792B9; /* Viola */                /* VIOLET */
    --credo_color_dop_4: #D19B97; /* Rose Tan */             /* PINK */
    --credo_color_dop_5: #A89A8F; /* Cobblestone */          /* GRAY */
    --credo_color_dop_6: #9A8C4F; /* Willow */               /* BROWN */
    --credo_color_dop_7: #F0E9DF; /* Gardenia */             /* BEIGE */
}



/*default colors*/
:root {
    accent-color: var(--credo_color_main_5);
    caret-color: var(--credo_color_main_7);
}


/*DEBUG CSS*/
* {
    /*outline: 1px dashed green !important;*/
    --debug_css: '🔴🟡🟢 DEBUG CSS 🔴🟡🟢';
}




/* Default font */
* {
    font-family: 'Onest', sans-serif;
}

:root {
    --credo_font_primary: 'Onest', sans-serif;
}







/* === Breakpoints === */
/* 1024 - book orientation */
/* 767 - mobile */


/*Content overflow - prevent horizontal scrollbar*/
html {
    /*scroll-behavior: smooth;*/
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
}

#primary.content-area {
    overflow-x: hidden !important;
}



.grecaptcha-badge {
    display: none !important;
}


/* wpadminbar */
#wpadminbar {
    z-index: 987654321 !important;
    opacity: 0.6;
}


/*...............................................................................................*/
/* SCROLL bar*/
::-webkit-scrollbar-button {
    display: none;
}

/* :root { */
    /* For Firefox*/
    /* Switched off bcz it overrodes for other browsers =((( */
    /* ToDo: fix scrollbar for FF */
    /*scrollbar-width: thin;*/
    /*scrollbar-color: #5C509C #E5CCF4;*/
/* } */

::-webkit-scrollbar,
.wpfFilterVerScroll::-webkit-scrollbar {
    width: 10px !important;
    background: #ffffff00 !important;
    border: 1px solid var(--credo_color_main_7) !important;
    border-radius: 100px !important;
}


/* Track */
::-webkit-scrollbar-track,
.wpfFilterVerScroll::-webkit-scrollbar-track {
    background-color: transparent !important;
    -webkit-box-shadow: inset 0 0 10px #808080bd !important;
    box-shadow: inset 0 0 10px #808080bd !important;
    border-radius: 100px !important;
    border: 1px solid #afafaf !important;
}

/* Thumb */
::-webkit-scrollbar-thumb,
.wpfFilterVerScroll::-webkit-scrollbar-thumb {
    background: var(--credo_color_main_7) !important;
    border-radius: 100px !important;
    border: 1px solid #00000075 !important;
    background-clip: content-box !important;
    transition: all 0.5s;
}

::-webkit-scrollbar-thumb:hover,
.wpfFilterVerScroll::-webkit-scrollbar-thumb:hover {
    background: var(--credo_color_main_5) !important;
    border: 1px solid #000000 !important;
}


/* ::-webkit-scrollbar the scrollbar. */
/* ::-webkit-scrollbar-button the buttons on the scrollbar (arrows pointing upwards and downwards). */
/* ::-webkit-scrollbar-thumb the draggable scrolling handle. */
/* ::-webkit-scrollbar-track the track (progress bar) of the scrollbar. */
/* ::-webkit-scrollbar-track-piece the track (progress bar) NOT covered by the handle. */
/* ::-webkit-scrollbar-corner the bottom corner of the scrollbar, where both horizontal and vertical scrollbars meet. */
/* ::-webkit-resizer resizer */

/*...............................................................................................*/



/*NO FOCUS*/
.nofocus,
.nofocus:focus,
.nofocus:focus-visible{
    outline: none !important;
    box-shadow: none !important;
}


/*NO SELECT*/
.noselect {
    -webkit-user-select: none; /* Для Safari */
    -moz-user-select: none;    /* Для Firefox */
    -ms-user-select: none;     /* Для IE/Edge */
    user-select: none;         /* Стандартное свойство */
}


/*SELECTION*/
::selection {
    background-color: var(--credo_color_main_2);
}

::-moz-selection {
    background-color: var(--credo_color_main_2);
}


/*...............................................................................................*/
/* COMMON RESET */
body [type=button],
body [type=submit],
body button {
    background-color: var(--credo_color_main_7);
    border: 0;
    border-radius: 0;
    color: #ffffff;
}

body [type=button]:focus,
body [type=button]:hover,
body [type=submit]:focus,
body [type=submit]:hover,
body button:focus,
body button:hover {
    background-color: var(--credo_color_main_5);
    color: #fff;
}



/*...............................................................................................*/
/*Swiper JS Common (All pages)*/
:root {
    --swiper-navigation-size: 32px;
    --swiper-navigation-color: #7d7d7d;
    --swiper-pagination-color: #333333; /*+bullet active*/
    --swiper-pagination-bullet-width: 15px;
    --swiper-pagination-bullet-height: 3px;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-bullet-inactive-color: #7d7d7d;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
}

.swiper-button-prev{
    left: 10px !important;
    right: auto !important;
}

.swiper-button-next {
    left: auto !important;
    right: 10px !important;
}

.swiper-pagination-bullet {
    margin: 0 !important;
}

.swiper-wrapper {
  pointer-events: none !important;
}

.swiper-slide {
  pointer-events: auto !important;
}




/*...............................................................................................*/
/* CSS animations */

/**
Fade-in animation
Usage:
    opacity: 0;
    animation: fadeIn 2s ease-in-out 4s forwards;
*/
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}





/*...............................................................................................*/
/*Common layout*/
h1.entry-title {
    font-family: sans-serif;
}

@media (max-width: 575px) {
    main#content {
        margin-top: 10px;
    }

    h1.entry-title {
        font-size: 1.5em;
    }
}


















/* ▉▉▉ 🔵 Header ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */

/* BURGER ========================================== */
.burger:hover {
	cursor: pointer;
}

/* burger_panel ========================================== */
.burger_panel {
	background-color: #535353;
	position: fixed;
    z-index: 444444444;
	top: 0;
	right: 0;
	height: 100dvh;
	max-width: 515px;
	width: 100%;
	padding: 50px 20px 20px 40px;
    overflow-x: hidden;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.burger_panel.show {
	transform: translateX(0px);
}


/*burger_close =============================================*/
.burger_close {
	color: #fff;
    font-family: math;
    font-size: 3em;
    font-weight: 600;
    line-height: 1em;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 6px;
	cursor: pointer;
}


/*wp menu menu4burger =======================================*/
.burger_panel .burger_menu_place {
    margin-bottom: 64px;
}

.burger_panel #menu4burger {
	display: flex !important;
}

.burger_panel.show nav ul.elementor-nav-menu li {
	transform: translateX(0px);
	opacity: 1;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(1) {
	transition-delay: 0.15s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(2) {
	transition-delay: 0.3s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(3) {
	transition-delay: 0.45s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(4) {
	transition-delay: 0.6s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(5) {
	transition-delay: 0.75s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(6) {
	transition-delay: 0.9s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(7) {
	transition-delay: 1.05s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(8) {
	transition-delay: 1.2s;
}

.burger_panel.show nav ul.elementor-nav-menu li:nth-child(9) {
	transition-delay: 1.35s;
}




.burger_panel.show nav .about,
.burger_panel.show nav .social,
.burger_panel.show nav ul.sub {
	transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.85s;
}

.burger_panel nav ul.elementor-nav-menu {
	list-style-type: none;
}

.burger_panel nav ul.elementor-nav-menu li {
	margin-bottom: 20px;
	transform: translateX(40px);
	opacity: 0;
	transition: all 0.3s ease;
}

.burger_panel nav ul.elementor-nav-menu li:last-of-type {
	margin-bottom: 0px;
}

.burger_panel nav ul.elementor-nav-menu li a {
	color: #fff;
	/* font-family: 'Montserrat', sans-serif; */
	text-decoration: none;
	/* text-transform: uppercase; */
	font-size: 1.5rem;
	display: block;
	letter-spacing: 1px;
	font-weight: 600;
	padding: 10px 0;
	transition: all 0.3s ease;
}

.burger_panel nav ul.elementor-nav-menu li a span {
	 color: #adadad;
}

.burger_panel nav ul.elementor-nav-menu li a:hover {
	color: #adadad;
}

.burger_panel nav .about {
	margin-top: 40px;
	
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.4s ease;
}

.burger_panel nav .about p {
	color: #fff;
	font-size: 1.05rem;
	letter-spacing: 0.5px;
	line-height: 170%;
}

.burger_panel nav .social {
	margin-top: 15px;
	position: relative;
	padding-bottom: 30px;
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.4s ease;
}

.burger_panel nav .social:after {
	content: "";
    width: 100%;
    height: 1px;
    background-color: #919191;
    position: absolute;
    bottom: 0;
    left: 0;
}

.burger_panel nav .social a {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 25px;
}

.burger_panel nav .social a:last-of-type {
	margin-right: 0px;
}

/* .burger_panel nav .social a:hover svg path,
.burger_panel nav .social a:hover svg circle {
	fill: #b7ac7f;
} */

.burger_panel nav .social a svg {
	width: 100%;
	height: 100%;
}

.burger_panel nav .social a svg path,
.burger_panel nav .social a svg circle {
	/* fill: #fff; */
	transition: all 0.3s ease;
}

.burger_panel nav ul.sub {
	list-style-type: none;
	margin-top: 40px;
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.4s ease;
}

.burger_panel nav ul.sub li {
	margin-bottom: 10px;
}

.burger_panel nav ul.sub li:last-of-type {
	margin-bottom: 0px;
}

.burger_panel nav ul.sub li a {
	color: #fff;
	/* font-family: 'Montserrat', sans-serif; */
	letter-spacing: 1px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.burger_panel nav ul.sub li a:hover {
	color: #b7ac7f;
}


/*Poloska*/
.burger_panel .elementor-nav-menu a,
.burger_panel .elementor-nav-menu a.highlighted,
.burger_panel .elementor-nav-menu a:focus,
.burger_panel .elementor-nav-menu a:hover
{
    padding: 15px 0px !important;
}

.burger_panel .elementor-item:before,
.burger_panel .e--pointer-overline .elementor-item:after,
.burger_panel .e--pointer-overline .elementor-item:before,
.burger_panel .e--pointer-underline .elementor-item:after,
.burger_panel .e--pointer-underline .elementor-item:before {
    background-color: #ffffff;
    height: 3px;
    left: 0;
    width: 100%;
    z-index: 2;
}



/* OVERLAY ========================================== */
.burger_overlay {
	z-index: 333333333;
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	transition: all 0.3s ease-in-out;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
}

.burger_overlay.show {
	opacity: 1;
	visibility: visible;
}




/*Cart icon and counter*/
.cart-count-wrap {
    margin-left: -20px;
    position: relative;
    line-height: 0;
}

.cart-count-number {
    line-height: 0;
    position: absolute;
    top: -26px;
    left: -12px;
    width: 20px;
    height: 20px;
    background: #d1d1d1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
}





/*main_menu*/
.header_main_menu a {
    text-shadow: 0 0 1px #FFFFFF,
                 0 0 2px #FFFFFF,
                 0 0 5px #FFFFFF,
                 0 0 10px #FFFFFF,
                 0 0 15px #FFFFFF,
                 0 0 20px #FFFFFF,
                 0 0 25px #FFFFFF,
                 0 0 30px #FFFFFF,
                 0 0 35px #FFFFFF !important;
}












/* ▉▉▉ 🔵 Footer ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.footer_credo {
    background: url(/wp-content/uploads/2025/10/footer2_fff.webp), #c4c4c480;
    background-repeat: no-repeat, repeat;
    background-size: contain, 100%;
    background-position: right bottom;
    background-blend-mode: multiply;
    position: relative !important;
}

.footer_credo::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #ffffff;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: right bottom;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
}

@media (max-width: 767px) {
    .footer_credo {
        background-size: 60%, 100%;
    }
}


/*Subsribe form*/
#footer_subscription > .elementor-form-fields-wrapper {
    display: flex;
    align-items: flex-start;
}















/* ▉▉▉ 🔵 MAIN PAGE ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
/* Main slider */
[data-alias="MainSlider"] .sr7-bullet {
    box-shadow: none !important;
    width: 20px !important;
    height: 3px !important;
    background: #7e7e7e33 !important;
    border: 0 !important;
}

[data-alias="MainSlider"] .sr7-bullet.selected {
    background: #333333 !important;
}


/* Special Categories (new, recommended,...) SwiperJS slides */
body.home ul.products {
    display: flex !important;
}

.prods_loading {
    font-size: 14px;
}

.prods_hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute !important;
}

.main_accprods ul.products {
    gap: 0 !important;
}

.main_accprods .swiper-pagination {
	bottom: -30px !important;
}

.main_accprods li.product {
    box-shadow: 0 10px 40px 10px #00000020;
    /*outline: 1px solid #cccccc00;*/
}

.main_accprods .woocommerce-info {
    display: none !important;
}

.main_accprods .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgb(0 0 0 / 25%), rgba(0, 0, 0, 0));
}

.main_accprods .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgb(0 0 0 / 25%), rgba(0, 0, 0, 0));
}




/* Category (Skin type) SwiperJS slides */
.main_cats_faceskintypes li.product {
    position: relative;
    /* width: 226px !important;
    height: 344px !important; */
}

.main_cats_faceskintypes .swiper-pagination {
    bottom: -30px !important
}

.main_cats_faceskintypes li.product a img {
    margin: 0 !important;
}

.main_cats_faceskintypes li.product h2 {
    position: absolute;
    margin: -3em 0 0 0 !important;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    line-height: 16px;
    white-space: nowrap;
    text-shadow: 0 0 4px #000000;
}













/* ▉▉▉ 🔵 WPC Fly Cart ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
 @media (max-width: 768px) {
    #woofc-count {
        left: 15px;
        bottom: 15px;
    }
}

#woofc-count i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#woofc-count i:before {
    content: "";
    display: block;
    background-image: url(/wp-content/uploads/2025/10/shopping-bag.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: relative;
}

.woofc-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}


.woofc-shipping-destination {
    display: none !important;
}

.woofc-shipping-methods {
    display: flex !important;
    gap: 15px ;
    flex-direction: column;
    margin-bottom: 20px !important;
}


#woofc-area .woofc-item-remove {
    top: 20px;
}











/* ▉▉▉ 🔵 WPC Wishlist ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
#woosw_wishlist a.add_to_cart_button {
    white-space: nowrap;
}









/* ▉▉▉ 🔵 WPC badges ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.badge_recomended {
    width: 16px !important;
    height: 16px !important;
}

.badge_recomended .wpcbm-badge-inner {
    width: inherit !important;
    height: inherit !important;
}


.badge_hit .wpcbm-badge-inner {
    /* padding-right: 5px; */
}











/* ▉▉▉ 🔵 WBW filter ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.wpfFloatingBlock {
    position: relative;
    z-index: 222222222;
}

.wpfFloatingSwitcher {
    background-color: #4f4f4f;
    border: 0;
    border-radius: 0;
    color: #ffffff;
}

.wpfPreview {
    margin: 0 auto !important;
    width: auto !important;
}

.woobewoo-filter-loader.spinner {
	background: url(/wp-content/uploads/2025/07/logo-eng-black-eps.svg) !important;
    width: 180px !important;
    height: 36px !important;
    background-size: 100% !important;
    background-position: center;
    background-repeat: no-repeat !important;
}

#wpfSortProducts {
    padding: 0.2rem 0.5rem;
}








/* ▉▉▉ 🔵 WPC - AJAX Search ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.wpcas-overlay {
    z-index: 222222222 !important;
}

#wpcas-area {
    z-index: 333333333 !important
}












/* ▉▉▉ 🔵 WPGS - Product Gallery Slider for WooCommerce PRO (Twist) ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.wpgs-image .wpgs-dots li {
    width: 16px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wpgs-image .wpgs-dots li button {
    border-radius: 0px !important;
    width: 16px !important;
    height: 3px !important;
    padding: 0 !important;
}










/* ▉▉▉ 🔵 CusRev ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.cr-qna-search-block {
    display: flex !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
}

.cr-ajax-qna-search {
    display: none !important;
}

.cr-qna-block.cr-qna-new-q-form-open .cr-qna-ask-button {
    display: none !important;
}

.cr-qna-ask-button {
    background: #646464 !important;
}

.cr-qna-ask-button:hover {
    background: #797979 !important;
}

.cr-qna-list-q-b-r {
    display: none !important;
}













/* ▉▉▉ 🔵 PRODUCT CARDS: all pages ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
:root {
    --credo_product_card_border_radius: 0px;
}

ul.products {
	transition: 0.3s;
}

li.product {
	display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
    box-shadow: 0 0 10px #00000010;
	transition: all 1s ease;
    /* BG color. Default transparent. */
    background: #ffffff;
	/*Закругления углов: только нижние*/
    /* border-radius: 0 0 var(--credo_product_card_border_radius, 0) var(--credo_product_card_border_radius, 0); */
	/*Закругления углов: сразу все*/
	border-radius: var(--credo_product_card_border_radius, 0);
}

li.product:hover {
	box-shadow: 0 0 10px #00000020;
	transition: all 0.1s ease;
}

li.product span.onsale {
	display: none !important;
}

li.product .star-rating {
	display: none !important;
}

li.product a.added_to_cart {
	display: none !important;
}


/*WPC badge only*/
.wpcbm-wrapper {
	overflow: hidden;
}

.wpcbm-wrapper .product_badge_out_of_stock {
    /*box-shadow: 0 0 50px #00000080;*/
    white-space: nowrap;
}


/*WPC badge COMMON (shop page + product page + other)*/
.wpcbm-badges[class*="left"] .wpcbm-badge {
    margin-right: 5px !important;
}

.wpcbm-badge {
    box-shadow: none !important; /* some bug in plugin(( */
    padding: 3px 6px !important;
    border: 0 !important;
    border-radius: 3px;
    line-height: 1.2em;
}



li.product img.attachment-woocommerce_thumbnail,
li.product img.woocommerce-placeholder {
    margin: 0 !important;
	transition: 0.3s;
}

li.product:hover img.attachment-woocommerce_thumbnail {
	transform: scale(1.05);
}

li.product.outofstock img.attachment-woocommerce_thumbnail {
    opacity: 0.3;
    filter: grayscale(1) blur(2px);
    transition: 0.3s;
}

li.product.outofstock:hover img.attachment-woocommerce_thumbnail {
    opacity: 1;
    filter: grayscale(0) blur(0px);
}

li.product.outofstock h2.woocommerce-loop-product__title {
    opacity: 0.6;
}

li.product:not(.purchasable) .button.product_type_simple {
    margin-top: 0 !important; /*price height*/
}

    


/*Title*/
:root{
    --title_top_padding: 10px;
}

li.product h2.woocommerce-loop-product__title {
	color: #575757 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.3px;
    text-align: left;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 0.9rem !important;
    max-height: calc(2.7rem + var(--title_top_padding));
    min-height: calc(2.7rem + var(--title_top_padding));
    height: calc(2.7rem + var(--title_top_padding));
    text-overflow: ellipsis;
    text-wrap-style: pretty;
    position: relative;
    background-color: #ffffff;
    padding: var(--title_top_padding) 5px 0 5px !important;
    margin: 0 0 30px 0 !important;
    width: 100%;
}






/*Price*/
li.product span.price {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1rem !important;
    width: 100%;
    position: absolute;
    margin-top: -24px;
    padding: 0 5px;
}

li.product.outofstock span.price {
    pointer-events: none;
    opacity: 0;
}

li.product span.price del,
li.product span.price ins {
	line-height: unset !important;
}

li.product span.price ins {
	text-decoration: none !important;
	font-weight: 500 !important;
}

li.product span.price span.woocommerce-Price-amount,
li.product span.price ins span.woocommerce-Price-amount {
	color: #000000 !important;
	font-weight: 600 !important;
}

li.product span.price del {
	color: #ff2828 !important;
	font-size: 1rem !important;
}

li.product span.price del span.woocommerce-Price-amount {
	color: #575757 !important;
	font-size: 0.9rem !important;
    font-weight: 500 !important;
}




/* === Product Button === */
li.product a.add_to_cart_button,
li.product a.product_type_variable,
li.product a.product_type_simple {
    background-color: #000;
    color: #fff;
    font-size: 1rem !important;
    border: 1px #000 solid;
    text-align: center;
    margin: 0 !important;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 0 0 var(--credo_product_card_border_radius) var(--credo_product_card_border_radius);
}

li.product a.add_to_cart_button:hover,
li.product a.product_type_variable:hover,
li.product a.product_type_simple:hover {
    color: #ffffff;
    background-color: #b3b3b3;
}

li.product a.add_to_cart_button.added:after {
    font-family: 'WooCommerce';
    content: "\e017";
    margin-right: .53em;
    right: 0;
    position: absolute;
    vertical-align: bottom;
}

li.product a.add_to_cart_button:not(.product_type_variable):hover:before {
    width: 12px;
}


/*variations*/
li.product a.product_type_variable:after {
    content: '...';
    color: #fff;
    width: 0;
    /*height: 32px;*/
    overflow: hidden;
    transition: all 0.3s;
    display: inline-flex;
}

li.product a.product_type_variable:hover:after {
    width: 20px;
}





/*PROFI*/
.price-restricted {
    filter: blur(7px);
    cursor: not-allowed;
}






/*WPC Smart wishlist (heart)*/
li.product .woosw-btn {
	position: absolute;
    z-index: 50;
    top: 8px;
    right: 8px;
    /* margin-top: -32px; */
    opacity: 0.7;
    padding: 8px;
    border-radius: 50px;
}














/* ▉▉▉ 🔵 PRODUCT PAGE ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
/*garbage...*/
body.single span.onsale {
    display: none !important;
}

/*main padding bottom*/
body.single main {
    padding-bottom: 25px;
}


/* Breadcrumbs */
body.woocommerce .woocommerce-breadcrumb {
    margin: 0 0 2.5em;
    padding: 0;
}


/* Product box */
body.single main > .product {
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px 0 #0000001f;
}




/*Gallery*/
body.single .product_gallery .wpgs-dots {
    bottom: -10px;
}




body.single .product_meta .sku_wrapper,
body.single .product_meta .posted_in,
body.single .after_summary,
body.single #tab-title-volume ,
body.single #tab-volume {
    display: none !important;
}


/* Short desc (product real name) */
body.single .woocommerce-product-details__short-description {
    font-size: 2em;
    font-weight: 800;
    line-height: 1.1em;
    margin: 0.5em 0 0.5em 0;
}

body.single .woocommerce-product-details__short-description p {
    margin: 0;
}



/* Title (desc) */
body.single h1.product_title {
    font-size: 1.4em;
    line-height: 1.1em;
    margin: 0 0 1em 0;
}


/* before summary - before badges and price */
.before_summary {
    margin: 40px 0 20px 0;
    background: #ffffff;
    padding: 0;
    /* border-radius: 6px; */
    /* border: 1px solid #e9e9e9; */
    /* box-shadow: 0 0 7px 0 #0000001f; */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    /* overflow: hidden; */
    /* max-height: 300px; */
    opacity: 1;
    visibility: visible;
    transition: all 2s ease, padding 0s;
}

.before_summary:not(:has(.prod_info)) {
    max-height: 0;
    padding: 0;
    border-width: 0;
    opacity: 0;
    visibility: hidden;
}



/* Badges */
body.single .summary .wpcbm-badges {
    margin: 0 0 20px 0;
}





/* Stars */
.woocommerce-product-rating {
    opacity: 0;
    animation: fadeIn 2s ease-in-out 3s forwards;
}

.star-rating {
    width: 5.3em !important;
}

.star-rating span {
    font-family: WooCommerce !important;
}



/* Price */
body.single .summary .price {
    color: #000000 !important;
    font-size: 1.45em !important;
    font-weight: 700 !important;
}


/* links */
body.single .summary a {
    background-color: transparent;
    color: #858585;
    text-decoration: none;
    border-bottom: 1px solid #858585;
    padding: 0;
    transition: all 0.2s ease;
}

body.single .summary a:active,
body.single .summary a:hover {
    color: #2b2b2b;;
}


/* prod_info */
body.single .prod_info {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

body.single .prod_info .side_left,
body.single .prod_info .side_right {
    position: relative;
}

body.single .prod_info .label {
    display: inline-block;
    width: 4.8em;
}

body.single .prod_info .label:after {
    content: ':';
    padding-right: 10px;
}

.product-subcategories.country {
    display: inline-flex;
    padding: 0;
    list-style: none;
}

.prod_info.volume p {
    display: inline-block;
    margin: 0 !important;
}


/*SKU copy*/
body.single .sku_copy {
    padding: 3px;
    margin: 0 0 0 5px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    opacity: 0.4;
    position: relative;
}

body.single .sku_copy:hover {
    background: #575757;
}

body.single .sku_copy:focus {
    background: transparent;
}

body.single .sku_copy_icon {
    display: block;
    width: 16px;
    height: 16px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNvcHktaWNvbiBsdWNpZGUtY29weSI+PHJlY3Qgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0IiB4PSI4IiB5PSI4IiByeD0iMiIgcnk9IjIiLz48cGF0aCBkPSJNNCAxNmMtMS4xIDAtMi0uOS0yLTJWNGMwLTEuMS45LTIgMi0yaDEwYzEuMSAwIDIgLjkgMiAyIi8+PC9zdmc+);
    background-repeat: no-repeat;
    background-size: contain;
}

.copy-feedback {
    background: #d1d1d1;
    padding: 2px 2px 0 1px;
    border-radius: 4px;
    height: 22px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 1em;
    margin: 0;
    position: absolute;
    right: 0;
    transform: translateX(100%);
    z-index: 8765;
}




/*meta*/
body.single .product_meta {
    padding: 10px 20px;
    box-shadow: 0 0 7px 0 #0000001f;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
}

body.single .product_meta ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 20px;
    justify-content: flex-start;
    list-style: none;
}



/* Purpose */
.prod_info.purpose {
    margin: 0 0 20px 0;
}

.prod_info.purpose .label {
    width: auto !important;
}



/* Skin type */
.prod_info.skin-type {
    margin: 0 0 20px 0;
}

.prod_info.skin-type .label{
    width: auto !important;
}



/* Tip sredstva */
.prod_info.product-type {
    margin: 0 0 20px 0;
}

.prod_info.product-type .label{
    width: auto !important;
}







/* BUTTON ADD TO CART */
body.single .summary .single_add_to_cart_button {
    height: 40px;
    margin-left: 20px;
    padding: 0 42px;
    padding-right: 2.5rem;
    border-radius: 0;
    border: 1px solid #000000;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 1em !important;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

body.single .summary .single_add_to_cart_button:hover {
    background: #4d4d4d !important;
    border: 1px solid #4d4d4d;
}

body.single .summary .single_add_to_cart_button.loading:after {
    position: absolute;
}

body.single .summary .single_add_to_cart_button.added:after {
    position: absolute;
    margin-left: .6em;
}

body.single .summary .added_to_cart {
    display: none !important;
}


/*WPC Heart*/
body.single .woosw-btn {
    display: none !important;
}

body.single form.cart .woosw-btn {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 2px;
}



/*Profi upgrade*/
body.single .summary .prof-only-button {
    margin: 0 0 2em 0;
}

body.single .summary .profi-only-desc {
    background: #ebebeb;
    padding: 5px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #b5b5b5;
}






/*Tabs*/
body.woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow: visible;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs:before {
    bottom: -2px;
    border-bottom: 2px solid #efefef;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0;
    background-color: transparent;
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 0;
    margin: 0;
    padding: 0 0.5em 8px 0.5em;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
body.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    content: none;
    
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #ffffff;
    color: #515151;
    z-index: 2;
    border-bottom-color: #ffffff;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: .1em 0;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    font-weight: 900;
    border-bottom: 3px solid #858585;
}

#tab-additional_information .woocommerce-product-attributes-item__value {
    vertical-align: middle;
    padding: 0 0 0 10px;
}

#tab-additional_information table,
#tab-additional_information th,
#tab-additional_information td {
    border: none !important;
    background-color: transparent !important;
    font-style: normal !important;
}







/* Related products */
body.single .related.products {
    margin-top:64px;
    position: relative;
    overflow: hidden;
}









/* ▉▉▉ 🔵 Woo account ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
body.woocommerce-account form .form-row {
    padding: 0;
    margin: 0 0 6px 0;
}

body.woocommerce-account form p {
    line-height: 1.2em;
}

body.woocommerce-account .woocommerce-privacy-policy-text {
    line-height: 1.2em;
}

/* Woo Reg Form */
body.woocommerce-account .account-type-option {
    margin-bottom: 10px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
	flex-wrap: nowrap;
    gap: 5px;
}

body.woocommerce-account .account-type-option input[type="radio"] {
    margin: 1px 0 0 0;
    display: inline-block;
    cursor: pointer;
}

body.woocommerce-account .account-type-option label {
    font-size: 1em;
    font-weight: 600;
    line-height: 1em;
    display: inline-block;
    cursor: pointer;
	position: relative;
}

body.woocommerce-account .account-type-option .description {
    margin: 0;
    font-size: 14px;
	line-height: 1em;
	font-weight: 400;
    color: #888;
    width: 100%;
    padding: 0;
}

body.woocommerce-account .profi_fields {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
}

body.woocommerce-account .profi_fields.hidden {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
}



/*LK - Diploma*/
body.woocommerce-account .diploma_header {
    margin-top: 42px;
}

body.woocommerce-account .diploma_wrap img {
    max-width: 400px;
    height: auto;
    border: 1px solid #7f7f7f;
    cursor: zoom-in;
    box-shadow: 0 3px 10px 0 #00000057;
}




/*Downloads menu - OFF*/
body.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads {
	display: none !important;
}











/* ▉▉▉ 🔵 Woo: checkout page ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */


body.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .form-row.validate-required {
    padding: 0;
}

body.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .form-row.validate-required label {
    line-height: 1em;
}




/*WPC Free Shipping Bar (Fly cart + checkout) */
.wpc-free-shipping-bar .wpcfb-message {
  display: none;
}

.wpc-free-shipping-bar .wpcfb-title + .wpcfb-progress-bar + .wpcfb-message {
  display: block;
}

.wpcfb-progress-bar {
    filter: grayscale(1);
}

.wpcfb-progress-amount {
    animation: wpcfb-animate-stripes 5s linear infinite !important;
}
















/* ▉▉▉ 🔵 Gravity Forms ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
/* Консультация врача - косметолога*/
.gf_progressbar_percentage.percentbar_blue {
    background-color: #777777 !important;
}

.gform-body .gform-page-footer {
    filter: saturate(0);
}

.step_want_result .ginput_container .gfield_description {
    display: none !important;
}

.step_want_result .gfield_description.validation_message:has(strong) {
    /* display: none !important; */
} 
















/* ▉▉▉ 🔵 Trellis - blog list ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
.trellis_posts nav.elementor-pagination {
    margin-top: 60px;
}

.trellis_posts .elementor-post__excerpt p {

}

.trellis_posts .elementor-post__excerpt p::after {
    content: "...";

}















/* ▉▉▉ 🔵 template ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */
/* ▉▉▉ 🔵 template ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ */

