/* Variables */
/* schibsted-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/schibsted-grotesk-v7-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* schibsted-grotesk-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/schibsted-grotesk-v7-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Schibsted Grotesk";
  color: #333;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

strong {
  font-weight: 500;
}

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

.container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  background: #3E4144;
  padding: 10px 0;
}
.main-header .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.main-header .top-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-header .company-link {
  font-weight: 500;
  color: #fff;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='e36ffd47-1d77-4f27-ad31-c238e7c661ff' data-name='Layer 1' width='17.3457' height='17.3467' viewBox='0 0 17.3457 17.3467' fill='%23fff'%3E%3Cpolygon points='0 0 0 2.7 12.715 2.7 0.041 15.393 1.951 17.301 14.646 4.587 14.646 17.347 17.346 17.347 17.346 0 0 0'%3E%3C/polygon%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right center;
}
.main-header .company-link:hover {
  color: #E52F2F;
}
.main-header .lang-switch {
  font-size: 0.8rem;
  color: #eee;
  opacity: 0.7;
}
.main-header .lang-switch a {
  color: #eee;
}
.main-header .lang-switch a:hover {
  color: #E52F2F;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-link .logo-slogan {
  margin-left: 15px;
}
@media (max-width: 640px) {
  .logo-link .logo-icon {
    max-width: 40px;
  }
  .logo-link .logo-slogan {
    display: none;
  }
}

/* Content */
.content-wrapper {
  flex: 1;
  padding: 60px 0;
  background: #F9FAFD;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
}

/* Form */
.input-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}
.input-label svg {
  opacity: 0.6;
}

.check-form .input-group {
  position: relative;
  margin-bottom: 20px;
}
.check-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.check-form input::placeholder {
  color: #aaa;
  letter-spacing: 1px;
}
.check-form .input-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #aaa;
}
.check-form .btn-submit {
  background: white;
  border: 1px solid #999;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.check-form .btn-submit:hover {
  background: #eee;
  border-color: #333;
}

.info-text {
  color: #666;
  line-height: 1.6;
  font-size: 1.25rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .info-text {
    font-size: 1rem;
  }
}

/* Result */
.status-message {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4caf50;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.status-message .check-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert-danger {
  margin: 30px auto;
}

.alert-danger,
.status-message.status-unknown {
  color: #E52F2F;
}

.result-details {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.meta-data {
  margin-bottom: 20px;
}
.meta-data div {
  margin-bottom: 5px;
}
.meta-data .highlight-green {
  color: #4caf50;
}

.product-grid-placeholder {
  margin-top: 20px;
}

.copyright-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
}

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

.error-debug {
  color: #E52F2F;
  font-size: 1rem;
  margin-top: 10px;
}

/* Footer */
.main-footer {
  border-top: 5px solid #E52F2F;
  position: relative;
  color: white;
  background: #000;
  padding-top: 60px;
}
.main-footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  opacity: 0.4;
  z-index: 1;
}
.main-footer .footer-content {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.main-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main-footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.main-footer .footer-brand {
  max-width: 300px;
}
.main-footer .footer-brand h4 {
  margin-bottom: 10px;
}
.main-footer .footer-brand p {
  color: #ccc;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.main-footer .footer-brand .footer-url {
  font-size: 0.875rem;
  color: #aaa;
}
.main-footer .footer-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.main-footer .footer-address {
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: right;
}
@media (max-width: 768px) {
  .main-footer .footer-address {
    text-align: left;
  }
}
.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #aaa;
}
.main-footer .footer-bottom .footer-nav a {
  margin-right: 15px;
}
.main-footer .footer-bottom .footer-nav a:hover {
  color: white;
}

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