:root {
  --yellow: #f8b900;
  --yellow-dark: #e6a700;
  --black: #050505;
  --text: #28292c;
  --muted: #676b70;
  --line: #eeeeee;
  --soft: #fafafa;
  --white: #ffffff;
  --container: 1230px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.wd-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.wd-topbar,
.wd-header {
  background: var(--black);
  color: var(--white);
}

.wd-topbar-inner {
  min-height: 45px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.wd-lang,
.wd-social,
.wd-team {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag {
  color: var(--yellow);
  font-weight: 900;
}

.circle {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
}

.wd-social {
  justify-content: center;
}

.wd-team a {
  color: var(--white);
}

.wd-header {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wd-header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.wd-logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  padding: 8px 0;
}

.wd-logo img {
  width: 245px;
  height: 64px;
  object-fit: contain;
}

.wd-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.wd-menu a:hover {
  color: var(--yellow);
}

.hamburger {
  display: none;
  width: 34px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  margin: 0 0 6px;
  background: var(--white);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: start;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero p {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.2;
}

.search-panel {
  max-width: 1185px;
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.search-panel label {
  position: relative;
  display: block;
}

.search-panel span {
  display: none;
}

.search-panel select,
.search-panel input,
.search-panel button {
  width: 100%;
  height: 77px;
  border: 0;
  border-radius: 0;
}

.search-panel select,
.search-panel input {
  appearance: none;
  padding: 0 55px 0 31px;
  background: var(--white);
  color: #777;
  outline: 0;
}

.search-panel select option {
  color: var(--text);
  background: var(--white);
}

.search-panel label::after {
  content: "⌄";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 24px;
  font-weight: 900;
}

.search-panel label:nth-child(3)::after {
  content: "▦";
  font-size: 20px;
}

.search-panel button {
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketplace {
  margin-top: 55px !important;
  color: var(--white);
  font-size: 16px !important;
}

.marketplace a {
  color: var(--yellow);
}

.wd-section {
  padding: 98px 0 70px;
}

.categories {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
}

.categories::before {
  content: "KATEGORIJE";
  position: absolute;
  left: 0;
  top: -52px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px #e9e9e9;
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: 148px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.categories .wd-container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.section-title.light {
  color: var(--white);
}

.title-line {
  width: 98px;
  height: 7px;
  margin: 18px 0 62px;
  background: var(--yellow);
}

.category-grid,
.offer-grid {
  display: grid;
  gap: 38px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 38px;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card,
.offer-card {
  text-align: center;
  color: var(--text);
}

.category-card img,
.offer-card img {
  width: 100%;
  height: 268px;
  padding: 32px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.category-card img {
  height: 253px;
  padding: 14px 24px;
}

.category-card h3,
.offer-card h3 {
  margin: 20px 0 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit {
  padding: 130px 0 125px;
  background: linear-gradient(90deg, #fff 0%, #fff 58%, #fbfbfb 58%, #fbfbfb 100%);
}

.benefit-right {
  padding-top: 100px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 95px;
  align-items: center;
}

.benefit-grid.reverse {
  grid-template-columns: 1.04fr 0.96fr;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.benefit-copy h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.benefit-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 18px;
}

.benefit-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 48px;
}

.benefit-links h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 31px;
  line-height: 1.08;
}

.benefit-links p {
  font-size: 16px;
  line-height: 1.5;
}

.benefit-art {
  min-height: 465px;
  position: relative;
}

.yellow-plate {
  position: absolute;
  width: 255px;
  height: 435px;
  background: var(--yellow);
}

.benefit-left .yellow-plate {
  right: 20px;
  top: 0;
}

.benefit-right .yellow-plate {
  left: 20px;
  top: 0;
}

.benefit-art img {
  position: absolute;
  width: 70%;
  height: 330px;
  object-fit: cover;
  top: 78px;
  right: 92px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.benefit-right .benefit-art img {
  left: 92px;
  right: auto;
}

.features {
  padding-top: 105px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  min-height: 452px;
  padding: 72px 54px 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 42px;
}

.feature-image {
  min-height: 452px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.feature-image img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.offers {
  padding-top: 45px;
}

.offer-card img {
  height: 590px;
  padding: 35px;
  background: #fbfbfb;
}

.offer-card h3 {
  font-size: 20px;
}

.work {
  padding-top: 42px;
  padding-bottom: 115px;
}

.work-grid {
  display: grid;
  gap: 150px;
}

.work-step {
  width: 47%;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
}

.work-step.offset {
  margin-left: auto;
}

.work-step span {
  color: var(--yellow);
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
}

.work-step h3 {
  margin: 0 0 30px;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--yellow);
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: capitalize;
}

.work-step p {
  margin: 0;
  max-width: 385px;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

.counters {
  padding: 95px 0 78px;
  background: var(--black);
  color: var(--white);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-grid strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  font-size: 72px;
  line-height: 0.9;
}

.counter-grid span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 20px;
}

.first-footer {
  padding: 78px 0 65px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
}

.hide {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.footer-grid h4 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.1;
}

.footer-grid img {
  width: 220px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 22px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-grid a::before {
  content: "›";
  margin-right: 10px;
  color: var(--white);
}

.footer-grid a span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.second-footer {
  padding: 24px 20px;
  background: #080808;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 14px;
}

.shop-hero {
  padding: 86px 0;
  background: var(--black);
  color: var(--white);
}

.shop-hero p {
  margin: 0 0 14px;
  color: var(--yellow);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--yellow);
}

.breadcrumb a:hover {
  color: var(--white);
}

.shop-hero h1 {
  margin: 0;
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.shop-section,
.product-detail {
  padding: 76px 0 100px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
}

.shop-sidebar {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
}

.shop-sidebar h2 {
  margin: 0 0 22px;
  font-size: 24px;
}

.shop-sidebar a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.shop-sidebar a.active,
.shop-sidebar a:hover {
  color: var(--yellow-dark);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.shop-toolbar p {
  margin: 0;
  color: var(--muted);
}

.shop-toolbar select {
  min-width: 220px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.stock-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.stock-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  padding: 24px;
  background: #fbfbfb;
}

.stock-card__body {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.stock-card h3 {
  min-height: 54px;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.stock-card p {
  margin: 0 0 18px;
  color: var(--yellow-dark);
  font-weight: 900;
}

.stock-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-button.large {
  min-height: 56px;
  padding: 0 32px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

.product-detail__image {
  border: 1px solid var(--line);
  background: #fbfbfb;
}

.product-detail__image img {
  width: 100%;
  min-height: 500px;
  object-fit: contain;
  padding: 42px;
}

.product-detail__summary h2 {
  margin: 0 0 20px;
  font-family: "Yantramanav", "Open Sans", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.product-category-label {
  margin: 0 0 12px;
  color: var(--yellow-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.product-price-large {
  margin: 0 0 24px;
  color: var(--yellow-dark);
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .wd-header-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding: 18px 0 14px;
    gap: 14px;
  }

  .wd-logo {
    width: auto;
    justify-content: flex-start;
    height: auto;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .wd-menu {
    width: 100%;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    line-height: 1.2;
  }

  .wd-menu.is-open {
    display: flex;
  }

  .wd-menu a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 760px) {
  .wd-topbar-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px 0;
  }

  .wd-social {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .search-panel,
  .offer-grid,
  .benefit-grid,
  .benefit-grid.reverse,
  .feature-grid,
  .footer-grid,
  .shop-layout,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-art {
    min-height: 390px;
  }

  .work-step,
  .work-step.offset {
    width: 100%;
    margin-left: 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wd-container {
    width: min(100% - 30px, var(--container));
  }

  .wd-logo img {
    width: 205px;
  }

  .wd-menu {
    font-size: 13px;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero p {
    font-size: 17px;
  }

  .search-panel {
    gap: 14px;
  }

  .search-panel select,
  .search-panel input,
  .search-panel button {
    height: 66px;
  }

  .wd-section,
  .benefit {
    padding: 65px 0;
  }

  .category-card img,
  .offer-card img {
    height: 260px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .stock-grid {
    grid-template-columns: 1fr;
  }

  .product-detail__image img {
    min-height: 320px;
    padding: 24px;
  }

  .benefit-copy h2,
  .section-title {
    font-size: 42px;
  }

  .benefit-links,
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .benefit-art img {
    width: 82%;
    right: 20px;
  }

  .benefit-right .benefit-art img {
    left: 20px;
  }

  .feature-card {
    min-height: 310px;
    padding: 52px 36px 35px;
  }

  .work-grid {
    gap: 82px;
  }

  .work-step {
    grid-template-columns: 58px 1fr;
  }

  .work-step span {
    font-size: 58px;
  }

}
