@charset "UTF-8";
:root {
  font-size: 62.5%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font: 400 1.6rem/1.3 "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff !important;
}

main {
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-underline-offset: 0.18em;
  transition: all 0.33s ease-in;
}

.site-main {
  width: 100%;
}

.entry-header,
.archive-header,
.site-main > article:not(.page),
.site-main > .navigation,
.woocommerce-content,
.container {
  width: calc(100% - 48px);
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
}

@media (max-width: 781px) {
  .wp-block-group {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
@media (max-width: 480px) {
  .wp-block-group {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
.site-header {
  padding-inline: 24px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2020;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  min-height: 88px;
  margin-inline: auto;
  position: relative;
}

.site-branding a {
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.site-branding a img {
  max-width: 15rem;
  height: auto;
  display: block;
}

.primary-navigation a {
  text-decoration: none;
  color: var(--wp--preset--color--black);
}

/*
.primary-navigation {
    ul {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    a {
        color: var(--wp--preset--color--black);
        font-weight: 600;
        text-decoration: none;
    }

    .sub-menu {
        display: grid;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding: 2.4rem;
        gap: 2.4rem;
        display: none;
    }
}*/
.topbar {
  background-color: var(--wp--preset--color--blue);
  color: #fff;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  font-weight: 300;
}
.topbar .container {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
}
.topbar .container a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}
.topbar .container .topbar-contact {
  gap: 2.4rem;
  display: flex;
}
.topbar .container .topbar-text::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--wp--preset--color--orange);
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.topbar .container .topbar-text {
  color: color-mix(in srgb, var(--wp--preset--color--blue) 80%, white 50%);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 1.3rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--wp--preset--color--light-gray);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.round-btn:hover {
  color: var(--wp--preset--color--orange);
  border-color: var(--wp--preset--color--orange);
}
.round-btn svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

body.menu-open {
  overflow: hidden;
}

.header__inner {
  position: relative;
}

.primary-navigation {
  margin-left: auto;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu-main-menu > .menu-item-has-children {
  display: flex;
  align-items: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu li {
  position: relative;
}

.primary-menu > li > a {
  display: block;
  padding: 35px 30px 35px 12px;
  color: var(--ink, #101820);
  font-size: 15px;
  font-weight: 500;
}

.primary-menu > li:hover > a,
.primary-menu > li.is-open > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--copper-dark, #984718);
}

.submenu-toggle {
  position: relative;
  top: 50%;
  left: -23px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
}

.submenu-toggle svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.2s ease;
}

.menu-item.is-open > .submenu-toggle svg {
  transform: rotate(180deg);
}

.mobile-navigation-header,
.mobile-menu-back {
  display: none;
}

/* Običan dropdown */
.primary-menu > .menu-item--dropdown > .sub-menu {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  width: 270px;
  padding: 10px 0;
  border: 1px solid var(--line, #c9d0cc);
  background: #fff;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.primary-menu > .menu-item--dropdown:hover > .sub-menu,
.primary-menu > .menu-item--dropdown:focus-within > .sub-menu,
.primary-menu > .menu-item--dropdown.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-item--dropdown > .sub-menu > li > a {
  display: block;
  padding: 10px 17px;
  color: var(--steel, #57636c);
  font-size: 13px;
}

.menu-item--dropdown > .sub-menu > li > a:hover {
  color: var(--copper-dark, #984718);
  background: var(--paper, #eef1ef);
}

/* Mega meni */
.primary-menu > .menu-item--mega {
  position: static;
}

.primary-menu > .menu-item--mega > .sub-menu {
  position: absolute;
  z-index: 100;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 32px 28px 25px;
  border-top: 1px solid var(--line, #c9d0cc);
  border-bottom: 1px solid var(--line, #c9d0cc);
  background: #fff;
  box-shadow: 0 22px 42px rgba(16, 24, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.primary-menu > .menu-item--mega:hover > .sub-menu,
.primary-menu > .menu-item--mega:focus-within > .sub-menu,
.primary-menu > .menu-item--mega.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Naslovi kolona */
.menu-item--mega > .sub-menu > .menu-item > a {
  display: block;
  margin-bottom: 14px;
  padding: 0 25px 12px 0;
  border-bottom: 2px solid var(--ink, #101820);
  color: var(--ink, #101820);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

/* Na desktopu su treći nivoi odmah vidljivi */
.menu-item--mega > .sub-menu > .menu-item > .sub-menu {
  position: static;
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  /*
   * Nasleđuje stanje glavnog mega menija.
   * Kada je mega meni skriven, ni ovi linkovi
   * ne mogu da registruju hover.
   */
  visibility: inherit;
  pointer-events: inherit;
  transform: none;
}

.menu-item--mega > .sub-menu > .menu-item > .submenu-toggle {
  display: none;
}

.menu-item--mega > .sub-menu > .menu-item > .sub-menu > li > a {
  display: block;
  padding: 4px 0;
  color: var(--steel, #57636c);
  font-size: 12px;
}

.menu-item--mega > .sub-menu > .menu-item > .sub-menu > li > a:hover {
  color: var(--copper-dark, #984718);
}

/* CTA */
.menu-mega-cta {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line, #c9d0cc);
}

.menu-mega-cta p {
  margin: 0;
  color: var(--steel, #57636c);
  font-size: 13px;
}

.menu-mega-cta > a {
  font-size: 13px;
  font-weight: 600;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
}

/* ==================================================
   MOBILNA NAVIGACIJA
================================================== */
@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .primary-navigation {
    position: fixed;
    z-index: 9999;
    inset: 0;
    margin: 0;
    background: #fff;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0.28s ease;
  }
  .primary-navigation.is-open {
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-navigation-header {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line, #c9d0cc);
    background: #fff;
  }
  .mobile-navigation-header .custom-logo-link {
    display: block;
    width: 135px;
  }
  .mobile-navigation-header img {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-menu-close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
  }
  .mobile-menu-viewport {
    position: relative;
    height: calc(100dvh - 72px);
    overflow: hidden;
  }
  .primary-menu {
    display: block;
    height: 100%;
    padding: 22px 20px 40px;
    overflow-y: auto;
  }
  .primary-menu li {
    position: static !important;
  }
  .primary-menu li > a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px 45px 15px 0;
    border: 0;
    border-bottom: 1px solid var(--line, #c9d0cc) !important;
    background: transparent;
    color: var(--ink, #101820);
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 600;
  }
  .primary-menu .submenu-toggle {
    top: auto;
    right: 20px;
    left: auto;
    width: 42px;
    height: 54px;
    /* transform: translateY(-54px);*/
  }
  .primary-menu .submenu-toggle svg {
    width: 11px;
    transform: rotate(-90deg);
  }
  .primary-menu .menu-item.is-open > .submenu-toggle svg {
    transform: rotate(-90deg);
  }
  /*
   * Svaki WordPress sub-menu postaje novi
   * mobilni nivo.
   */
  .primary-menu .sub-menu,
  .primary-menu > .menu-item--mega > .sub-menu,
  .menu-item--mega > .sub-menu > .menu-item > .sub-menu {
    position: absolute;
    z-index: 20;
    inset: 0;
    display: block;
    width: auto;
    height: 100%;
    padding: 22px 20px 40px;
    overflow-y: auto;
    border: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .primary-menu .sub-menu.is-mobile-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .primary-menu .menu-level--covered > li > a,
  .primary-menu .menu-level--covered > li > .submenu-toggle,
  .primary-menu .menu-level--covered > .menu-mega-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-25px);
  }
  .mobile-menu-back {
    display: block;
  }
  .mobile-menu-back__button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--steel, #57636c);
    font-size: 13px;
  }
  .menu-item--mega > .sub-menu > .menu-item > .submenu-toggle {
    display: grid;
  }
  .menu-mega-cta {
    display: block;
    padding: 20px;
    margin-top: 25px;
    border: 0;
    background: var(--paper, #eef1ef);
  }
  .menu-mega-cta p {
    margin-bottom: 10px;
  }
  .menu-mega-cta > a {
    padding: 0;
    border: 0;
    font-family: inherit;
    font-size: 13px;
  }
  #primary-navigation .primary-menu .menu-item-has-children > a {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    padding: 0 !important;
  }
  .menu-item--mega > .sub-menu > .menu-item > .sub-menu > li > a {
    font-size: 14px;
    padding: 10px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .primary-navigation,
  .primary-menu .sub-menu {
    transition-duration: 0.01ms;
  }
}
@media (max-width: 1120px) {
  /*
   * Svaka stavka sa podmenijem:
   * link levo, strelica desno.
   */
  #primary-navigation .primary-menu .menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: stretch;
  }
  #primary-navigation .primary-menu .menu-item-has-children > a {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    padding-right: 10px;
  }
  #primary-navigation .primary-menu .menu-item-has-children > .submenu-toggle {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    height: auto;
    min-height: 54px;
    padding: 0;
    top: auto;
    right: auto;
    left: auto;
    border: 0;
    border-bottom: 1px solid var(--line, #c9d0cc);
    background: transparent;
    transform: none;
  }
  #primary-navigation .primary-menu .menu-item-has-children > .submenu-toggle svg {
    width: 11px;
    transform: rotate(-90deg);
  }
  #primary-navigation .primary-menu .menu-item-has-children.is-open > .submenu-toggle svg {
    transform: rotate(-90deg);
  }
  /*
   * Podmeni ostaje apsolutan u odnosu
   * na mobilnu navigaciju.
   */
  #primary-navigation .primary-menu .menu-item-has-children > .sub-menu {
    grid-column: 1/-1;
  }
  /*
   * Ovo mora imati jači selektor od desktop
   * pravila za treći nivo mega menija.
   */
  #primary-navigation .primary-menu .sub-menu {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  #primary-navigation .primary-menu .sub-menu.is-mobile-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  /*
   * Mobilno dugme Nazad.
   */
  #primary-navigation .primary-menu .sub-menu > .mobile-menu-back {
    display: block;
  }
  #primary-navigation .mobile-menu-back__button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin: 0 0 16px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--steel, #57636c);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
  }
  /*
   * Kada je sledeći nivo otvoren,
   * sakriva sadržaj prethodnog nivoa.
   */
  #primary-navigation .primary-menu .menu-level--covered > li > a,
  #primary-navigation .primary-menu .menu-level--covered > li > .submenu-toggle,
  #primary-navigation .primary-menu .menu-level--covered > .menu-mega-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line, #c9d0cc);
  border-radius: 2px;
  background: #fff;
  color: var(--ink, #101820);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--ink, #101820);
}

.menu-toggle > span:not(.screen-reader-text) {
  position: absolute;
  left: 11px;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.18s ease;
}

.menu-toggle > span:nth-child(1) {
  top: 14px;
}

.menu-toggle > span:nth-child(2) {
  top: 21px;
}

.menu-toggle > span:nth-child(3) {
  top: 28px;
}

/* Hamburger se pretvara u X */
.menu-toggle[aria-expanded=true] > span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded=true] > span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded=true] > span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-toggle > span:not(.screen-reader-text) {
    transition-duration: 0.01ms;
  }
}
.site-footer {
  padding-inline: 24px;
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
}
.site-footer__inner {
  width: 100%;
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
  padding-block: 24px;
}
.site-footer .foot-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.6rem;
}
.site-footer .foot-social svg {
  width: 18px;
  height: 18px;
}
.site-footer .foot-social a {
  border-radius: 100%;
  width: 34px;
  height: 34px;
  border: 1px solid #71808a;
  color: #b9c2c8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .foot-social a:hover {
  color: var(--wp--preset--color--orange);
  border-color: var(--wp--preset--color--orange);
}
.site-footer .foot-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.site-footer .foot-contact li {
  display: flex;
  align-items: center;
}
.site-footer .foot-contact li svg {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  position: relative;
}
.site-footer .foot-contact li a {
  display: flex;
  align-items: center;
}
.site-footer .foot-contact li .dot {
  border-radius: 100%;
  width: 4px;
  height: 4px;
  background-color: color-mix(in srgb, var(--wp--preset--color--light-gray) 80%, #05a2de 10%);
  display: inline-block;
  margin: 0 8px;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  gap: 5%;
  color: var(--wp--preset--color--light-gray);
  padding-top: 5rem;
  padding-bottom: 7.4rem;
}
.site-footer .footer-top h4 {
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.site-footer .footer-top ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.site-footer .footer-top ul a {
  text-decoration: none;
  color: color-mix(in srgb, var(--wp--preset--color--light-gray) 80%, #05a2de 10%);
  font-size: 1.4rem;
  font-weight: 300;
}
.site-footer .footer-top ul .current-menu-item > a,
.site-footer .footer-top ul a:hover {
  color: var(--wp--preset--color--orange);
}
.site-footer .footer-top .footer-start-column {
  color: #71808a;
  font-size: 1.5rem;
}
.site-footer .footer-top .footer-start-column img {
  max-width: 15rem;
  height: auto;
  display: block;
  margin-bottom: 1.6rem;
}
.site-footer .footer-bottom {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2c3540;
  padding-top: 2.4rem;
  font-size: 1.4rem;
}
.site-footer .footer-bottom .copyright {
  color: #71808a;
}
.site-footer .footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.site-footer .footer-bottom ul a {
  color: #71808a;
  text-decoration: none;
}
.site-footer .footer-bottom ul .current-menu-item > a,
.site-footer .footer-bottom ul a:hover {
  color: var(--wp--preset--color--orange);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3.2rem;
  align-items: center;
  border-bottom: 1px solid #2c3540;
  padding-bottom: 5rem;
  padding-top: 3rem;
}
.footer-newsletter h2 {
  color: #fff;
  margin-top: 1.6rem;
  margin-bottom: 0;
}
.footer-newsletter label {
  font-weight: 300;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  display: block;
}
.footer-newsletter .newsletter-form__row {
  display: flex;
}
.footer-newsletter .newsletter-form__row input {
  height: 4.5rem;
  flex: 1;
  padding: 1rem 1.6rem;
  border: none;
}
.footer-newsletter .newsletter-form__row button {
  border: none;
  height: 4.5rem;
  padding: 1rem 1.6rem;
  background-color: var(--wp--preset--color--orange);
  color: #fff;
  cursor: pointer;
  transition: all 0.23s ease-in;
}
.footer-newsletter .newsletter-form__row button:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  footer .footer-top {
    gap: 2.4rem !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
  }
}
@media (max-width: 980px) {
  body > .topbar {
    display: none;
  }
  footer.site-footer .footer-top {
    gap: 3.2rem !important;
    grid-template-columns: 1fr !important;
    padding-bottom: 3.2rem;
    padding-top: 3.2rem;
  }
  footer.site-footer .footer-bottom {
    flex-direction: column-reverse;
  }
  .footer-newsletter {
    grid-template-columns: 1fr !important;
  }
}
.if-product-card-sku {
  font-size: 12px;
  padding: 0 20px 20px;
  display: flex;
  gap: 6px;
}

@media (max-width: 767px) {
  .woocommerce-content {
    width: 100% !important;
  }
}
/* =========================================================
   ZAJEDNIČKI WOOCOMMERCE PRODUCT GRID
   ========================================================= */
:root {
  --if-ink: #101820;
  --if-paper: #fafafa;
  --if-steel: #57636c;
  --if-line: #c9d0cc;
  --if-copper: #c1622b;
  --if-copper-dark: #9b4a1e;
  --if-ice: #05a2de;
  --if-green: #2e9b54;
}

.woocommerce ul.products {
  display: grid !important;
  /*
   * Maksimalno četiri proizvoda u redu:
   *
   * 4 proizvoda = po 1/4 kontejnera
   * 3 proizvoda = po 1/3 kontejnera
   * 2 proizvoda = po 1/2 kontejnera
   */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1px;
  padding: 1px !important;
  margin: 0 !important;
  border: 0;
  background: transparent;
  list-style: none;
  gap: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

/* Kartica proizvoda */
.woocommerce ul.products li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto !important;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow: hidden;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  border: 1px solid var(--if-line);
  margin-top: -1px !important;
  margin-left: -1px !important;
}

.woocommerce ul.products li.product:hover {
  z-index: 2;
  background: #fafbfa;
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.1);
}

/*
 * Postojeći WooCommerce link se razvlači preko cele kartice.
 */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  color: var(--if-ink);
  text-decoration: none;
}

/* Slika proizvoda */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
  display: block;
  width: 100% !important;
  aspect-ratio: 1.08;
  padding: 24px;
  margin: 0 0 20px !important;
  background: color-mix(in srgb, var(--wp--preset--color--light-gray) 5%, #05a2de 3%);
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 240ms ease;
}

.woocommerce ul.products li.product:hover a.woocommerce-LoopProduct-link img {
  transform: scale(1.035);
  background: color-mix(in srgb, var(--wp--preset--color--light-gray) 10%, #05a2de 6%);
}

/* Naziv proizvoda */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 64px;
  padding: 0 20px !important;
  margin: 0 0 10px !important;
  color: var(--if-ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

/* Cena */
.woocommerce ul.products li.product .price {
  display: block !important;
  padding: 0 20px;
  margin: 0 !important;
  color: var(--if-ink) !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px !important;
  font-weight: 650;
  border-top: 1px solid var(--wp--preset--color--light-gray);
  padding-top: 25px;
}

.woocommerce ul.products li.product .price small,
.woocommerce ul.products li.product .if-loop-price small {
  display: block;
  margin-top: 3px;
  color: var(--if-steel);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 400;
}

/* Akcijska cena */
.woocommerce ul.products li.product .price del {
  margin-right: 6px;
  color: var(--if-steel);
  font-size: 13px;
  opacity: 0.75;
}

.woocommerce ul.products li.product .price ins {
  color: var(--if-copper);
  text-decoration: none;
}

/* Sale oznaka */
.woocommerce ul.products li.product .onsale {
  z-index: 3;
  top: 16px !important;
  right: auto !important;
  left: 16px !important;
  min-width: 0;
  min-height: 0;
  padding: 7px 10px;
  margin: 0 !important;
  border-radius: 0;
  background: var(--if-copper);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

/* Strelica */
.woocommerce ul.products li.product .if-product-card-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: auto 20px 0 auto;
  border: 1px solid var(--if-line);
  border-radius: 50%;
  background: #fff;
  color: var(--if-ink);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.if-product-card-arrow {
  position: absolute;
  right: 0;
  bottom: 11px;
}

.woocommerce ul.products li.product:hover .if-product-card-arrow {
  border-color: var(--if-copper);
  background: var(--if-copper);
  color: #fff;
  transform: translateX(3px);
}

/*
 * Ako tema ipak negde ispiše button, sakrij ga.
 */
.woocommerce ul.products li.product > .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: none !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  }
}
@media (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
    padding: 16px;
    margin-bottom: 16px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    padding-inline: 14px !important;
    font-size: 14px !important;
  }
  .woocommerce ul.products li.product .price {
    padding-inline: 14px;
    font-size: 15px !important;
  }
  .woocommerce ul.products li.product .if-product-card-arrow {
    width: 38px;
    height: 38px;
    margin-right: 14px;
  }
}
@media (max-width: 479px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
  }
}
.if-category-navigation .if-subcategories {
  background: transparent !important;
}
.if-category-navigation .if-subcategories .if-subcategory-card {
  border: 1px solid var(--if-line);
  margin-left: -2px !important;
  margin-top: -2px !important;
}

.alignfull {
  margin: 0 -24px;
}

main > .wp-block-group > .wp-block-group {
  padding: 0;
}

.contact-banner {
  background-color: var(--wp--preset--color--orange);
  color: #fff;
}
.contact-banner > div {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
}
.contact-banner h2 {
  color: #fff;
  margin-bottom: 0;
  grid-column: 1;
  margin-left: 0 !important;
}
.contact-banner p {
  opacity: 0.9;
  font-weight: 300;
  grid-column: 1;
  margin-left: 0 !important;
}
.contact-banner .wp-block-buttons {
  grid-column: 2;
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
.contact-banner .subheading {
  color: #fff;
  opacity: 0.75;
}
.contact-banner .subheading::before, .contact-banner .subheading::after {
  background: #fff;
}

.video-block {
  background-color: var(--wp--preset--color--black);
  color: #fff;
}
.video-block h2 {
  color: #fff;
}
.video-block iframe {
  border-radius: 2px;
}
.video-block .subheading {
  color: var(--wp--preset--color--blue);
}
.video-block .subheading::before, .video-block .subheading::after {
  background: var(--wp--preset--color--blue);
}

.subheading {
  text-transform: uppercase;
  color: var(--wp--preset--color--orange);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: -10px;
}
.subheading::before, .subheading::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--wp--preset--color--orange);
}

.why-interfrigo {
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
  margin: 0 -24px;
}
.why-interfrigo h2, .why-interfrigo h3 {
  color: #fff;
}
.why-interfrigo h2 {
  font-size: 5rem;
  font-weight: 800;
}
.why-interfrigo .wp-block-columns {
  gap: 10%;
}
.why-interfrigo .subheading {
  color: var(--wp--preset--color--blue);
}
.why-interfrigo .subheading::before, .why-interfrigo .subheading::after {
  background: var(--wp--preset--color--blue);
}
.why-interfrigo p:not(.subheading) {
  opacity: 0.7;
  font-weight: 300;
}
.why-interfrigo .wp-block-group {
  padding: 24px 0 0 48px;
  border-top: 1px solid #2c3540;
}
.why-interfrigo .list-item {
  position: relative;
}
.why-interfrigo .list-item::before {
  color: var(--wp--preset--color--blue);
  left: 0;
  top: 24px;
  position: absolute;
}
.why-interfrigo .list-item:nth-child(1)::before {
  content: "01";
}
.why-interfrigo .list-item:nth-child(2)::before {
  content: "02";
}
.why-interfrigo .list-item:nth-child(3)::before {
  content: "03";
}
.why-interfrigo .list-item:nth-child(4)::before {
  content: "04";
}
.why-interfrigo .list-item:nth-child(5)::before {
  content: "05";
}

.if-hero {
  --if-hero-blue: #05a2de;
  --if-hero-orange: #c1622b;
  --if-hero-dark: #101820;
  position: relative;
  width: calc(100% + 48px);
  overflow: hidden;
  background: var(--if-hero-dark);
  margin: 0 -24px;
  padding: 0;
}
.if-hero .wp-block-group {
  padding: 0;
}
.if-hero .subheading {
  color: var(--wp--preset--color--blue);
}
.if-hero .subheading::before, .if-hero .subheading::after {
  background: var(--wp--preset--color--blue);
}
.if-hero h1, .if-hero h2 {
  color: #fff;
  font-weight: 800;
  font-size: 6rem;
}
.if-hero h1 em, .if-hero h2 em {
  display: block;
  font-style: normal;
  color: var(--wp--preset--color--orange);
}
.if-hero p:not(.subheading) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.8rem;
  font-weight: 300;
}
.if-hero .wp-block-cover {
  padding: 62px 0;
}
.if-hero .swiper-wrapper {
  width: 100vw;
  max-width: 100vw !important;
  display: flex !important;
}

.if-hero__slides {
  position: relative;
  width: 100vw;
  max-width: 100%;
}

.if-hero__slide {
  position: relative;
  min-height: clamp(560px, 62vh, 700px);
  padding: 0;
  overflow: hidden;
  display: flex !important;
}

/*
 * Snažan gradient omogućava čitljiv tekst bez obzira
 * na to koja je fotografija postavljena.
 */
.if-hero__slide .wp-block-cover__background {
  z-index: 1;
  opacity: 1 !important;
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.78) 38%, rgba(16, 24, 32, 0.28) 68%, rgba(16, 24, 32, 0.12) 100%) !important;
}

.if-hero__slide .wp-block-cover__image-background {
  transition: transform 7s ease;
  /* max-width: 70vw;
   margin-left: auto;*/
}

.if-hero__slide.swiper-slide-active .wp-block-cover__image-background {
  transform: scale(1.04);
}

.if-hero__slide > .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: min(1260px, 100% - 48px);
  margin-inline: auto;
}

/* Zajednički i pojedinačni sadržaj */
.if-hero__content,
.if-hero__shared-content {
  width: min(640px, 100%);
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  text-align: left;
  background: rgba(16, 24, 32, 0.76);
  border-left: 4px solid var(--if-hero-orange);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.if-hero__shared-content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: max(24px, (100% - 1260px) / 2);
  transform: translateY(-50%);
}

/*
 * Ako postoji zajednički sadržaj, pojedinačni sadržaji
 * se na frontendu automatski sakrivaju.
 */
.if-hero--shared-content .if-hero__content {
  display: none;
}

.if-hero__content > *,
.if-hero__shared-content > * {
  position: relative;
  z-index: 1;
}

.if-hero__content h1,
.if-hero__content h2,
.if-hero__shared-content h1,
.if-hero__shared-content h2 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.if-hero__content p,
.if-hero__shared-content p {
  max-width: 580px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.if-hero__content .wp-block-buttons,
.if-hero__shared-content .wp-block-buttons {
  margin-top: 32px;
}

/* Kontrole */
.if-hero__controls {
  position: absolute;
  z-index: 10;
  right: max(24px, (100% - 1260px) / 2);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  /* border: 1px solid rgba(255, 255, 255, 0.2);*/
  backdrop-filter: blur(8px);
}

.if-hero__previous,
.if-hero__next {
  display: grid;
  min-width: 46px;
  width: 46px;
  height: 46px;
  padding: 0 5px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  border-radius: 100%;
  transition: background-color 180ms ease, color 180ms ease;
}

.if-hero__previous:hover,
.if-hero__next:hover {
  background: var(--if-hero-blue);
  color: #fff;
}

.if-hero__previous:focus-visible,
.if-hero__next:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.if-hero__pagination {
  position: static;
  width: auto;
  min-width: 64px;
  color: #fff !important;
  font-size: 13px;
  text-align: center;
  border-radius: 2px;
}

.if-hero__pagination .swiper-pagination-current,
.swiper-pagination-total {
  color: #fff;
}

/* Mobilni */
@media (max-width: 767px) {
  .if-hero__slide {
    min-height: 680px;
    align-items: flex-end;
    padding-bottom: 110px;
  }
  .if-hero__slide .wp-block-cover__background {
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.12) 0%, rgba(16, 24, 32, 0.7) 45%, rgba(16, 24, 32, 0.98) 100%) !important;
  }
  .if-hero__slide > .wp-block-cover__inner-container {
    width: calc(100% - 32px);
  }
  .if-hero__content,
  .if-hero__shared-content {
    width: auto;
    padding: 24px;
    border-left-width: 3px;
  }
  .if-hero__shared-content {
    top: auto;
    right: 16px;
    bottom: 104px;
    left: 16px;
    transform: none;
  }
  .if-hero__content h1,
  .if-hero__content h2,
  .if-hero__shared-content h1,
  .if-hero__shared-content h2 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .if-hero__controls {
    right: 16px;
    bottom: 24px;
    left: 16px;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .if-hero__slide .wp-block-cover__image-background {
    transition: none;
    transform: none;
  }
}
.home main h2 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.category-grid {
  display: grid !important;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-template-rows: 315px 285px;
  gap: 14px;
}
.category-grid .wp-block-column:nth-child(4) {
  grid-column: span 2;
}
.category-grid .wp-block-column {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}
.category-grid .wp-block-column::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(10, 18, 23, 0.82), rgba(10, 18, 23, 0.06) 72%);
}
.category-grid .wp-block-column:hover img {
  transform: scale(1.035);
}
.category-grid .wp-block-column:hover .category-card__content > p:last-child {
  max-height: 30px;
  margin-top: 11px;
  opacity: 1;
}
.category-grid .wp-block-column .category-card__content {
  position: absolute;
  inset: auto 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  padding: 0 !important;
  z-index: 4;
}
.category-grid .wp-block-column .category-card__content * {
  margin-left: 0 !important;
}
.category-grid .wp-block-column .category-card__content > p:first-child {
  margin-bottom: 8px;
  color: #b9ddeb;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.category-grid .wp-block-column .category-card__content h3 {
  font: 600 clamp(21px, 2.2vw, 31px) "Space Grotesk", sans-serif;
  line-height: 1.1;
  color: #fff;
  margin-block-start: 0;
}
.category-grid .wp-block-column .category-card__content > p:last-child {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: 0.25s;
}
.category-grid .wp-block-column .wp-block-image {
  margin: 0 !important;
  margin-block-start: 0 !important;
  width: 100%;
  height: 100%;
}
.category-grid .wp-block-column img {
  object-fit: cover;
  transition: transform 0.65s ease;
  width: 100%;
  height: 100%;
}
.category-grid .wp-block-column .link a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 5;
}
.category-grid .wp-block-column:first-child {
  grid-row: span 2;
}

.if-service {
  padding: clamp(64px, 7vw, 96px) 24px;
  background: #eef1ef;
  color: #101820;
  margin: 0 -24px;
  background: color-mix(in srgb, var(--wp--preset--color--light-gray) 5%, #05a2de 3%);
}

.service__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: min(1260px, 100%);
  min-height: 520px;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

/* Fotografija */
.if-service__image {
  width: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.if-service__image img,
.if-service__image .wp-block-cover__image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tekst */
.if-service__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 6vw, 80px);
  background: #fff;
}
.if-service__content * {
  margin-left: 0 !important;
}
.if-service__content .subheading {
  font-size: 1.4rem !important;
  color: var(--wp--preset--color--orange) !important;
}

.if-service__content h2 {
  max-width: 540px;
  margin: 0 0 24px;
  color: #101820;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.if-service__content > p:not(.if-service__eyebrow) {
  max-width: 590px;
  margin: 0 0 18px;
  color: #57636c;
  font-size: 16px;
  line-height: 1.7;
}

/* Lista prednosti */
.if-service__features {
  display: grid;
  gap: 13px;
  margin: 10px 0 34px;
  padding: 0;
  list-style: none;
}

.if-service__features li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: #101820;
  font-size: 15px;
  font-weight: 600;
}

.if-service__features li::before {
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background: var(--wp--preset--color--orange);
  content: "";
}

/* Dugme */
.if-service__content .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--black);
  background: var(--wp--preset--color--black);
  color: #fff;
}

@media (max-width: 680px) {
  .if-service {
    padding: 48px 16px;
  }
  .if-service__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .if-service__image {
    min-height: 360px;
  }
  .if-service__content {
    padding: 40px 28px;
  }
  .if-service__content h2 {
    font-size: 36px;
  }
}
.panasonic-block {
  background-color: var(--wp--preset--color--blue);
  margin: 0 -24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3.2rem;
  color: #fff;
}
.panasonic-block * {
  margin: 0 !important;
}
.panasonic-block p:first-child {
  opacity: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
.panasonic-block p {
  color: rgba(255, 255, 255, 0.8);
}
.panasonic-block p strong {
  font-size: 3rem;
  color: rgb(255, 255, 255);
}

.garancija h2 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
}
.garancija .wp-block-columns {
  gap: 4rem;
}
.garancija .wp-block-column:first-child p:not(.subheading) {
  line-height: 1.5;
  font-size: 1.7rem;
  color: #57636c;
}
.garancija ul {
  list-style: none;
  border-bottom: 1px solid var(--wp--preset--color--light-gray);
}
.garancija ul li {
  padding: 2.4rem 0;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr 2.5fr;
  color: #57636c;
  border-top: 1px solid var(--wp--preset--color--light-gray);
}
.garancija ul li strong {
  color: var(--wp--preset--color--blue);
  font-size: 2.1rem;
  font-weight: 500;
}
@media (max-width: 680px) {
  .garancija ul li {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
  }
}

.hero-block {
  margin: 0 -24px;
  color: #fff;
}
.hero-block .wp-block-group {
  max-width: 70rem;
  margin-left: 0 !important;
}
.hero-block .wp-block-group p:not(.subheading) {
  font-size: 1.8rem;
}
.hero-block h1 {
  font-size: 6rem;
  max-width: 70rem;
}
.hero-block h1 em {
  color: #c1622b;
  font-style: normal;
}

.if-hero__slides.swiper {
  display: block;
  width: 100%;
  overflow: hidden;
}

.if-hero__slides > .swiper-wrapper {
  display: flex;
  width: 100%;
}

.if-hero__slides > .swiper-wrapper > .swiper-slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.wp-block-buttons {
  position: relative;
  gap: 1.6rem;
}

.wp-block-button[class=wp-block-button] a {
  background-color: var(--wp--preset--color--orange);
  border: 1px solid var(--wp--preset--color--orange);
  position: relative;
}
.wp-block-button[class=wp-block-button] a:hover {
  opacity: 0.9;
}

.btn {
  background-color: var(--wp--preset--color--orange);
  border: 1px solid var(--wp--preset--color--orange);
  position: relative;
  border-radius: 2px;
  padding: 11px 20px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  min-height: 4.5rem;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.wp-block-button a {
  border-radius: 2px;
  padding: 11px 20px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  min-height: 4.5rem;
}
.wp-block-button a:hover {
  transform: translateY(-2px);
}

.wp-block-button.is-style-white a {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  color: var(--wp--preset--color--orange);
}
.wp-block-button.is-style-white a:hover {
  background-color: rgb(255, 255, 255);
}

.wp-block-button.is-style-white-outline a {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
}
.wp-block-button.is-style-white-outline a:hover {
  border: 1px solid rgb(255, 255, 255);
}

.if-contact-form {
  --if-blue: #05a2de;
  --if-orange: #c1622b;
  --if-dark: #101820;
  --if-gray: #57636c;
  --if-light: #eef1ef;
  --if-border: #d6dcda;
  color: var(--if-dark);
}

.if-contact-form *,
.if-contact-form *::before,
.if-contact-form *::after {
  box-sizing: border-box;
}

/* Tabovi */
.if-form-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.if-form-tabs br {
  display: none;
}

.if-form-tab {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 18px;
  min-height: 92px;
  padding: 20px 22px;
  border: 1px solid var(--if-border);
  border-radius: 0;
  background: #f7f8f8;
  color: var(--if-dark);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.if-form-tab:hover {
  border-color: var(--if-orange);
}

.if-form-tab.is-active {
  border-color: var(--if-orange);
  background: #fff8f4;
  color: var(--if-orange);
}

.if-form-tab:focus-visible,
.if-object-option:focus-visible {
  outline: 3px solid rgba(5, 162, 222, 0.25);
  outline-offset: 2px;
}

.if-form-tab__icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
}

.if-form-tab__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.if-form-tab__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.if-form-tab__content strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.if-form-tab__content small {
  color: var(--if-gray);
  font-size: 13px;
  line-height: 1.4;
}

/* Panel tipa objekta */
.if-object-panel {
  margin-bottom: 36px;
}

.if-object-panel[hidden] {
  display: none !important;
}

.if-field-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.if-field-heading strong {
  font-size: 14px;
  line-height: 1.4;
}

.if-field-heading span {
  color: var(--if-gray);
  font-size: 13px;
}

.if-field-heading span::before {
  content: "— ";
}

.if-object-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.if-object-options--business {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.if-object-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--if-border);
  border-radius: 0;
  background: var(--if-light);
  color: var(--if-dark);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.if-object-option br {
  display: none;
}

.if-object-option:hover,
.if-object-option.is-selected {
  border-color: var(--if-orange);
  background: #fff8f4;
}

.if-radio-dot {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1px solid #7d898e;
  border-radius: 50%;
  background: #fff;
}

.if-object-option.is-selected .if-radio-dot {
  border-color: var(--if-orange);
}

.if-object-option.is-selected .if-radio-dot::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--if-orange);
  content: "";
}

/* Polja */
.if-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.if-form-field {
  min-width: 0;
}
.if-form-field br {
  display: none;
}

.if-form-field--full {
  margin-bottom: 28px;
}

.if-form-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--if-dark);
  font-size: 14px;
  font-weight: 600;
}

.if-form-field label span {
  color: var(--if-gray);
  font-size: 13px;
  font-weight: 400;
}

.if-contact-form input[type=text],
.if-contact-form input[type=email],
.if-contact-form input[type=tel],
.if-contact-form input[type=number],
.if-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  background: var(--if-light);
  color: var(--if-dark);
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.if-contact-form textarea {
  display: block;
  min-height: 140px;
  resize: vertical;
}

.if-contact-form input:focus,
.if-contact-form textarea:focus {
  border-color: var(--if-blue);
  background: #fff;
}

.if-contact-form input::placeholder,
.if-contact-form textarea::placeholder {
  color: #7b878d;
  opacity: 1;
}

/* Checkbox opcije */
.if-interests {
  margin-top: 6px;
}

.if-interests .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 24px;
}

.if-interests .wpcf7-list-item {
  margin: 0;
}

.if-interests .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.if-interests input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--if-orange);
}

.if-interests .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 600;
}

/* Saglasnost */
.if-privacy {
  margin: 4px 0 28px;
  color: var(--if-gray);
  font-size: 13px;
  line-height: 1.55;
}

.if-privacy .wpcf7-list-item {
  margin: 0;
}

.if-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.if-privacy input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--if-orange);
}

/* Submit */
.if-form-submit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.if-contact-form input[type=submit] {
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid var(--if-orange);
  border-radius: 0;
  background: var(--if-orange);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.if-contact-form input[type=submit]:hover {
  background: var(--if-dark);
  border-color: var(--if-dark);
}

.if-contact-form input[type=submit]:disabled {
  cursor: wait;
  opacity: 0.65;
}

.if-form-submit__note {
  color: var(--if-gray);
  font-size: 13px;
}

.if-form-submit__note::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--if-blue);
  content: "";
}

/* CF7 poruke */
.if-contact-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b42318;
  font-size: 12px;
}

.if-contact-form .wpcf7-response-output {
  margin: 26px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid var(--if-border) !important;
  border-radius: 0;
  font-size: 14px;
}

.if-contact-form form.sent .wpcf7-response-output {
  border-color: var(--if-blue) !important;
  background: rgba(5, 162, 222, 0.08);
}

.if-contact-form form.invalid .wpcf7-response-output,
.if-contact-form form.failed .wpcf7-response-output {
  border-color: var(--if-orange) !important;
  background: rgba(193, 98, 43, 0.08);
}

.if-contact-form .wpcf7-spinner {
  margin: 0;
}

@media (max-width: 767px) {
  .if-form-tabs,
  .if-form-grid,
  .if-object-options,
  .if-object-options--business,
  .if-interests .wpcf7-form-control {
    grid-template-columns: 1fr;
  }
  .if-form-tab {
    min-height: 82px;
    padding: 17px;
  }
  .if-form-grid {
    gap: 20px;
    margin-bottom: 20px;
  }
  .if-form-submit {
    align-items: flex-start;
    flex-direction: column;
  }
  .if-contact-form input[type=submit] {
    width: 100%;
  }
}
.contacts-wrap {
  gap: 0 !important;
}
.contacts-wrap .wp-block-column:first-child {
  padding-right: 3.2rem;
  border-right: 1px solid #eef1ef !important;
}
.contacts-wrap .wp-block-column:last-child {
  padding-left: 3.2rem;
  overflow: hidden;
}
.contacts-wrap .wp-block-column:last-child iframe {
  margin-top: -60px !important;
  height: 40rem;
}
.contacts-wrap .wp-block-column:last-child h4 {
  border-top: 1px solid #eef1ef !important;
  font-size: 2.1rem;
  padding-top: 2.4rem;
  margin-top: 3.2rem;
}
.contacts-wrap .wp-block-column:last-child .workingtime {
  border-bottom: 1px solid #eef1ef;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.contacts-wrap .wp-block-column:last-child .workingtime strong {
  font-weight: 600;
  color: #57636c;
}

.if-contact-form[hidden],
.if-form-success[hidden] {
  display: none !important;
}

.if-form-success {
  position: relative;
  padding: 64px 54px;
  overflow: hidden;
  background: #101820;
  color: #fff;
}

.if-form-success::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 100%;
  background: #05a2de;
  content: "";
}

.if-form-success__mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border: 2px solid #05a2de;
  border-radius: 50%;
  color: #05a2de;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.if-form-success__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #c1622b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.if-form-success__eyebrow::before {
  width: 28px;
  height: 1px;
  background: #c1622b;
  content: "";
}

.if-form-success h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.if-form-success > p {
  max-width: 570px;
  margin: 0;
  color: #b9c3c8;
  font-size: 16px;
  line-height: 1.7;
}

.if-form-success__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #b9c3c8;
  font-size: 14px;
}

.if-form-success__contact a {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.if-form-success__contact a:hover {
  color: #05a2de;
}

.if-form-success__reset {
  min-height: 48px;
  margin-top: 32px;
  padding: 13px 21px;
  border: 1px solid #c1622b;
  border-radius: 0;
  background: #c1622b;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.if-form-success__reset:hover {
  border-color: #fff;
  background: #fff;
  color: #101820;
}

/*
 * Standardna CF7 poruka ostaje kao fallback ako JS nije učitan.
 * Kada se prikaže naša poruka, standardna se sakriva.
 */
.wpcf7.if-custom-success-active .wpcf7-response-output {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 15px 18px;
  border: 1px solid #d6dcda;
  border-radius: 0;
  background: #fff;
  color: #101820;
  font-size: 14px;
  line-height: 1.6;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #c1622b;
  background: rgba(193, 98, 43, 0.08);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #05a2de;
  background: rgba(5, 162, 222, 0.08);
}

@media (max-width: 767px) {
  .if-form-success {
    padding: 42px 26px;
  }
  .if-form-success::after {
    width: 6px;
  }
  .contacts-wrap .wp-block-column:first-child {
    border-right: none !important;
    padding-right: 0 !important;
  }
  .contacts-wrap .wp-block-column:last-child {
    padding-left: 0 !important;
  }
}
.phones {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  padding-left: 32px;
}
.phones a {
  color: inherit;
  text-decoration: none;
}
.phones br {
  display: none !important;
}

.phones::before {
  content: "";
  flex: 0 0 17px;
  width: 24px;
  height: 24px;
  background-color: #c1622b;
  position: absolute;
  left: 0;
  top: 3px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.56 2.81.69A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.56 2.81.69A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.phones a:hover {
  color: #c1622b;
}

.email {
  color: #57636c;
  font-size: 1.4rem;
}

.email a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}

.email a::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-color: #c1622b;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='1'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='1'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.email a:hover {
  color: #c1622b;
}

.email br {
  display: block;
  content: "";
  margin-bottom: 5px;
}

/* Tekst „Servis” uvlači se da bude poravnat sa email adresom. */
.email {
  padding-left: 32px;
}

.email a {
  margin-left: -32px;
  font-weight: 600;
  color: var(--wp--preset--color--black);
  font-size: 1.6rem;
}

.location {
  position: relative;
  padding-left: 32px;
  font-size: 1.4rem;
  color: #57636c;
}

.location::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #c1622b;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.location strong {
  color: #101820;
  font-weight: 600;
  font-size: 1.6rem;
}

.location br {
  display: block;
  content: "";
  margin-bottom: 4px;
}

/*# sourceMappingURL=main.css.map */
