*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-size: 12;
}

.main-container {
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  max-width: 1440px;
}

.main-content {
  min-height: calc(110vh);
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, var(--overlay-opacity));
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.header-spacer {
  position: fixed;
  top: 0;
  z-index: 999;
  height: 40px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s ease;
}

.main-header {
  position: fixed;
  top: 40px;
  z-index: 1000;
  height: 40px;
  width: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-narrow .main-header {
  max-width: 1440px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.header-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-gray);
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

.collection,
.zero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}
.collection {
  left: 20px;
}
.zero {
  right: 20px;
  text-decoration: none;
}
.collection:hover,
.zero:hover {
  color: var(--mid-gray);
}

:root {
  --dark-gray: #212121;
  --mid-gray: #9e9e9e;
  --light-gray: #bdbdbd;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --overlay-opacity: 0.15;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  height: auto;
  box-sizing: border-box;
  cursor: default;
  color: var(--dark-gray);
  background-color: var(--white);
}

.legal-footer-container {
  width: 100%;
  background-color: var(--white);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 20px 0;
}

.legal-footer {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links-container {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
  width: calc(100% - 200px);
  flex-wrap: wrap;
}

.footer-link {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.footer-link:hover {
  color: var(--mid-gray);
}

.footer-link.separator {
  cursor: default;
  pointer-events: none;
}

.footer-link.separator:hover {
  color: var(--dark-gray);
}

.footer-link.instagram-link {
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}

.copyright-footer-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: var(--dark-gray);
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0;
  z-index: 0;
}

.copyright-footer-container.relative {
  width: 100%;
  height: 40px;
  background-color: var(--dark-gray);
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.copyright-footer {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  color: var(--dark-gray);
  font-weight: 400;
  font-size: 12px;
  padding: 0 20px;
}

.copyright-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--off-white);
  line-height: 1;
  text-decoration: none;
  margin-right: 0;
  white-space: nowrap;
}

.cookies-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  background-color: var(--white);
  box-shadow: none;
  z-index: 1002;
  font-family: "Space Grotesk", sans-serif;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  border: 1px solid var(--dark-gray);
}

.cookies-popup.visible {
  visibility: visible;
  opacity: 1;
}

.cookies-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.2s ease;
}

.cookies-close:hover {
  color: var(--mid-gray);
}

.cookies-text-box {
  width: 100%;
  height: 80px;
  background-color: var(--white);
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
}

.cookies-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--dark-gray);
  margin-top: 20px;
  max-width: 600px;
}

.cookies-link {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookies-link:hover {
  color: var(--mid-gray);
}

.cookies-buttons-box {
  width: 100%;
  height: 80px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.cookies-button {
  width: 240px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--dark-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.cookies-button:not(.cookies-button--accept):hover {
  border-color: var(--mid-gray);
}

.cookies-button:not(.cookies-button--accept):hover .cookies-button-text {
  color: var(--mid-gray);
}

.cookies-button--accept {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
}

.cookies-button--accept .cookies-button-text {
  color: var(--white);
}

.cookies-button--accept:hover {
  background-color: var(--mid-gray);
  border-color: var(--mid-gray);
}

.cookies-button-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.settings-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  background-color: var(--white);
  z-index: 1003;
  font-family: "Space Grotesk", sans-serif;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  border: 1px solid var(--dark-gray);
}

.settings-popup.visible {
  visibility: visible;
  opacity: 1;
}

.settings-title-header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.settings-title-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  white-space: nowrap;
}

.settings-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.2s ease;
}

.settings-close:hover {
  color: var(--mid-gray);
}

.settings-info-box {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--dark-gray);
}

.settings-info-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  max-width: 600px;
}

.settings-cookie-header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.settings-cookie-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  white-space: nowrap;
}

.settings-toggle {
  width: 16px;
  height: 16px;
  border: 1px solid var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  transition: border-color 0.2s ease;
}

.settings-toggle:hover {
  border-color: var(--mid-gray);
}

/* Specifično za necessary toggle - crveni hover efekat */
#necessary-toggle:hover {
  border-color: #a52a2a !important;
}

#necessary-toggle:hover .settings-toggle-circle {
  background-color: #a52a2a !important;
}

.settings-toggle-circle {
  width: 12px;
  height: 12px;
  background-color: var(--dark-gray);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.settings-toggle:hover .settings-toggle-circle {
  background-color: var(--mid-gray);
}

.settings-text-box {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--dark-gray);
}

.settings-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  max-width: 600px;
}

.settings-button-box {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}

.settings-button {
  width: 240px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--dark-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.settings-button:hover {
  border-color: var(--mid-gray);
}

.settings-button-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.settings-button:hover .settings-button-text {
  color: var(--mid-gray);
}

.countries-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 960px;
  width: 80%;
  background-color: var(--white);
  z-index: 1004;
  font-family: "Space Grotesk", sans-serif;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  border: 1px solid var(--dark-gray);
  box-sizing: border-box;
}

.countries-popup.visible {
  visibility: visible;
  opacity: 1;
}

.countries-top-section {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--dark-gray);
  background-color: var(--white);
  box-sizing: border-box;
}

.countries-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  white-space: nowrap;
  margin-left: 20px;
}

.countries-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.countries-close:hover {
  color: var(--mid-gray);
}

.countries-middle-section {
  width: 100%;
  height: 40px;
  background-color: var(--white);
  box-sizing: border-box;
}

.countries-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  background-color: var(--white);
  position: relative;
  box-sizing: border-box;
}

.country {
  padding: 0.1em;
  text-align: center;
}

.countries-column {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border-right: 1px solid var(--dark-gray);
  padding: 40px 0;
}

.countries-column:first-child {
  border-left: none;
}

.countries-column:last-child {
  border-right: none;
}

.vertical-divider {
  position: absolute;
  top: -40px;
  width: 1px;
  height: 280px;
  background-color: var(--dark-gray);
  z-index: 1;
}

.vertical-divider-right {
  right: 0;
}

.country-item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--dark-gray);
  cursor: pointer;
  position: relative;
  background-color: var(--white);
  box-sizing: border-box;
}

.country-item.placeholder {
  cursor: default;
}

.country-name {
  margin-left: 20px;
  text-transform: uppercase;
}

.country-currency {
  margin-right: 20px;
  text-transform: uppercase;
}

.country-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dark-gray);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.country-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dark-gray);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.country-item:hover .country-divider-top,
.country-item:hover .country-divider-bottom {
  opacity: 1;
}

.country-item.empty-item {
  cursor: default !important;
  pointer-events: none !important;
}

.country-item.empty-item:hover .country-divider-top,
.country-item.empty-item:hover .country-divider-bottom {
  opacity: 0 !important;
}

.countries-bottom {
  width: 100%;
  height: 40px;
  background-color: var(--white);
  box-sizing: border-box;
}

.footer-link {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--mid-gray);
}

.footer-link.instagram-link {
  margin-right: 20px;
}

.copyright-footer-container {
  width: 100%;
  height: 40px;
  background-color: var(--dark-gray);
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.copyright-footer-content {
  width: 100%;
  margin: 0 auto;
}

.copyright-footer-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--off-white);
  margin-left: 20px;
}

.newsletter-module {
  width: 100%;
  height: 600px;
  background-color: var(--white);
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

.newsletter-elements-group {
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.newsletter-sign-in-text {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--dark-gray);
  cursor: default;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.newsletter-form-wrapper {
  position: relative;
  width: 560px;
  height: 80px;
  margin: 0 auto;
}

.newsletter-form-container {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border: 1px solid var(--dark-gray);
  cursor: text;
  position: relative;
  transition: border-color 0.3s ease;
}

.newsletter-form-wrapper:hover .newsletter-form-container {
  border-color: var(--mid-gray);
}

.newsletter-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  padding: 0 20px;
  color: var(--dark-gray);
  max-width: 100%;
}

.newsletter-input::placeholder {
  color: var(--light-gray);
  font-size: 12px;
}

.subscribe-text-module {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  line-height: 1;
  cursor: pointer;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  z-index: 2;
  white-space: nowrap;
}

.newsletter-form-wrapper:hover .subscribe-text-module {
  color: var(--mid-gray);
}

.confirmation-message,
.error-message {
  position: absolute;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.confirmation-message.visible,
.error-message.visible {
  display: block;
  opacity: 1;
}

.newsletter-form-container.hidden {
  opacity: 0;
  display: none;
}

.subscribe-text-module.hidden {
  opacity: 0;
  display: none;
}

.store-pr1-container {
  display: flex;
  width: 100%;
  position: relative;
  padding-top: 120px;
  margin: 0 auto;
}

.container-a {
  width: 70%;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.privacy-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  background: var(--white);
  margin: 0 auto;
  padding: 14px 0 160px 0;
}

.privacy-content {
  width: calc(100% - 400px);
  margin-left: 360px;
  transition: transform 0.3s ease;
  max-width: 800px;
}

@media (max-width: 1024px) {
  .privacy-content {
    margin-left: 20px;
    width: calc(100% - 40px);
    max-width: 100%;
  }
}

.privacy-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
}

.privacy-text p {
  margin-top: 6px;
  margin-bottom: 6px;
}

.privacy-heading {
  font-weight: 500;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.privacy-text > .privacy-heading:first-child {
  margin-top: 0;
}

.privacy-text strong {
  font-weight: 500;
}

.privacy-link {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s ease;
}

.privacy-link:hover {
  border-bottom-color: var(--dark-gray);
}
.error-message {
  color: #a52a2a;
  text-transform: uppercase;
}
/*
==========================
  Toast notifications
==========================
*/
.toast {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1001;
}
.toast-notification {
  position: relative;
  width: 300px;
  height: auto;
  border: 1px solid var(--dark-gray);
  padding: 10px;
  background-color: white;
  margin-top: 5px;
}
.toast-notification .inner {
  position: relative;
  padding-left: 30px;
}
.toast-notification .inner .icon {
  position: absolute;
  left: 4px;
  top: -2px;
}
.toast-notification h3 {
  font-size: 12px;
  color: var(--dark-gray);
  font-weight: normal;
}

.formWrapper {
  padding: 50px 0;
}

.formWrapper .form,
.formWrapper form {
  display: block;
}

.formWrapper .input-group {
  display: block;
  margin: 20px 0;
}

.formWrapper .input-group label {
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  font-weight: normal;
}

/* Input group textarea styling */
.formWrapper .input-group.textarea {
  display: block;
  padding: 10px 5px;
}

.formWrapper .input-group.textarea textarea {
  min-height: 100px;
  width: 100%;
  margin: 10px 0;
}

/* Input fields */
.formWrapper .input-field {
  border: 1px solid black;
  display: block;
  padding: 10px 5px;
  width: 100%;
  font-size: 12px;
}

/* Error messages */
.formWrapper .error {
  color: red;
}

.form-group input,
.form-group span,
.form-group button,
.form-group .error {
  font-size: 12px;
}

.btn-transparent {
  cursor: pointer;
}

/* Transparent buttons */
.btn-transparent,
.btn-transparent:focus,
.btn-transparent:active {
  border: none;
  background-color: transparent;
  outline: none;
}

.flex-row {
  display: flex;
}

.flex-row .col-2 {
  width: 50%;
}

.description {
  font-size: 12px;
}

@media (max-width: 1024px) {
  .newsletter-form-wrapper {
    width: calc(100% - 40px);
  }
  .newsletter-sign-in-text {
    position: relative;
    top: 0;
    text-align: center;
    left: 0;
    margin-bottom: 30px;
  }

  .countries-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .countries-column {
    padding: 0;
  }

  .footer-links-container {
    width: calc(100% - 40px);
    flex-direction: column;
    margin-left: 20px;
    align-items: start;
  }

  .footer-link.instagram-link {
    position: relative;
    left: 0;
    right: 0;
    margin-top: 50px;
    margin-left: 20px;
  }

  .legal-footer {
    flex-direction: column;
    align-items: start;
  }

  .footer-link.separator {
    display: none;
  }
}
