@font-face {
  font-family: "Cocogoose Light";
  src: url('fonts/Cocogoose-Light.woff2') format('woff2'),
       url('fonts/Cocogoose-Light.woff') format('woff'),
       url('fonts/Cocogoose-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-002F, U+003A-007F, U+0080-10FFFF;
}

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f5f5f5;
  --text: #1a1a1a;
  --muted: #666666;
  --accent: #d32f2f;
  --accent-dark: #b71c1c;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cocogoose Light", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-variant-numeric: normal;
  font-feature-settings: normal;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p, span, div {
  font-variant-numeric: normal;
  font-feature-settings: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 8px;
}

.logo {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 0 10px;
  margin-top: -8px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--surface-2);
  color: var(--accent);
}

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 0 8px;
}

.lang-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.login-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  transition: all 0.2s ease;
}

.login-btn:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.login-btn svg {
  width: 20px;
  height: 20px;
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 76px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  gap: 24px;
}

.hero-image {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  padding: 28px;
  color: #fff;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.slide-1 {
  background-image: url("image/hero-bread.jpg");
  animation-delay: 0s;
}

.slide-2 {
  background-image: url("./image/miwe.jpg");
  animation-delay: 6s;
}

.slide-3 {
  background-image: url("image/miwe1.jpeg");
  animation-delay: 12s;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  margin-bottom: 14px;
}

.hero p {
  color: #f8fafc;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  display: inline-block;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  margin-top: 12px;
}

.floating-contact-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(184, 1, 6, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-contact-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 1, 6, 0.5);
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.login-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.login-modal.active {
  display: flex;
}

.login-modal-content {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.login-modal-close:hover {
  color: var(--text);
}

.login-modal-content h2 {
  margin: 0 0 24px 0;
  font-size: 2rem;
  color: var(--text);
}

.contact-success-content {
  text-align: center;
}

.contact-success-content h2 {
  margin-bottom: 12px;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ecf8f0;
  color: #1f8f3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  border: 2px solid rgba(31, 143, 58, 0.2);
}

.contact-success-message {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.contact-success-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .contact-success-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    margin-bottom: 12px;
  }

  .contact-success-content h2 {
    font-size: 1.6rem;
  }

  .contact-success-message {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}

.login-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.login-form .btn {
  width: 100%;
  margin-top: 8px;
}

.login-info {
  margin: 20px 0 0 0;
  padding: 16px;
  background: var(--surface-2);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.login-contact-phone {
  margin-top: 16px;
  text-align: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.phone-link:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

.phone-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.floating-btn-text {
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184, 1, 6, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 1, 6, 0.5);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 720px) {
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .floating-contact-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-btn-text {
    display: none;
  }

  .back-to-top {
    display: flex;
    width: 48px;
    height: 48px;
    bottom: 20px;
    left: 20px;
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.hero-stats div {
  background: var(--surface);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--text);
}

.hero-stats h4,
.hero-stats p,
.hero-stats span {
  color: var(--text);
}

.hero-stats h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-variant-numeric: normal;
  font-feature-settings: normal;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section {
  padding: 100px 0;
}

#proizvodi {
  padding-top: 40px;
}

#klientet {
  padding-top: 40px;
}

#o-nama {
  padding-top: 20px;
}

#orar {
  padding-top: 20px;
}

#karriera {
  padding-top: 20px;
}

section {
  scroll-margin-top: 90px;
}

#top {
  scroll-margin-top: 0;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

#o-nama p {
  margin-bottom: 20px;
  line-height: 1.8;
}

#o-nama p:last-of-type {
  margin-bottom: 0;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
}

.hero-keywords {
  color: var(--muted);
  margin: 0 0 18px 0;
  font-size: 1rem;
  line-height: 1.7;
}

.seo-location {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-keywords {
  color: var(--muted);
  margin: -24px 0 40px 0;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 900px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  background: var(--surface);
  padding: 0;
  border-radius: 12px;
  border: none;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:has(.card-image) > h3 {
  position: absolute;
  bottom: 110px;
  left: 28px;
  right: 28px;
  padding: 12px 20px;
  margin: 0;
  color: #ffffff;
  z-index: 3;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 56px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card:has(.card-image) > p {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  padding: 12px 20px;
  margin: 0;
  color: #ffffff;
  z-index: 2;
  line-height: 1.4;
  font-size: 0.75rem;
  max-height: 75px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: block;
  width: calc(100% - 40px);
  max-width: calc(100% - 40px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.card:not(:has(.card-image)) > h3,
.card:not(:has(.card-image)) > p {
  position: relative;
  padding: 0 24px;
  margin: 0;
  color: var(--text);
}

.card:not(:has(.card-image)) > h3 {
  padding-top: 24px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
}

.card:not(:has(.card-image)) > p {
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
  max-height: none;
  overflow: visible;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover .card-image {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.image-bread {
  background-image: url("image/gallery-bread.jpg");
}

.image-burek {
  background-image: url("image/gallery-burek.jpg");
}

.image-pastry {
  background-image: url("image/gallery-pastry.jpg");
}

.gallery-card figcaption {
  padding: 12px 16px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.info-box {
  background: var(--surface-2);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.info-box ul {
  padding-left: 0;
  margin-top: 20px;
  list-style: none;
}

.info-box li {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.info-box li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-box li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.info-box li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.nav-mobile-controls {
  display: none;
}

.feature-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-with-bg:not(.delivery-bg):not(.citroen-bg):not(.kruh-bg):not(.control-bg) {
  background-image: url('image/platform-bg.png');
}

.delivery-bg {
  background-image: url('image/delivery.png');
}

.citroen-bg {
  background-image: url('image/citroen.png');
}

.kruh-bg {
  background-image: url('image/kruh1.jpg');
}

.control-bg {
  background-image: url('image/control.jpeg');
}

.info-box .feature-with-bg strong,
.feature-with-bg strong {
  color: #ffffff !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.info-box .feature-with-bg p,
.feature-with-bg p {
  color: #ffffff !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hours h4 {
  margin-bottom: 6px;
}

.contact-list p {
  margin-bottom: 8px;
}

.contact-form {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.map-container {
  margin-top: 40px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

@media (max-width: 720px) {
  .map-container {
    margin-top: 30px;
  }

  .map-container iframe {
    height: 300px;
  }

  .footer-content {
    gap: 12px;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }
}

.logo-slider-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.logo-slide {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  flex: 0 0 100%;
  min-width: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #ffffff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(184, 1, 6, 0.3);
  line-height: 1;
}

.slider-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(184, 1, 6, 0.4);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
  left: -20px;
}

.slider-btn-next {
  right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--accent-dark);
}

.partners-thanks {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partners-thanks-second {
  text-align: center;
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.logo-card {
  background: #000000;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  color: #e5e7eb;
  display: grid;
  place-items: center;
  min-height: 78px;
  position: relative;
}

.logo-card-highlight {
  background: #B80106;
  border: 2px solid #e5e7eb;
}

.logo-card-cistoca {
  background: #0A683A;
  border: 2px solid #e5e7eb;
}

.logo-card-mrvica {
  background: #FDF7EC;
  border: 2px solid #e5e7eb;
}

.logo-card-botanist {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
}

.logo-card-piccolo {
  background: #000000;
  border: 2px solid #e5e7eb;
}

.logo-card-bella {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
}

.logo-card-chevos {
  background: #000000;
  border: 2px solid #e5e7eb;
}

.logo-card-sestica {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
}

.logo-card-tihi {
  background: #151515;
  border: 2px solid #e5e7eb;
}

.logo-card-cinkus {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
}

.logo-card-globus {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
}

.logo-card-korakis {
  background: #000000;
  border: 2px solid #e5e7eb;
}

.logo-card-pedala {
  background: #144F33;
  border: 2px solid #e5e7eb;
}

.logo-card-kodvukusica {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.logo-card-kodvukusica img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: center;
}

.logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
  display: block;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-card-text {
  background: #000000;
  border: 2px solid #e5e7eb;
  color: #ffffff;
  min-height: 120px;
}

.partner-link:hover img {
  transform: scale(1.03);
  transition: transform 0.2s ease;
}

.site-footer {
  background: #0f172a;
  color: #fff;
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-divider {
  width: 100%;
  height: 2px;
  background: #000000;
  margin-bottom: 20px;
  margin-top: 0;
  display: block;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 32px 0 24px;
  display: block;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-links a {
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
  color: #fff;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 64px 0 40px;
  }

  .hero-content {
    flex-direction: column;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    width: 100%;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    padding: 18px 0;
  }

  .nav a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-of-type {
    border-bottom: 1px solid var(--border);
  }

  .nav-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    gap: 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }

  .nav-lang-switch {
    display: flex;
    gap: 8px;
    padding: 0;
  }

  .nav-login-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    padding: 8px 0 4px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .header-right {
    gap: 12px;
  }

  .header-right .lang-switch {
    display: none;
  }

  .header-right .login-btn {
    display: none;
  }

  .header-right .login-btn {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .login-modal-content {
    padding: 24px;
    max-width: 95%;
  }

  .login-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  #o-nama .container {
    padding: 0 20px;
  }

  #proizvodi {
    padding-top: 30px;
  }

  #klientet {
    padding-top: 30px;
  }

  #o-nama {
    padding-top: 15px;
  }

  #orar {
    padding-top: 15px;
  }

  #karriera {
    padding-top: 15px;
  }

  .nav {
    margin-top: 0;
  }

  section {
    scroll-margin-top: 120px;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .menu-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 6px !important;
    padding: 0 0 8px !important;
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
    margin-top: -8px !important;
  }

  .nav.active {
    display: flex !important;
    max-height: none !important;
    padding: 0 0 8px !important;
  }

  .nav a {
    width: auto !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    border-bottom: none !important;
    font-size: 0.8rem !important;
  }

  .brand {
    padding: 6px 0 4px !important;
  }

  .logo {
    width: 80px !important;
    height: 80px !important;
  }

  .header-top {
    gap: 12px !important;
    padding: 0 !important;
  }

  .lang-switch {
    padding: 6px 0 4px !important;
  }

  .lang-btn {
    font-size: 0.8rem !important;
    padding: 5px 10px !important;
    min-width: 38px !important;
  }

  .header-right .login-btn {
    display: none !important;
  }

  .nav-login-btn {
    display: flex !important;
  }

  .hero-actions {
    display: none !important;
  }

  section {
    scroll-margin-top: 80px !important;
  }
}

@media (max-width: 720px) {
  #o-nama {
    scroll-margin-top: 50px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    pointer-events: none;
  }

  .card:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
  }

  .card:hover::before {
    transform: scaleX(0) !important;
  }

  .card:hover .card-image {
    transform: none !important;
  }

  .card:not(:has(.card-image)) {
    padding: 24px;
  }

  .card:has(.card-image) {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  .card:has(.card-image) > h3 {
    padding: 10px 18px;
    bottom: 70px;
    left: 20px;
    right: 20px;
    font-size: 1.15rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: fit-content;
    max-width: calc(100% - 40px);
  }

  .card:has(.card-image) > p {
    padding: 12px 20px;
    bottom: 10px;
    left: 15px;
    right: 15px;
    max-height: 65px;
    font-size: 0.75rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    box-sizing: border-box;
  }

  .card-image {
    height: 200px;
  }

  .card h3 {
    font-size: 1.15rem;
  }

  .lang-btn {
    font-size: 1rem;
    padding: 6px 10px;
    min-width: 36px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .logo-slide {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .slider-btn-prev {
    left: 5px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .slider-btn-next {
    right: 5px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-slide {
    grid-template-columns: 1fr;
  }

  .slider-btn-prev {
    left: 5px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .slider-btn-next {
    right: 5px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text h2 {
    font-size: 1.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stats div {
    width: 100%;
  }

  .container {
    width: 95%;
  }

  #o-nama .container {
    padding: 0 20px;
  }

  #proizvodi {
    padding-top: 20px;
  }

  #klientet {
    padding-top: 20px;
  }

  #o-nama {
    padding-top: 10px;
  }

  #orar {
    padding-top: 10px;
  }

  #karriera {
    padding-top: 10px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    pointer-events: none;
  }

  .card:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
  }

  .card:hover::before {
    transform: scaleX(0) !important;
  }

  .card:hover .card-image {
    transform: none !important;
  }

  .card:not(:has(.card-image)) {
    padding: 20px;
  }

  .card:has(.card-image) {
    padding: 0;
    overflow: hidden;
  }

  .card:has(.card-image) > h3 {
    padding: 10px 16px;
    bottom: 60px;
    left: 16px;
    right: 16px;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: fit-content;
    max-width: calc(100% - 32px);
  }

  .card:has(.card-image) > p {
    padding: 12px 18px;
    bottom: 10px;
    left: 12px;
    right: 12px;
    max-height: 55px;
    font-size: 0.7rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    box-sizing: border-box;
  }

  .card-image {
    height: 180px;
  }

  .logo {
    width: 90px;
    height: 90px;
  }

  .lang-btn {
    font-size: 0.75rem;
    padding: 4px 8px;
    min-width: 34px;
  }

  section {
    scroll-margin-top: 110px;
  }
}

.job-icon {
  line-height: 1;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.job-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.job-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.job-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.job-company {
  font-size: 0.95rem;
  color: #10b981;
  margin: 0;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.job-detail svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-apply {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-apply:hover {
  background: var(--text);
  color: var(--surface);
}

.no-jobs-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 720px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .job-details {
    flex-direction: column;
    gap: 8px;
  }

  .job-actions {
    width: 100%;
  }

  .btn-apply {
    width: 100%;
    text-align: center;
  }
}

.job-card {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(120px, max-content) minmax(140px, max-content) minmax(120px, max-content) auto;
  align-items: center;
  column-gap: 24px;
}

.job-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.job-meta {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.job-actions {
  justify-self: end;
}

@media (max-width: 900px) {
  .job-card {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .job-actions {
    justify-self: stretch;
  }
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.job-meta-label {
  font-size: 0.8rem;
  color: var(--muted);
}
.job-meta-value {
  font-size: 0.95rem;
  color: var(--text);
}

.btn-apply {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.btn-apply:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.hero-text {
  max-width: 560px;
}

.hero-image {
  min-height: 360px;
  padding: 0;
  color: inherit;
}

.hero-text h2 {
  color: var(--text);
}

.hero-text p {
  color: var(--muted);
  line-height: 1.7;
}

.hero .btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  backdrop-filter: blur(6px);
}

.hero .btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    max-width: none;
  }
}

.hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-support {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(211, 47, 47, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .hero-badge {
    font-size: 0.8rem;
  }
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.2), transparent 50%);
  z-index: 1;
}

.hero-image::after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
  backdrop-filter: blur(2px);
}

.hero-list {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.hero-list li {
  margin: 0;
  line-height: 1.6;
}

.hero-list li::marker {
  color: var(--accent);
}

.hero-image::before {
  content: none;
}

.hero-image::after {
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-phone-link:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.contact-phone-link svg {
  width: 16px;
  height: 16px;
}

.contact-email-image {
  height: 18px;
  width: auto;
  vertical-align: middle;
}

.contact-email .email-at {
  font-family: Arial, Helvetica, sans-serif;
}

.contact-email-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.contact-email-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-recaptcha {
  margin: 14px 0 8px;
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
}

.cookie-consent-content {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent-content p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.cookie-consent-accept {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent-accept {
    width: 100%;
  }
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.cookie-policy-link {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.contact-recaptcha {
  display: none;
  margin: 14px 0 8px;
}

.cookie-consent-decline {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #9ca3af;
}
.cookie-consent-decline:hover {
  background: #e5e7eb;
  border-color: #6b7280;
  color: #111827;
}

.site-header {
  background: rgba(255, 255, 255, 0.6);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.footer-link {
  background: transparent;
  border: none;
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.cookie-policy-content {
  max-width: 520px;
}

.cookie-policy-text p {
  margin: 0 0 12px 0;
  color: var(--text);
  line-height: 1.6;
}

.cookie-policy-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.cookie-policy-decline {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #9ca3af;
}

.cookie-policy-decline:hover {
  background: #e5e7eb;
  border-color: #6b7280;
  color: #111827;
}

.hero-image::after {
  background: none !important;
}

@media (max-width: 720px) {
  .hero-actions {
    display: flex !important;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
}

.products-grid .card {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.products-grid .card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border-radius: 0;
}

.products-grid .card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.products-grid .card > h3,
.products-grid .card > p {
  position: absolute;
  left: 18px;
  right: 18px;
  margin: 0;
  color: #ffffff;
  z-index: 2;
  background: none;
  backdrop-filter: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.products-grid .card > h3 {
  bottom: 104px;
  font-size: 1.1rem;
  font-weight: 700;
}

.products-grid .card > p {
  bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.4;
  max-height: 90px;
  overflow: hidden;
}

.products-grid .card:hover .card-image {
  transform: scale(1.05);
}

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

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid .card {
    min-height: 240px;
  }
}

.products-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.cooperation-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cooperation-steps li {
  margin: 0;
}

.cooperation-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.cooperation-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.products-process-btn {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.products-process-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.cooperation-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cooperation-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cooperation-actions .btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.cooperation-actions .btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

@media (max-width: 720px) {
  .cooperation-actions .btn-outline {
    border: 2px solid var(--accent) !important;
    color: var(--accent) !important;
    background: transparent !important;
  }
}