/*
Theme Name: Colloid Theme
Author: ana.slovic@Fullo.dev
Author URI: https://fullo.rs
Description: Custom theme for Colloid company
Text Domain: colloid
Version: 1.0
*/


@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-Light.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 300; /* Light */
}


@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-Regular.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 400; /* Regular */
}

@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-Medium.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 500; /* Medium */
}

@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-SemiBold.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 600; /* Semi bold */
}

@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-Bold.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 700; /* Bold */
}

@font-face {
    font-family: 'Jost';
    src: url("./fonts/Jost-Black.ttf");
    font-display: swap;
    font-style: normal;
    font-weight: 900; /* Black */
}


/* Breadcrumps */

.rank-math-breadcrumb {
    margin-bottom: 50px;
}

.rank-math-breadcrumb img {
    width: 20px;
    height: 20px;
}

.rank-math-breadcrumb .separator {
    color: #ccc8c5;
    margin: 0 10px;
}

.rank-math-breadcrumb a {
    color: #cccccc;
}


/* Global */

body {
  margin: 0;
  font-family: 'Jost';
}

body.sidebar-open::after,
body.search-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 80%);
    z-index: 4;
}

ul {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


ul, ol {
  list-style: none;
}


input {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


a {
  text-decoration: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}


h1,h2,h3,h4,h5,h6 {
  margin: 0;
  color: #333333;
}

p {
    color: #333333;
}

.container,
.woocommerce-message {
    width: 100%;
    margin: auto;
    padding: 0 2.5%;
}


/* Top header */

.top_header {
    background: #1f1f1f;
    padding: 4px 0;
    position: relative;
}

.top_header::before {
    content: '';
    width: 100%;
    height: 50px;
    background: #1f1f1f;
    display: block;
    position: absolute;
    bottom: -50px;
}


.top_header .insta_link img {
    display: block;
}

.top_header .top_header_wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) fit-content(70%) minmax(0, 1fr);
    align-items: center;
}

.pre-header .splide__slide {
    display: flex;
    align-items: center;
}

.pre-header {
    max-width: 60%;
    margin: auto;
}

.pre-header .splide__slide {
    display: flex;
    justify-content: center;
}

.pre-header .splide__slide,
.pre-header .splide__slide a {
    color: #FAFAFA;
    font-size: 14px;
    font-weight: 300;
}

.pre-header img {
    margin-right: 7px;
}

.pre-header .splide__slide p {
    color: #FAFAFA;
}

.pre-header .splide__list li {
    position: relative;
}


/*.pre-header .splide__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FAFAFA;
    display: block;
    left: -100px;
}*/


/* Middle header */

.header_nav_wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) fit-content(70%) minmax(0, 1fr);
    align-items: center;
}

.logo {
    justify-self: start;
}

.menu {
    justify-self: center;
}

.header_cart {
    justify-self: end;
}

/* Menu */

.mob_nav_link {
    display: none;
}

.mob-button {
    display: none;
}

.header_nav {
    background: #fff;
    position: relative;
    z-index: 3;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;

    transition: box-shadow 0.3s ease;
}

.header_nav.nav-shadow {
    box-shadow: 0 60px 200px rgba(0, 0, 0, 0.7);
}

.nav-menu ul.menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 30px;
}

.nav-menu ul li a:hover {
    color: #e01d48;
}

.nav-menu ul li {
    position: relative;
    padding: 20px 0;
}

.nav-menu ul li .sub-menu {
    position: absolute;
    min-width: 250px;
    width: max-content;
    padding: 30px;
    background: #fff;
    top: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    left: -50%;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transform: translateY(-10%);
     transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu ul li .sub-menu.active-menu {
    transform: translateY(0%);
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.nav-menu ul li .sub-menu li {
    padding: 0;
}

.nav-menu ul li .sub-menu li a {
    font-weight: 400;
    font-size: 16px;
    padding: 5px 0;
    display: inline-block;
}

.nav-menu ul li .sub-menu li:hover a {
    margin-left: 10px;
}


.nav-menu ul li .sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0% 100%, transparent 70%, #fff 70%);
}

.nav-menu ul li .sub-menu::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 70%, #fff 70%);
}



/* Cart ikone */

.header_cart ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.header_cart ul li {
    cursor: pointer;
}

.header_cart ul li a {
    display: flex;
}


/* Mini cart */

.wc-block-mini-cart__button {
    padding: 0;
}

.wc-block-mini-cart__empty-cart-wrapper .wp-block-paragraph,
.wc-block-mini-cart__empty-cart-wrapper .wp-block-button {
    display: none;
}

.wc-block-mini-cart__empty-cart-wrapper {
    text-align: center;
}

.wc-block-mini-cart__empty-cart-wrapper span {
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    color: #333;
}

.wc-block-mini-cart__empty-cart-wrapper .mini-cart-kategorije {
    margin-top: 30px;
}

.wc-block-mini-cart__empty-cart-wrapper .mini-cart-kategorije li {
    width: 65%;
    margin: 10px auto;
}

.wc-block-mini-cart__empty-cart-wrapper .mini-cart-kategorije li a {
    background: #fafafa;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 10px;
}


.wc-block-mini-cart__empty-cart-wrapper .mini-cart-kategorije li a svg {
    width: 20px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
    box-shadow: none;
}

.wc-block-mini-cart__badge {
    background: transparent !important;
    color: #333 !important;
    font-weight: 400;
    font-size: 12px;
    margin-left: -25%;
    margin-bottom: 10px;
}

.wp-block-woocommerce-filled-mini-cart-contents-block h2 {
    font-weight: 400;
    font-size: 25px;
}

.wp-block-woocommerce-filled-mini-cart-contents-block .wc-block-components-product-name {
    color: #333;
}

.wp-block-woocommerce-filled-mini-cart-contents-block .wp-element-button {
    border-radius: 25px;
}

.wp-block-woocommerce-filled-mini-cart-contents-block .wc-block-components-button__text {
    font-weight: 400;
}

.wc-block-mini-cart__template-part .price {
    flex-direction: column-reverse;
}

.wc-block-mini-cart__template-part .price.wc-block-components-product-price del {
    font-size: 12px;
    font-weight: 300;
    position: relative;
    text-decoration: none;
}

.wc-block-mini-cart__template-part .price.wc-block-components-product-price del:before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    width: 95%;
    transform: rotate(-15deg);
    border-block-end: 1px solid red;
}

.wc-block-mini-cart__template-part .price.wc-block-components-product-price ins {
    color: #e11d48;
    font-weight: 500;
}

.wc-block-mini-cart__template-part .wc-block-components-product-metadata__description {
    display: none;
}

.wc-block-mini-cart__template-part table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices .price {
    align-items: flex-start;
}

.price.wc-block-components-product-price {
    font-weight: 500;
}


/* woocommerce notification */

.woocommerce-notices-wrapper {
    background: #d2cbc6;
}

.woocommerce-notices-wrapper .woocommerce-message {
    padding: 10px 2.5%;
    outline: none;
}

.woocommerce-notices-wrapper .woocommerce-message a {
    color: #171717;
    text-decoration: underline;
}

/* Search */

.search_field {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: #fff;
    z-index: 10;
    padding: 35px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transform: translateX(100%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.search_field .close_search {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    padding: 25px;
    cursor: pointer;
}

.search_field .aws-container {
    margin-top: 75px;
    border-top: 1px solid #e6e6e6;
    padding-top: 40px;  
}

.icon-close path {
    stroke: #fff;
}

.close_search svg {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    padding: 10px;
}


.aws-search-result .aws_result_title,
.aws-search-result .aws_result_title strong {
    font-weight: 500;
    color: #333;
}

.aws-search-result .aws_result_head {
    align-items: center;
}

.aws-search-result .aws_result_term {
    display: none;
}

.aws-search-result .aws_results .aws_result_item {
    display: flex;
    align-items: center;
    margin-bottom: 10px !important;
}

.aws-search-result .aws_result_content {
    width: 100%;
}


.aws-search-result .aws_search_more {
    display: flex !important;
    justify-content: center;
    line-height: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: #171717;
    color: #fff;
    padding: 11px 27px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #171717 !important;
    cursor: pointer;
    display: block;
    margin: 20px !important;
    width: 95%;
    left: 50%;
    transform: translate(-50%);
}

.aws-search-result .aws_result_item.hovered, 
.aws-search-result .aws_result_item:hover, 
.aws-search-result .aws_search_more a:hover {
    background: transparent !important;
}

.aws_search_more {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.aws-search-result .aws_result_sale {
    display: none;
}

.aws_result_price {
    display: flex !important;
    flex-direction: column;
    color: #333;
    align-items: flex-end;
}

.aws_result_price del {
    order: 2;
    text-decoration: none;
    color: #818181;
    font-size: 11px;
    font-weight: 300;
    position: relative;
    margin-top: 5px;
}

.aws_result_price ins {
    order: 1;
    text-decoration: none;
    color: #e11d48;
    font-weight: 500;
}




/* Cena do besplatne dostave */

/* Preostali iznos za besplatnu dostavu */
.free-shipping{
  display: block;
  margin-bottom: 20px;
  padding: 16px 40px 20px;
}
.wc-block-mini-cart__template-part .free-shipping {
  margin-bottom: 0;
}
.free-shipping .line{
  position: relative;
  display: block;
  height: 5px;
  background: #e6e6e6;
  border-radius: 0;
  margin-bottom: 13px;
}
.free-shipping .line .filling{
  position: relative;
  height: 5px;
  border-radius: 2px;
  background-color: #333;
}
.free-shipping .tekst{
  display: inline-block;
  text-align: center;
  width: 100%;
  color: #333;
}
.free-shipping .tekst strong{
  white-space: nowrap;
}
.free-shipping .tekst a{
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 20px;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}
.wc-block-mini-cart__template-part .free-shipping .tekst a{
  display: block;
}
.free-shipping .tekst img{
  display: inline-block;
  width: 30px;
  height: auto;
  vertical-align: center;
  margin-right: 4px;
  margin-bottom: -3px;
}

/* Home tab i proizvodi */

.proizvodi-grid__tab {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.proizvodi-grid__tab.selected {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: translateY(0);
}

.proizvodi-grid__tab.selected.visible {
    opacity: 1;
    transform: translateY(0);
}

.proizvodi-grid {
    background: #e1dcd8;
    padding: 100px 0 100px;
    position: relative;
}

.product-image-wrap {
    width: 100%;
}


.proizvodi-grid .carousel-header h2 {
    color: #171717;
    font-size: 60px;
}

.proizvodi-grid .tabs button {
    background: #ddd8d4;
    color: #333;
    border: none;
    padding: 20px 30px;
    border-radius: 35px;
    font-size: 16px;
    font-family: 'Jost';
    letter-spacing: 1px;
    cursor: pointer;
}

.proizvodi-grid .tabs button.selected {
    background: #333;
    color: #fff;
}

.proizvodi-grid .tabs {
    margin-top: 10px;
}

.proizvodi-grid__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    margin-top: 40px;
}

.product-info-wrap {
    background: #fafafa;
    padding: 25px 40px 25px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.product-info-wrap .woocommerce-loop-product__title {
    font-weight: 500;
    font-size: 20px;
    max-width: 65%;
    min-height: 60px;
}

.product-image-wrap .onsale {
    position: absolute;
    background: #e01d48;
    color: #fff;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    top: 20px;
    left: 20px;
}

.woocommerce-LoopProduct-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    position: relative;
    overflow: hidden;
}

.add-to-cart-wrap {
    position: absolute;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.3s ease;
    transform: translate(-50%, 20px);
}

.product:hover .add-to-cart-wrap {
    opacity: 1;
    transform: translate(-50%, 0);
}

.add_to_cart_button,
.single_add_to_cart_button {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: #171717;
    padding: 11px 27px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #171717;
    cursor: pointer;
    display: block;
    z-index: 1;
    color: #fff;
}

.added_to_cart.wc-forward {
    display: none;
}

/* button hover flair */

.button__flair {
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
    transform-origin: 0 0;
    will-change: transform;
    z-index: -1;
}

.button__flair:before {
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    width: 170%;
}

/*  */

.btn-outline {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-outline .button__flair:before {
    background-color: #171717;
}

.trenuci-inspirisu .heading a:hover::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(2%) hue-rotate(319deg) brightness(108%) contrast(100%);
}



.product-info-wrap .product-brand {
    display: block;
    width: 100%;
    color: #757575;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}


.product-info-wrap .price {
    display: flex;
    flex-direction: column;
    color: #333;
    align-items: flex-end;
}

.product-info-wrap .price ins {
    order: 1;
    text-decoration: none;
    color: #e11d48;
    font-weight: 500;
}

.product-info-wrap .price del {
    order: 2;
    text-decoration: none;
    color: #818181;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    margin-top: 5px;
}

.product-info-wrap .price del:before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    width: 95%;
    transform: rotate(-15deg);
    border-block-end: 1px solid red;
}


/* Korisnici */

.korisnici {
    padding: 50px 0;
    background: #f3f3f3;
}

.korisnici .korisnici__header {
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    position: sticky;
    top: 45%;
}

.korisnici .korisnici__header h2,
.korisnici .korisnici__header p {
    font-size: 60px;
    font-weight: 400;
    color: #333333;
}

.korisnici__lista {
    text-align: center;
}

.korisnici__lista .korisnici__slika {
    display: flex;
    align-items: center;
}

.korisnici__lista .korisnici__slika h3 {
    font-weight: 400;
    font-style: italic;
    color: #333333;
    font-size: 18px;
}

.korisnici__lista .korisnici__kartica {
    max-width: 27%;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.korisnici__lista .korisnici__kartica p {
    text-align: left;
    font-size: 18px;
}

.korisnici__lista .korisnici__kartica:nth-child(odd) {
    background: var(--color-orange-8675, #E0DCD8BF);
    backdrop-filter: blur(12px);
}

.korisnici__lista .korisnici__kartica:nth-child(even) {
    background: var(--color-grey-80763, #CFCCC8C2);
    backdrop-filter: blur(12px)
}

.korisnici__lista .korisnici__slika img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.korisnici__lista .korisnici__kartica:nth-child(2) {
    position: relative;
    left: -12%;
}

.korisnici__lista .korisnici__kartica:nth-child(3) {
    position: relative;
    left: 12%;
}


.korisnici__lista .korisnici__kartica:nth-child(4) {
    position: relative;
    left: -12%;
}

.signature {
    background: #45413a;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding: 10px 0;
}


/* Footer card */

.top_footer_wrap {
    background: #c9c5c1;
    padding: 5px 0;
}

.top_footer_wrap .footer-kartice {
    display: flex;
    align-items: center;
    justify-self: center;
}

.top_footer_wrap .footer-kartice img {
    height: 28px;
    margin-left: 2px;
}

.footer-kartica.footer-kartica--5 {
    margin-left: 50px;
}

.footer-kartica.footer-kartica--6 {
    margin-left: 50px;
}


/* Trenuci inspirisu */

.trenuci-inspirisu .heading {
    text-align: center;
}

.trenuci-inspirisu {
    padding: 80px 0 50px;
    background: #fafafa;
}

.trenuci-inspirisu .trenuci-inspirisu__mali-naslov {
    color: #171717;
    font-size: 20px;
}

.trenuci-inspirisu h2 {
    font-size: 60px;
    font-weight: 400;
    color: #333333;
}

.trenuci-inspirisu p {
    font-size: 20px;
    color: #333333;
    margin-top: 10px;
}

.trenuci-inspirisu .heading a {
    position: relative;
    align-items: center;
    justify-content: center;
    color: #333333;
    border: 2px solid #333333;
    display: inline-flex;
    padding: 15px 23px;
    border-radius: 30px;
}

.trenuci-inspirisu .heading a::before {
    content: '';
    background: url(./images/insta.svg);
    display: block;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}



/* TRENUCI KOJI INSPIRISU PROIZVODI MODAL */

.trenuci-inspirisu-proizvodi {
    background: #fafafa;
    padding-bottom: 100px;
}

.trenuci-glavna-slika {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.trenuci-inspirisu__proizvod .qv-trigger {
    font-family: 'Jost';
    font-size: 15px;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
    padding: 10px 0;
    border-radius: 30px;
    cursor: pointer;
}

.trenuci-inspirisu__proizvod .icon-instagram {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
}

.qv-modal__wrap .qv-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid #333;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

.qv-modal__wrap .qv-price {
    display: flex;
    flex-direction: column;
    color: #333;
    align-items: flex-end;
}

.qv-modal__wrap .qv-price del {
    order: 2;
    text-decoration: none;
    color: #818181;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    margin-top: 5px;
}

.qv-modal__wrap .qv-price ins {
    order: 1;
    text-decoration: none;
    color: #e11d48;
    font-weight: 500;
}

.qv-modal__wrap .qv-price del:before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    width: 95%;
    transform: rotate(-15deg);
    border-block-end: 1px solid red;
}

.trenuci-inspirisu-proizvodi .splide__pagination {
    position: static;
    margin-top: 20px;
}

.trenuci-inspirisu-proizvodi .splide__pagination__page {
    background: #000;
    width: 7px;
    height: 7px;
    border: 2px solid transparent;
}

.trenuci-inspirisu-proizvodi .splide__pagination__page.is-active {
    border: 2px solid #000;
}


/**/


.qv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.qv-gallery {
    border-right: 1px solid #eee;
}

.qv-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qv-info {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
}

.qv-naslov {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.qv-kartica {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.qv-kartica img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.qv-kartica__info {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.qv-kartica__info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.qv-add-to-cart {
    background: #171717;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
}

.qv-insta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.qv-insta span {
    font-size: 14px;
    color: #171717;
}

.qv-follow {
    border: 1px solid #171717;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    color: #171717;
    text-decoration: none;
}

.qv-follow:hover {
    background: #171717;
    color: #fff;
}

/* Open modal */


/**/

.qv-modal {
    display: none;
    position: fixed;
    top: 50%;
    background: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: 3;
}

.qv-modal.open {
   display: block;
   animation: fadeIn 0.3s ease forwards;
}

.qv-modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}


body.modal-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.qv-modal__nav {
    width: 50%;
    margin: 0 0 0 auto;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #eee;
    color: #333;
}

.qv-modal__nav button {
    background: #333;
    color: #fff;
    border: none;
    padding: 7px 10px;
    border-radius: 7px;
    margin: 0 10px;
    cursor: pointer;
}

.qv-modal__nav .qv-counter {
    display: none;
}


/* Tooltip */

.view_product_link {
    position: absolute;
    bottom: -50px;
    left: 30px;
    width: calc(100% - 60px);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


.trenuci-inspirisu__proizvod {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.trenuci-inspirisu__proizvod:hover .view_product_link {
    bottom: 30px;
}

.trenuci-inspirisu__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 30px;
}

.trenuci-inspirisu__badge img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #f2f2f2;
}

.trenuci-inspirisu__tooltip {
    font-size: 13px;
    color: #fff;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.trenuci-inspirisu__badge:hover .trenuci-inspirisu__tooltip {
    opacity: 1;
    visibility: visible;
}








/* Footer info */

.footer-info {
    background: #e1dcd8;
    padding: 25px 0 50px;
}

.footer-info .footer-info-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.footer-info .footer-info-wrap .footer-info__ikonica img {
    height: 20px;
}

.footer-info .footer-info-wrap .footer-info__item {
    display: flex;
}

.footer-info .footer-info-wrap .footer_desc {
    margin-left: 20px;
}

.footer-info .footer-info-wrap .footer_desc h3 {
    font-weight: 500;
}

.footer-info .footer-info-wrap .footer_desc p {
    margin-top: 7px;
    font-size: 14px;
}

.footer-info .footer-info-wrap .footer-info__item {
    padding: 0 40px;
    border-right: 1px solid #cbc7c3;
}

.footer-info .footer-info-wrap .footer-info__item:first-child {
    padding-left: 0;
}

.footer-info .footer-info-wrap .footer-info__item:last-child {
    padding-right: 0;
    border-right: none;
}

/*  */

footer.main_footer {
    background: #c2beb9;
    padding: 65px 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

footer.main_footer .footer_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

footer.main_footer .footer_wrap .footer_links {
    display: flex;
    flex-wrap: wrap;
}

footer.main_footer .footer_wrap .footer_links .footer_phone {
    width: 100%;
    margin-top: 50px;
}

footer.main_footer .footer_wrap .footer_links {
    border-right: 1px solid #b2ada9;
}

footer.main_footer .footer_wrap .footer_links .links_nav {
    width: 49%;
}

footer.main_footer .footer_wrap .footer_links #menu-footer-links,
footer.main_footer .footer_wrap .footer_links #menu-footer-info {
    width: 100%;
}


footer.main_footer .footer_wrap .footer_links span {
    font-family: 'Jost';
    font-size: 27px;
    font-weight: 300;
    margin-bottom: 20px;
    display: inline-block;
}

footer.main_footer .footer_wrap .footer_links li {
    margin-bottom: 10px;
}

footer.main_footer .footer_wrap .footer_links a {
    color: #333;
    font-weight: 400;
    font-size: 17px;
}

footer.main_footer .footer_wrap .footer_phone {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer.main_footer .footer_wrap .footer_phone a {
    font-size: 28px;
    text-decoration: underline;
    background: linear-gradient(currentColor, currentColor) 0 min(100%, 1.35em) / 100% 1px no-repeat;
    position: relative;
    text-decoration-line: none;
}

footer.main_footer .footer_wrap .footer_newsletter {
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer.main_footer .footer_wrap .footer_newsletter span {
    display: block;
}

footer.main_footer .footer_wrap .footer_newsletter .logo img {
    height: 50px;
}

footer.main_footer .footer_wrap .footer_newsletter .footer_news_top span {
    font-size: 45px;
    font-weight: 400;
    color: #333333;
    margin-top: 35px;
    display: block;
}

footer.main_footer .footer_wrap .footer_newsletter .fluentform .ff-el-form-control {
    background: #bcb8b3;
    border: none;
    padding: 25px 25px;
    height: auto;
}

footer.main_footer .footer_wrap .footer_newsletter .fluentform .ff-el-form-control::placeholder {
    color: #686563;
}

footer.main_footer .footer_wrap .footer_newsletter .fluentform {
    margin-top: 15px;
    width: 70%;
}

footer.main_footer .footer_wrap .footer_newsletter .fluentform fieldset {
    position: relative;
}

footer.main_footer .footer_wrap .footer_newsletter .fluentform fieldset .ff_submit_btn_wrapper {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

footer.main_footer .footer_wrap .footer_newsletter .ff_submit_btn_wrapper .ff-btn-submit {
    font-size: 0;
    background: #585149;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
    opacity: 1;
}

footer.main_footer .footer_wrap .footer_newsletter .ff_submit_btn_wrapper .ff-btn-submit::before {
    content: '';
    background-image: url('./images/newsletter_arrow.svg');
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(47%) saturate(0%) hue-rotate(48deg) brightness(110%) contrast(101%);
}

footer.main_footer .fluentform .ff-el-group {
    margin-bottom: 0;
} 

.copy {
    background: #585249;
    padding: 30px 0;
    position: relative;
}

.copy::before {
    content: '';
    background: #585249;
    position: absolute;
    width: 100%;
    height: 40px;
    top: -35px;
    z-index: -1;
}

.copy p,
.copy a {
    color: #e6e5e4;
}

.copy p {
    margin: 0;
    font-size: 14px;
}

.copy a {
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
    display: inline-block;
}


/* Main title */

.main_title {
    padding-top: 50px;
}

.main_title h1 {
    margin-bottom: 30px;
    font-size: 45px;
    font-weight: 400;
}



/* Login */


.logged-in .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 15%) minmax(0, 1fr);
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation li a {
    color: #333;
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.logged-in .woocommerce .woocommerce-MyAccount-content {
    margin-top: -15px;
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation,
.logged-in .woocommerce .woocommerce-MyAccount-content {
    padding-bottom: 50px;
}


.logged-in .woocommerce .woocommerce-MyAccount-content a {
    color: #333;
    text-decoration: underline;
}

.woocommerce-MyAccount-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label {
    display: block;
    margin-bottom: 10px;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper input {
    width: 100%;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper input,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper select,
.woocommerce-EditAccountForm input {
    padding: 10px;
    background-color: #f4f2f1;
    border: 1px solid #333;
}

.select2-container--default .select2-selection--single {
    background: #f4f2f1;
    border: 1px solid #333;
    border-radius: 0;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p {
    margin-bottom: 0;
}

.woocommerce-MyAccount-content .woocommerce-address-fields button,
.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-Button  {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: #171717;
    color: #fff;
    padding: 11px 27px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #171717;
    cursor: pointer;
    display: block;
    z-index: 1;
}

.woocommerce-MyAccount-content .woocommerce-address-fields button:hover,
.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-Button:hover {
    background: transparent;
    color: #171717;
}

.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button {
    display: inline;
}

.woocommerce-EditAccountForm label {
    display: block;
}

.woocommerce-EditAccountForm input {
    width: 50%;
    padding: 10px;
}

#account_display_name_description {
    display: block;
}

.logged-in .woocommerce .woocommerce-MyAccount-content fieldset {
    width: 50%;
}

.logged-in .woocommerce .woocommerce-MyAccount-content fieldset .password-input {
    display: flex;
}
 

.logged-in .woocommerce .woocommerce-MyAccount-content .show-password-input {
    position: relative;
    cursor: pointer;
}

.logged-in .woocommerce .woocommerce-MyAccount-content .show-password-input::before,
.woocommerce-account .password-input .show-password-input::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.logged-in .woocommerce .woocommerce-MyAccount-content .show-password-input.display-password::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'%3E%3C/path%3E%3Cline x1='1' y1='1' x2='23' y2='23'%3E%3C/line%3E%3C/svg%3E");
}

.no_page {
    background: #e1dcd8;
    padding: 100px 0;
    text-align: center;
}

.no_page h2 {
    font-size: 120px;
    line-height: 1;
    font-weight: 400;
    color: #333;
}

.no_page p {
    font-size: 23px;
    width: 40%;
    margin: 50px auto;
}

.no_page ul {
    display: flex;
    justify-content: center;
}
.no_page ul li {
    margin: 0 20px;
    width: 200px;
}

.bc_home {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    background: #171717;
    padding: 11px 27px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #171717;
    cursor: pointer;
    display: block;
    z-index: 1;
    color: #fff;
}


/* Simple pages */

.page-template-default .main_page {
    background: #e1dcd8;
    padding-bottom: 10px;
}

.page-template-default .main_title,
.page-template-default .wp-block-heading,
.page-template-default .wp-block-paragraph,
.page-template-default .wp-block-list {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-template-default .wp-block-list li {
    margin-bottom: 15px;
}

.page-template-default ol {
    padding: 0;
}

.page-template-default .wp-block-list ul,
.page-template-default .wp-block-list ol {
    margin: 0;
    padding: 0;
}

.page-template-default.woocommerce-cart .main_title,
.page-template-default.woocommerce-account .main_title,
.page-template-default.woocommerce-checkout .main_title {
    width: 100%;
}

.page-template-default .wp-block-paragraph a,
.page-template-default .wp-block-list a,
.page-template-default .wp-block-list a {
    color: #333;
    text-decoration: underline;
}

.page-template-default .wp-block-heading {
    font-weight: 500;
}



.page-template-default .wp-block-heading,
.page-template-default .wp-block-paragraph,
.page-template-default .wp-block-list  {
    color: #333;
}


/* My account */

.woocommerce-account .main_page #customer_login {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
    padding-bottom: 50px;
}

.woocommerce-account .main_page #customer_login .woocommerce-form label {
    display: block;
    margin-bottom: 5px;
}

.woocommerce-account .main_page #customer_login .woocommerce-form input {
    width: 100%;
    padding: 10px;
    background-color: #f4f2f1 !important;
    border: 1px solid #333;
}

.woocommerce-account .main_page #customer_login h2 {
    font-weight: 500;
}

.woocommerce-account .main_page #customer_login .woocommerce-form .form-row .woocommerce-form__input-checkbox {
    width: auto;
}

.woocommerce-account .main_page #customer_login .woocommerce-form button {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: #171717;
    padding: 11px 27px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #171717;
    cursor: pointer;
    display: block;
    z-index: 1;
    color: #fff;
    font-size: 15px;
    font-family: 'Jost';
}

.woocommerce-account .main_page #customer_login .woocommerce-form .password-input {
    display: flex;
}

.woocommerce-account .main_page #customer_login .woocommerce-form .password-input button {
    border-radius: 0;
    background: transparent;
    padding: 0 10px;
    border-radius: 0;
    background: transparent;
    margin-left: 5px;
}

.woocommerce-account .main_page .woocommerce-LostPassword.lost_password a,
.woocommerce-privacy-policy-text a {
    color: #333;
    text-decoration: underline;
}



/* RESPONSIVE */


@media only screen and (max-width: 1600px) {
    .pre-header {
        max-width: 80%;
    }
    .top_header {
        padding: 0;
    }
    .header_nav {
        padding: 5px 0;
    }

    .nav-menu ul li a {
        font-size: 16px;
    }

    .add_to_cart_button, .single_add_to_cart_button {
        padding: 10px 27px;
    }

    .no_page h2 {
        font-size: 80px;
    }

    .no_page p {
        font-size: 20px;
    }


    /* Product */

    .product-info-wrap {
        background: #fafafa;
        padding: 25px 20px 20px;
    }
    .product-info-wrap .woocommerce-loop-product__title {
        min-height: 60px;
        line-height: 1.3;
        font-size: 18px;
        width: 60%;
    }

    .product-info-wrap .product-brand {
        font-size: 10px;
    }

    .product-info-wrap .price bdi {
        font-size: 15px;
    }
    .product-info-wrap .price del bdi {
        font-size: 13px;
    }
    .product-info-wrap .price del {
        margin-top: 0;
    }

    footer.main_footer .footer_wrap .footer_phone a {
        font-size: 23px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .footer_news_top span {
        font-size: 35px;
    }

}


@media only screen and (max-width: 1300px) {
    .nav-menu ul.menu {
        gap: 32px;
    }
    .proizvodi-grid .carousel-header h2 {
        font-size: 35px;
    }
    .product-info-wrap .price {
        width: 40%;
    }
    .proizvodi-grid__list {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media only screen and (max-width: 992px) {
    /* Nav */

    .nav-menu ul.menu {
        gap: 13px;
    }
    .nav-menu ul li a {
        font-size: 15px;
    }
    .header_cart ul {
        gap: 10px;
    }
    /**/
    .product-info-wrap .price {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
    }
    .product-info-wrap .price del {
        margin-left: 10px;
    }
    .product-info-wrap .woocommerce-loop-product__title {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
    .footer-info .footer-info-wrap {
        display: inherit;
    }
    .footer-info .footer-info-wrap .footer-info__item,
    .footer-info .footer-info-wrap .footer-info__item:last-child {
       margin: 0 !important; 
    }
    .footer-info .footer-info-wrap .footer_desc {
        width: 100%;
        text-align: center;
         margin: 0 !important; 
    }
    .footer-info .footer-info-wrap .footer-info__item {
        display: inherit;
    }
    .footer-info__ikonica {
        text-align: center;
    }
    .footer-info .splide__pagination {
        position: static;
    }
    .footer-info .splide__pagination__page {
        background: #000;
        width: 7px;
        height: 7px; 
        border: 2px solid transparent;
    }
    .splide__pagination__page.is-active {
        transform: none;
    }
    .footer-info .splide__pagination__page.is-active {
        border: 2px solid #000;
    }
    .footer-info .splide__pagination li {
        margin: 0 3px;
    }
    footer.main_footer .footer_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
    }
    footer.main_footer .footer_wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    footer.main_footer .footer_wrap .footer_newsletter {
        padding: 0;
        margin-top: 50px;
    }
    .footer_newsletter .f_insta {
        margin-top: 20px;
    }
    footer.main_footer .footer_wrap .footer_links {
        border-right: none;
    }
    .qv-modal {
        width: 95%;
    }

    .main_title h1 {
        font-size: 40px;
    }
    .logged-in .woocommerce .woocommerce-MyAccount-navigation {
        padding-right: 40px;
    }
    .logged-in .woocommerce {
        grid-template-columns: minmax(0, 25%) minmax(0, 1fr);
    }
    .no_page p {
        font-size: 20px;
        width: 65%;
    }  
    .woocommerce-account .main_page #customer_login {
        grid-template-columns: 1fr;
    }
    .woocommerce-account .main_page #customer_login .woocommerce-form button {
        margin-top: 15px;
    }
    .woocommerce-account .main_page #customer_login .woocommerce-form .password-input button {
        margin-top: 0;
    }
    .woocommerce-account .main_page #customer_login h2 {
        font-size: 21px;
    }


}

@media only screen and (max-width: 768px) {

    /* Search */

    .search_field {
        width: 55%;
    }

    /* Top header */

    .pre-header .splide__slide p {
        white-space: nowrap;
    }

    .top_header {
        overflow: hidden;
    }
    .top_header .top_header_wrap {
        display: inline-block;
    }
    .top_header_wrap .insta_link {
        display: none;
    }
    .top_header .top_header_wrap {
        display: flex;
        align-items: center;
    }

    .pre-header {
        max-width: 100%;
    }

    /* nav */

    /**/
    .mob-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 100;
        padding: 30px 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        height: 80vh;
        overflow-y: auto;
    }

    .mob-nav.nav_open {
        transform: translateY(0);
    }

    .mob-nav .nav-menu ul li a {
        font-size: 22px;
        font-weight: 400;
    }


    .mob-nav .nav-menu ul li .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        z-index: 1;
        display: none;
        min-width: 100%;
        padding: 10px 20px;
        border-radius: 0;
    }


    .mob-nav .nav-menu ul li.menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .mob-nav .nav-menu ul li.menu-item-has-children > a::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-bottom: 3px;
    }

    .mob-nav .nav-menu ul li.menu-item-has-children.open > a::after {
        transform: rotate(-135deg);
        margin-bottom: -3px;
    }

    .mob-nav {
        padding-bottom: 80px;
    }

    .mob_nav_link {
        display: none;
        align-items: center;
        justify-content: space-between;
        background: #fafafa;
        position: fixed;
        bottom: -100px;
        left: 0;
        right: 0;
        padding: 20px;
        z-index: 101;
        border-top: 1px solid #f0f0f0;
        transition: bottom 0.4s ease-in-out;
    }

    .mob_nav_link.nav_open {
        display: flex;
        bottom: 0;
    }

    .mob_nav_link a svg {
        color: #333;
        width: 20px;
        height: 20px;
    }

    .mob_nav_link a:first-child {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        background: #171717;
        color: #fff;
        padding: 7px 27px;
        border-radius: 40px;
        font-size: 15px;
        text-decoration: none;
        border: 2px solid #171717;
        cursor: pointer;
        display: block;
    }


    /**/

    .menu .nav-menu #menu-glavni-meni {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .nav-menu ul li {
        padding: 0;
        width: 100%;
    }

    .nav-menu ul.menu {
        justify-content: flex-start;
    }

    .menu {
        width: 100%;
    }

    .mob-button {
        display: block;
    }

    .header_nav .logo img {
        width: 95px;
        height: auto; 
    }

    .header_cart ul li svg {
        width: 20px;
    }

    .header_cart li.my_account {
        display: none;
    }

    .header_nav {
        padding: 12px 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .header_cart ul {
        gap: 10px;
    }

    .toggle-menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: inline-block;
        outline: none;
        padding: 0;
        pointer-events: initial;
        position: relative;
        vertical-align: middle;
        width: 30px;
        z-index: 10;
    }

    .toggle-menu span {
        background-color: #000;
        content: "";
        display: block;
        height: 2px;
        left: calc(50% - 13px );
        position: absolute;
        top: calc(50% - 1px );
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
        width: 21px;
    }

    .toggle-menu span:before, .toggle-menu span:after {
        background-color: #000;
        content: "";
        display: block;
        height: 2px;
        position: absolute;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  -webkit-transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
        transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear, -webkit-transform 0.2s linear;
        width: 21px;
    }

    .toggle-menu span:before {
      top: 7px;
    }

    .toggle-menu span:after {
      top: -7px;
    }

    .toggle-menu.active span {
        background-color: transparent;
        transition: background 0.2s ease-out;
    }


    .toggle-menu.active span:before, .toggle-menu.active span:after {
        transition: top 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
        transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
        transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out, -webkit-transform 0.2s 0.2s ease-out;
        background: #000;
    }

    .toggle-menu.active span:before {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
    }

    .toggle-menu.active span:after {
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
    }

    /*  */

    .trenuci-inspirisu h2, 
    .cistoca-inspirise__wrap h2, 
    .nas-pristup .nas-pristup__header h2, 
    .korisnici .korisnici__header h2, 
    .korisnici .korisnici__header p, 
    .vise-od-nege .vise-od-nege__content h2, 
    .nase-vrednosti .vrednosti-content h2, 
    .proizvodi-grid .carousel-header h2 {
        font-size: 35px;
    }

    .proizvodi-grid .tabs {
        margin-top: 20px;
    }

    .product-image-wrap .onsale {
        top: 10px;
        left: 20px;
    }

    .qv-inner {
        min-height: 380px;
    }

    .qv-kartica img {
        width: 65px;
        height: 65px;
    }
    .qv-modal__wrap .qv-price del {
        font-size: 13px;
    }
    .add_to_cart_button, .single_add_to_cart_button {
        padding: 7px 18px;
    }
    .qv-kartica {
        flex-wrap: wrap;
    }
    .qv-kartica .add_to_cart_button {
        width: 100%;
        text-align: center;
    }

    .qv-modal__wrap .qv-modal__close {
        top: 10px;
        right: 10px;
    }

    .no_page p {
        font-size: 18px;
    }

    .no_page h2 {
        font-size: 60px;
    }


}


@media only screen and (max-width: 600px) {

    .main_header {
        border-bottom: 1px solid #f2f2f2;
        position: sticky;
        z-index: 5;
        top: 0;
    }

    .archive .main_header {
        border-bottom: none;
    }

    .main_header_active::after {
        content: '';
        display: block;
        background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
        width: 100%;
        height: 100px;
    }

    /* Search */

    .search_field {
        width: 85%;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        padding: 15px;
    }

    .search_field .close_search {
        padding: 15px;
    }

    .close_search svg {
        width: 40px;
        height: 40px;
    }

    /* header slide */

    .splide__slide.pre-header__slide p {
        white-space: nowrap;
        font-size: 13px;
        margin: 8px 0;
    }


    .container, .woocommerce-message,
    .proizvodi-grid .carousel-header {
        padding: 0 20px;
    }
    .korisnici__lista .korisnici__kartica p {
        font-size: 16px;
    }
    footer.main_footer .footer_wrap .footer_links #menu-footer-links, 
    footer.main_footer .footer_wrap .footer_links #menu-footer-info {
        padding: 0 20px 10px;
    }
    footer.main_footer .footer_wrap .footer_links .links_nav,
    footer.main_footer .info_nav {
        width: 100%;
        border: 1px solid #b2ada9;
    }
    footer.main_footer .footer_wrap .footer_links #menu-footer-links a, 
    footer.main_footer .footer_wrap .footer_links #menu-footer-info a {
        font-size: 14px;
    }
    footer.main_footer .footer_wrap .footer_links .links_nav {
        border-bottom: none;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    footer.main_footer .info_nav {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .links_nav .footer-links-menu,
    .info_nav .footer-info-menu {
        display: none;
    }
    footer.main_footer .footer_wrap .footer_links span {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 400;
        padding: 15px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    footer.main_footer .footer_wrap .footer_links .footer_phone {
        margin-top: 30px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .logo img {
        height: 40px;
    }
    .links_nav span::after,
    .info_nav span::after {
        content: '';
        width: 7px;
        height: 7px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-bottom: 3px;
    }
    .links_nav span.active::after,
    .info_nav span.active::after {
        transform: rotate(-135deg);
        margin-bottom: -3px;
    }
    footer.main_footer {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .footer_newsletter .footer_news_top span {
        font-size: 23px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .footer_news_top span {
        font-size: 25px !important;
    }
    footer.main_footer .footer_wrap .footer_newsletter .logo img {
        height: 40px;
    }
    .copy p {
        text-align: center;
    }
    .copy a {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    footer.main_footer .footer_wrap .footer_newsletter {
        margin-top: 30px;
        border-top: 1px solid #b2ada9;
        padding-top: 40px;
    }
    footer.main_footer .footer_wrap .footer_phone a {
        font-size: 18px;
    }
    .top_footer_wrap {
        display: none;
    }
    .footer-info {
        border-top: 1px solid #ccc8c5;
        padding: 50px 0 50px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .fluentform {
        width: 100%;
    }

    .qv-info {
        gap: 0px;
        padding: 30px 15px;
    }
    .qv-inner {
        min-height: inherit;
        grid-template-columns: 1fr;
    }
    .qv-insta {
        border-top: 0;
    }
    .qv-gallery img {
        object-fit: contain;
        height: 200px;
    }
    .qv-modal__nav {
        width: 100%;
    }

    .qv-kartica__info h3 {
        padding-right: 10px;
    }

    /* btn */

    .add-to-cart-wrap {
        opacity: 1;
        transform: none;
        right: 10px; 
        left: auto;
    }

    .add-to-cart-wrap {
        margin-bottom: 65px;
    }

    .kol-section .add-to-cart-wrap {
        margin-bottom: 10px;
        right: 5px;
    }

    .product:hover .add-to-cart-wrap {
        transform: none;
    }

    .proizvodi-grid .add-to-cart-wrap  {
        margin-bottom: 50px;
    }

    .add-to-cart-wrap a {
        padding: 0;
        font-size: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .add-to-cart-wrap a::before {
        content: '';
        background: url(./images/cart-btn.svg);
        background-size: contain;
        width: 22px;
        height: 22px;
        display: inline-block;
        filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(0%) hue-rotate(85deg) brightness(110%) contrast(104%);
    }

    .logged-in .woocommerce {
        grid-template-columns: 1fr;
    }

    .main_title h1 {
        font-size: 30px;
    }

    .main_title {
        padding-top: 20px;
    }

    .logged-in .woocommerce .woocommerce-MyAccount-content {
        margin-top: 0;
    }
    .logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button {
        display: inline-block;
        margin-top: 10px;
    }
    .logged-in .woocommerce .woocommerce-MyAccount-navigation {
        padding-right: 0;
    }
    .logged-in .woocommerce .woocommerce-MyAccount-navigation {
        padding-right: 0;
        padding-bottom: 20px;
    }
    .woocommerce-MyAccount-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .woocommerce-MyAccount-content .u-column1.col-1.woocommerce-Address {
        margin-bottom: 30px;
    }

    .woocommerce-MyAccount-content .woocommerce-Address h2 {
        font-weight: 500;
        font-size: 20px;
    }
    .woocommerce-EditAccountForm input,
    .logged-in .woocommerce .woocommerce-MyAccount-content fieldset {
        width: 100%;
    }

    /* cart - checkout */

    .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
        display: block;
    }
    .wp-block-woocommerce-checkout {
        padding-top: 0;
    }
    .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
        margin-top: 0;
    }
    .wp-block-woocommerce-checkout {
        padding-bottom: 30px;
    }

    /* 404 */

    .no_page h2 {
        font-size: 40px;
    }

    .no_page p {
        font-size: 16px;
        width: 95%;
    }

    .no_page ul {
        flex-wrap: wrap;
    }

    .no_page ul li {
        width: 100%;
        margin: 10px 0;
    }

    .no_page {
        padding: 50px 0 50px;
    }

    .no_page p {
        margin: 30px auto; 
    }
    .signature {
        text-align: center;
        padding: 7px 0;
    }


}









