/*
* Theme name: Vesna
* Author name: Vesna Agency
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --heading-font-family: "Montserrat", sans-serif;
  --body-font-family: "Montserrat", sans-serif;
  --black: #000;
  --black-80: rgba(0, 0, 0, 0.8);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-30: rgba(0, 0, 0, 0.3);
  --green: #008080;
  --light-green: #d9ecec;
  --white: #fff;
}


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /*reset for mobile browsers */
  font-weight: normal;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  font-size: calc(10.67px + 5.33 * ((100vw - 960px) / 480));
}

.container {
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

section.wrapper {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

section.wrapper--large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media screen and (max-width: 959px) {
  html {
    font-size: calc(14.66px + 1.34 * ((100vw - 360px) / 33));
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  section.wrapper,
  section.wrapper--large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

svg path {
  fill: inherit;
  stroke: inherit;
}

body {
  min-width: 360px;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-weight: normal;
  font-style: normal;
}

/* HEIGHT & WIDTH */
.h--full {
  height: 100%;
}

.w-full {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .w-full--mobile {
    width: 100%;
  }
}

/* FLEX CLASSES */
.flex {
  display: flex;
}
.flex.flex--row {
  flex-direction: row;
}
.flex.flex--column {
  flex-direction: column;
}
.flex.items--center {
  justify-content: center;
  align-items: center;
}
.flex.align--start {
  align-items: flex-start;
}
.flex.align--center {
  align-items: center;
}
.flex.align--end {
  align-items: flex-end;
}
.flex.justify--start {
  justify-content: flex-start;
}
.flex.justify--center {
  justify-content: center;
}
.flex.justify--end {
  justify-content: flex-end;
}
.flex.justify--between {
  justify-content: space-between;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
.flex.flex--grow {
  flex-grow: 1;
}

@media screen and (max-width: 959px) {
  .flex.flex--row--mobile {
    flex-direction: row;
  }
  .flex.flex--row-reverse--mobile {
    flex-direction: row-reverse;
  }
  .flex.flex--column--mobile {
    flex-direction: column;
  }
  .flex.items--center--mobile {
    justify-content: center;
    align-items: center;
  }
  .flex.align--start--mobile {
    align-items: flex-start;
  }
  .flex.align--center--mobile {
    align-items: center;
  }
  .flex.align--end--mobile {
    align-items: flex-end;
  }
  .flex.justify--start--mobile {
    justify-content: flex-start;
  }
  .flex.justify--center--mobile {
    justify-content: center;
  }
  .flex.justify--end--mobile {
    justify-content: flex-end;
  }
  .flex.justify--between--mobile {
    justify-content: space-between;
  }
  .flex.wrap--mobile {
    flex-wrap: wrap;
  }
  .flex.nowrap--mobile {
    flex-wrap: nowrap;
  }
}

/* SPACING */
.gap--4 {
  gap: 4px;
}

.gap--8 {
  gap: 0.5rem;
}

.gap--12 {
  gap: 0.75rem;
}

.gap--16 {
  gap: 1rem;
}

.gap--20 {
  gap: 1.25rem;
}

.gap--32 {
  gap: 2rem;
}

.gap--40 {
  gap: 2.5px;
}

.gap--48 {
  gap: 3rem;
}

.gap--64 {
  gap: 4rem;
}

@media screen and (max-width: 959px) {
  .gap--4--m {
    gap: 4px;
  }

  .gap--8--m {
    gap: 0.5rem;
  }

  .gap--12--m {
    gap: 0.75rem;
  }

  .gap--16--m {
    gap: 1rem;
  }

  .gap--20--m {
    gap: 1.25rem;
  }

  .gap--32--m {
    gap: 2rem;
  }

  .gap--40--m {
    gap: 2.5rem;
  }

  .gap--48--m {
    gap: 3rem;
  }

  .gap--64--m {
    gap: 4rem;
  }
}

/*MARGIN*/
.mb--8 {
  margin-bottom: 0.5rem;
}

.mb--20 {
  margin-bottom: 1.25rem;
}

.mb--24 {
  margin-bottom: 24px;
}

.mb--32 {
  margin-bottom: 2rem;
}

.mb--36 {
  margin-bottom: 2.25rem;
}

.mb--40 {
  margin-bottom: 40px;
}

.mb--48 {
  margin-bottom: 3rem;
}

.mb--64 {
  margin-bottom: 64px;
}

.mt--40 {
  margin-top: 40px;
}

/* --- MARGINS --- */
/* Top */
.mt--8 {
  margin-top: 0.5rem;
}
.mt--16 {
  margin-top: 1rem;
}
.mt--24 {
  margin-top: 1.5rem;
}
.mt--32 {
  margin-top: 2rem;
}
.mt--40 {
  margin-top: 2.5rem;
}
.mt--48 {
  margin-top: 3rem;
}
.mt--64 {
  margin-top: 4rem;
}

/* Bottom */
.mb--8 {
  margin-bottom: 0.5rem;
}
.mb--16 {
  margin-bottom: 1rem;
}
.mb--24 {
  margin-bottom: 1.5rem;
}
.mb--32 {
  margin-bottom: 2rem;
}
.mb--40 {
  margin-bottom: 2.5rem;
}
.mb--48 {
  margin-bottom: 3rem;
}
.mb--64 {
  margin-bottom: 4rem;
}

/* Left */
.ml--8 {
  margin-left: 0.5rem;
}
.ml--16 {
  margin-left: 1rem;
}
.ml--24 {
  margin-left: 1.5rem;
}
.ml--32 {
  margin-left: 2rem;
}

/* Right */
.mr--8 {
  margin-right: 0.5rem;
}
.mr--16 {
  margin-right: 1rem;
}
.mr--24 {
  margin-right: 1.5rem;
}
.mr--32 {
  margin-right: 2rem;
}

/* --- PADDINGS --- */
/* All sides */
.p--16 {
  padding: 1rem;
}
.p--24 {
  padding: 1.5rem;
}
.p--32 {
  padding: 2rem;
}
.p--48 {
  padding: 3rem;
}

/* Top & Bottom (Vertical) */
.py--16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py--24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py--32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py--48 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py--64 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Left & Right (Horizontal) */
.px--16 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px--24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px--32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* --- MOBILE ADAPTIVE (max-width: 959px) --- */
@media screen and (max-width: 959px) {
  /* Margins Mobile */
  .mt--0--m {
    margin-top: 0 !important;
  }
  .mt--16--m {
    margin-top: 1rem;
  }
  .mt--24--m {
    margin-top: 1.5rem;
  }
  .mt--32--m {
    margin-top: 2rem;
  }

  .mb--16--m {
    margin-bottom: 1rem;
  }
  .mb--24--m {
    margin-bottom: 1.5rem;
  }
  .mb--32--m {
    margin-bottom: 2rem;
  }

  /* Paddings Mobile */
  .p--16--m {
    padding: 1rem;
  }
  .p--24--m {
    padding: 1.5rem;
  }

  .py--24--m {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py--32--m {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .px--16--m {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* HEADINGS */
.heading {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 600;
  line-height: 112.5%;
  letter-spacing: -0.05rem;
}

.heading strong {
  color: var(--green);
  font-weight: 600;
}

.heading-1 {
  font-size: 5rem;
  line-height: 96%;
}

.heading-2 {
  font-size: 4rem;
}

.heading-3 {
  font-size: 2.5rem;
}

.heading-4 {
  font-size: 1.75rem;
}

.heading-5 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* TEXT */
.text {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.text.text--large {
  font-size: 1.25rem;
}

.text.text--medium {
  font-size: 1rem;
}

.text.text--small {
  font-size: 0.875rem;
}

.text--center {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .heading-1,
  .heading-1--mobile {
    font-size: 3.5rem;
  }

  .heading-2,
  .heading-2--mobile {
    font-size: 2.5rem;
  }

  .heading-3,
  .heading-3--mobile {
    font-size: 1.75rem;
  }

  .heading-5,
  .heading-5--mobile {
    font-size: 1.25rem;
  }

  .heading-6,
  .heading-6--mobile {
    font-size: 1.125rem;
  }

  .text.text--large {
    font-size: 1.125rem;
  }

  .text.text--medium {
    font-size: 1rem;
  }

  .text.text--small {
    font-size: 0.875rem;
  }
}

/* COLORS */
.color--white {
  color: var(--white);
}
.color--black {
  color: var(--black);
}
.color--black-80 {
  color: var(--black-80);
}
.color--black-40 {
  color: var(--black-40);
}
.color--black-30 {
  color: var(--black-30);
}

/* BORDER RADIUS */
.br--20 {
  border-radius: 1.25rem;
}
.br--24 {
  border-radius: 1.5rem;
}
.br--32 {
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .br--16--m {
    border-radius: 1rem;
  }
  .br--20--m {
    border-radius: 1.25rem;
  }
  .br--24--m {
    border-radius: 1.5rem;
  }
  .br--32--m {
    border-radius: 2rem;
  }
}

/* BUTTON */
.btn {
  /* GENERAL STYLES FOR ALL BUTTONS */
}

.btn.btn--primary {
  /* STYLES FOR SPECIFIC BUTTON STYLE*/
}

/* ICON */


/* MEDIA */
.media {
  position: relative;
  overflow: hidden;
}

.media img,
.media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM */
form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}


form .form__terms {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

form .form__terms a {
  font-weight: 700;
  color: var(--white);
}

@media screen and (max-width: 959px) {
  form .form__bottom p {
    width: 100%;
    text-align: center;
  }

  form .form__bottom input[type="submit"] {
    width: 100%;
  }
}

.wpcf7 {
  position: relative;
}

.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form.invalid input:not([type="submit"]):not([type="button"]) {
  border-color: #ff0000;
}

section .wpcf7 form.sent .wpcf7-response-output {
  margin-left: 0px;
  margin-right: 0px;
  background-color: var(--green);
  border-color: var(--green);
  border-radius: 1rem;
  padding: 1rem;
}

/* HEADER */
.site-header {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 3.75rem; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1; 
}

.site-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.site-logo .logo-text {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2.2px; 
    color: #000000;
    line-height: 1;
    text-transform: uppercase;
}

.site-logo img {
    display: block;
    height: auto;
    max-height: 30px;
}

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

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px; 
}

.main-menu li {
    display: block;
}

.main-menu li a:hover {
    opacity: 0.5; 
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px; 
    flex: 1;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.lang-selector .lang-current {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #000000;
}

.lang-selector .lang-icon-arrow {
    display: block;
    transition: transform 0.2s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px; 
}
.header-actions svg{
  width: 1.5rem;
  height: 1.5rem;
}
.action-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    transition: opacity 0.2s ease;
}

.action-btn svg {
    display: block;
    stroke: #000;
}

.action-btn:hover {
    opacity: 0.5;
}
.header-center {
    position: relative;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    font-size: 0.6875rem;
    text-wrap: nowrap;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}


.mega-menu-products {
    position: fixed;
    top: 3.75rem;
    left: 23.5rem;

    background: #fff;

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

    border-top: 1px solid #ececec;

    z-index: 100;
}

.main-menu > li:hover .mega-menu-products {
    opacity: 1;
    visibility: visible;
}

.mega-menu-products__inner {
    margin: 0 auto;

    display: flex;
}

.mega-menu-products__categories {

    padding: 1.25rem;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mega-menu-products__link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #000;
    text-decoration: none;

    transition: .2s;
}

.mega-menu-products__link:hover {
    opacity: .6;
}

.mega-menu-products__image {
    flex: 1;
    background: #f3f3f3;
}
@media (max-width: 1024px) {
    .hide-desktop {
        display: flex !important;
    }
    .hide-mobile {
        display: none !important;
    }
    
    .header-container {
        padding: 16px 20px;
    }
    
    .header-left, .header-right {
        flex: initial; 
    }
    
    .site-logo .logo-text {
        font-size: 22px; 
    }
    
    .header-actions {
        gap: 16px; 
    }
}

/* FOOTER */
.site-footer-wrapper {
    width: 100%;
    background-color: #000000; 
    box-sizing: border-box;
    padding: 70px 0 60px 0;
}

.site-footer {
    max-width: 100%;
    padding: 0 50px; 
    margin: 0 auto;
    box-sizing: border-box;
}

.site-footer .unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__logo-container {
    margin-bottom: 75px; 
}

.footer__logo-text {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #ffffff; 
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

.site-footer .grid {
    display: flex;
    flex-wrap: wrap;
}

.site-footer .grid__item {
    box-sizing: border-box;
}

.large-up--one-quarter {
    width: 25%;
}

.footer__block__title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff; 
    margin: 0 0 24px 0;
}

.footer__quicklinks li {
    margin-bottom: 12px;
}

.footer__quicklinks li a {
    font-size: 13.5px;
    font-weight: 400;
    color: #cccccc; 
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.footer__quicklinks li a:hover {
    color: #ffffff; 
}

.footer__newsletter__text p {
   font-size: 13.5px;
    line-height: 1.5;
    color: #cccccc;
    margin: 0 0 24px 0;
    max-width: 340px;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    border: 1px solid #ffffff; 
    max-width: 380px;
    height: 48px; 
}

.input-group-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: #ffffff;
    padding: 0 16px;
}

.input-group-field::placeholder {
    color: #888888;
}

.newsletter-form .btn {
    background: #ffffff;
    border: none;
    outline: none;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000; 
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    transition: background-color 0.2s, color 0.2s;
}

.newsletter-form .btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-left: 1px solid #ffffff;
}

.footer__secondary {
    width: 100%;
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid #222222; 
}

.footer__copyright {
    display: flex;
    gap: 30px;
}

.footer__copyright li a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666666; 
    text-decoration: none;
    transition: color 0.2s;
}

.footer__copyright li a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .medium--one-half {
        width: 50%;
    }
    .footer__block {
        margin-bottom: 45px;
    }
    .site-footer {
        padding: 0 30px;
    }
    .footer__logo-container {
        margin-bottom: 50px;
    }
}

@media (max-width: 640px) {
    .medium--one-half {
        width: 100%;
    }
    .footer__block {
        margin-bottom: 40px;
    }
    .site-footer {
        padding: 0 20px;
    }
    .newsletter-form {
        max-width: 100%;
    }
    .footer__secondary {
        margin-top: 40px;
    }
    .footer__copyright {
        flex-direction: column;
        gap: 12px;
    }
}
@media screen and (min-width: 960px) {
  .hide-desktop {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .hide-mobile {
    display: none;
  }
}

.burger-menu{
  display: none;
}
