/*
* Theme name: Vesna
* Author name: Vesna Agency
* Text Domain: lilimager
* Domain Path: /languages
*/
@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;
	letter-spacing: -0.02em;
}

/* 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;
}

/* 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;
}
.text--uppercase {
  text-transform: uppercase;
}

@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 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #000000;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.25s ease;
    border: none;
}

.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 3.75rem; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

@media screen and (min-width: 960px) {
  .site-header nav a{
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  } 

  .site-header nav .sub-menu a{
    min-height: auto;
  }
}

.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: 1rem;
}

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

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

.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;
}
.select-l{
    display: flex;
    gap: 1rem;
    margin-left: 2.5rem;
}

.wpml-ls-legacy-dropdown{
  width: auto;
}

.wpml-ls-legacy-dropdown a{
  padding: 0;
  font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{
  display: flex;
  gap: 0.5rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{
  position: static;
  width: 8.5px !important;
  height: 6px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23000000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border: none !important;
}

.wcml-dropdown li:hover, 
.wcml-dropdown li:focus,
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a, 
.wpml-ls-legacy-dropdown a:focus, 
.wpml-ls-legacy-dropdown a:hover{
  background-color: transparent;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu,
.wcml-dropdown .wcml-cs-submenu{
  top: 100%;
  left: 0;
  width: max-content;
  background: #fff;
  border-top: 1px solid #ececec;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu li,
.wcml-dropdown .wcml-cs-submenu li{
  padding: 0.5rem 1.25rem;
  border: none;
  display: flex;
  flex-direction: column;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu li:hover,
.wcml-dropdown .wcml-cs-submenu li:hover{
  background-color: transparent;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a,
.wcml-dropdown .wcml-cs-submenu li a{
  min-height: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a:hover,
.wcml-dropdown .wcml-cs-submenu li a:hover{
  background-color: transparent;
  opacity: 0.6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
}
.header-actions svg{
  width: 1rem;
  height: 1rem;
}
.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;
}

@media screen and (max-width: 960px){
	.header-actions svg{
		width: 1.375rem;
    	height: 1.375rem;
	}
}

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

.main-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-menu > li > a {
    font-size: 0.675rem;
    text-wrap: nowrap;
    font-weight: 500;
	line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}


.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: max-content;

    background: #fff;

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

	display: flex;
	flex-direction: column;
    border-top: 1px solid #ececec;

    z-index: 100;
}

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

.main-menu .sub-menu li{

    padding: 0.5rem 1.25rem;

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

.main-menu .sub-menu a {
    font-size: 0.675rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: uppercase;

    color: #000;
    text-decoration: none;

    transition: .2s;
}

.main-menu .sub-menu a:hover {
    opacity: .6;
}

.mega-menu-products__image {
    flex: 1;
    background: #f3f3f3;
}

.burger-icon .line {
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center; 
}

.mobile-burger-btn.is-open .line-top {
  transform: translateY(4px) rotate(45deg);
}

.mobile-burger-btn.is-open .line-middle {
  opacity: 0;
}

.mobile-burger-btn.is-open .line-bottom {
  transform: translateY(-5px) rotate(-45deg);
  stroke: #000;
}

.mobile-burger-btn svg {
  pointer-events: none;
}
@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; 
    }
    
    .header-actions {
        gap: 0.5rem; 
    }
}

/* 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: grid;
    grid-template-columns: repeat(4, 1fr);
}

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

footer .contact-form br{
  display: none;
}

footer .newsletter-form > p{
  display: flex;
  width: 100%;
}

.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; 
    height: 3rem; 
}

.newsletter-form .input-group-field {
    flex: 1;
    width: 100%;
    
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.8125rem;
    color: #ffffff;
    padding: 0 1rem;
    height: 2.875rem;
}

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

.newsletter-form .btn {
    background: #ffffff;
    border: none;
    outline: none;
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #000000 !important; 
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    transition: opacity 0.2s;
}

.newsletter-form .btn:hover {
   opacity: 0.6;
}

form .newsletter-form .wpcf7-form-control-wrap{
  width: auto;
  flex: 1 1 0;
  height: auto;
}

.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;
}
.footer__logo-text img{
    filter: invert(1) brightness(2);
}
@media (max-width: 1024px) {
    .site-footer .grid {
		grid-template-columns: repeat(2, 1fr);
	}
    .footer__block {
        margin-bottom: 45px;
    }
    .site-footer {
        padding: 0 30px;
    }
    .footer__logo-container {
        margin-bottom: 50px;
    }
	.newsletter-form{
		height: 2.5rem;
	}
	.newsletter-form .btn,
	.newsletter-form .input-group-field {
		padding: 0 0.5rem;
		font-size: 0.5rem;
		font-weight: 500;
		height: 2.5rem;
	}
}

@media (max-width: 640px) {
    .site-footer .grid {
		grid-template-columns: repeat(1, 1fr);
	}
    .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 !important;
  }
}

@media screen and (max-width: 959px) {
  .hide-mobile {
    display: none;
  }
}
body .woocommerce form .form-row .input-text, 
body .woocommerce form .form-row select{
    width: 100%;
    height: 3rem;
    border: 0.0625rem solid #D1D5DB;
    padding: 0 1rem;
    font-size: 0.9375rem;
    color: #000;
    background-color: #fff;
    box-shadow: none;
    box-sizing: border-box;
    border-radius: 0;
}
/*search*/
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, background-color 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    pointer-events: none;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay.has-results {
    background-color: #ffffff;
}

.search-overlay__header {
    position: relative;
    padding: 0 2.5rem 1.875rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-results-meta {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    color: #767676;
    margin-bottom: 0.9375rem;
    height: 0.875rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.search-overlay.has-results .search-results-meta {
    opacity: 1;
}

.search-form-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
}

.search-input-icon {
    position: absolute;
    left: 0.625rem;
    fill: #000;
}

#site-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.75rem 3.125rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: transparent;
}

.search-close-icon {
    position: absolute;
    right: 0.625rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay__body {
    width: 100%;
    padding: 0;
    background: #ffffff;
    display: none;
}

.search-overlay.has-results .search-overlay__body,
.search-overlay.is-loading .search-overlay__body {
    display: block;
}

.search-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.125rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .search-products-grid { grid-template-columns: repeat(2, 1fr); }
}

.search-product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    text-decoration: none;
    color: #000000;
    transition: opacity 0.2s ease;
}
.search-product-card:hover { opacity: 0.9; }

.search-product-image-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4; 
}
.search-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-product-info { padding: 20px 15px 30px; }
.search-product-title {
    font-size: 0.8125rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}
.search-product-price { font-size: 13px; font-weight: 500; }

.search-loading-spinner {
    width: 1.875rem;
    height: 1.875rem;
    border: 2px solid #e8e8e8;
    border-top: 2px solid #000000;
    border-radius: 50%;
    margin: 3.75rem auto;
    animation: search-spin 0.8s linear infinite;
}
@keyframes search-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 1.25rem;
    font-size: 0.875rem;
    color: #767676;
    letter-spacing: 0.5px;
}

.wcml-dropdown{
  width: auto;
  letter-spacing: -0.01em;
}

.wcml-dropdown a.wcml-cs-item-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  gap: 0.5rem;
  padding: 0;
}
.wcml-dropdown a.wcml-cs-item-toggle:after {
    content: "" !important; 
    position: static; 
    width: 8.5px !important; 
    height: 6px !important; 
    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23000000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important; 
    
    background-size: contain !important; 
    background-repeat: no-repeat !important; 
    background-position: center !important; 
    border: none !important;
}

@media screen and (max-width: 959px) {
  .wcml-dropdown a.wcml-cs-item-toggle{
    justify-content: flex-start;
  }
}