



[data-mm-header] {
  position: relative;
}

[data-mm-toggle] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

[data-mm-toggle] span {
  display: block;
  width: 24px;
  height: 2px;
  background: #4c0519;
}

[data-mm-menu] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #17070f;
  opacity: 0;
  visibility: hidden;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

[data-mm-menu].mm-open {
  opacity: 1;
  visibility: visible;
}

[data-mm-menu] ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

[data-mm-menu] ul li a {
  display: block;
  padding: 12px 24px;
  color: #f2eef0;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

[data-mm-menu] ul li a:hover {
  color: #e6329a;
}

[data-mm-close] {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #f2eef0;
  padding: 4px 8px;
  z-index: 1101;
}

@media (min-width: 768px) {
  [data-mm-toggle] {
    display: none !important;
  }
  [data-mm-menu] {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
  }
  [data-mm-menu] ul {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
  [data-mm-menu] ul li a {
    padding: 8px 16px;
    font-size: inherit;
    font-weight: inherit;
  }
  [data-mm-close] {
    display: none !important;
  }
}



.consentBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #17070f;
  color: #f2eef0;
  border-top: 1px solid #3a1f2b;
  padding: 1.618rem 1.618rem 1rem;
  display: none;
}

.consentBar.consentBarOpen {
  display: block;
}

.consentInner {
  width: min(94%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.618rem;
  align-items: center;
}

.consentTitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: #f2eef0;
  margin-bottom: 0.618rem;
}

.consentText {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #cdb9c3;
  margin-bottom: 0;
}

.consentText a {
  color: #e6329a;
  text-decoration: underline;
}

.consentActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.618rem;
  justify-content: flex-end;
}

.consentButton {
  background: none;
  border: 1px solid #6b3a51;
  color: #f2eef0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.618rem 1.2rem;
  cursor: pointer;
}

.consentButton:hover {
  border-color: #e6329a;
  color: #e6329a;
}

.consentPanel {
  width: min(94%, 1180px);
  margin: 1.618rem auto 0;
  border-top: 1px solid #3a1f2b;
  padding-top: 1.618rem;
  display: none;
}

.consentPanel.consentPanelOpen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.618rem;
}

.consentCategory {
  font-size: 0.8125rem;
  color: #cdb9c3;
}

.consentCategoryName {
  display: flex;
  align-items: center;
  gap: 0.618rem;
  color: #f2eef0;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.consentCategoryName input {
  width: 16px;
  height: 16px;
  accent-color: #c2186b;
}

.consentSave {
  grid-column: 1 / -1;
  justify-self: end;
}

@media (max-width: 768px) {
  .consentInner {
    grid-template-columns: 1fr;
  }
  .consentActions {
    justify-content: flex-start;
  }
  .consentPanel.consentPanelOpen {
    grid-template-columns: 1fr;
  }
}
