/*@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');*/

/*
@import "../components/navbar/navbar.css";
@import "../components/footer/footer.css";
@import "../components/trust-bar/trust-bar.css";
@import "../components/newsletter/newsletter.css";
@import "../components/collection-hero/collection-hero.css";
*/
:root {
  --nav-height-mobile: 60px;
  --nav-height-desktop: 89px;
  --white: #ffffff;
  --black: #111111;
  --gray: #f2f2f2;
  --beige: #fdf5f0;
  --pale-sand: #fbf0e5;
  --muted: #666666;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-sans), serif;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

button,
input[type="button"],
input[type="submit"] {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}


.hidden-link {
  display: none !important;
  counter-increment: none;
}

.btn-black,
.btn-see-all,
.btn-white-promo {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-black {
  background: #111;
  color: #fff;
  padding: 18px 45px;
  border: 1px solid #111;
}

.btn-black:hover {
  background: transparent;
  color: #111;
}

.btn-see-all {
  border: 1px solid #000;
  padding: 10px 30px;
  color: #000;
}

.btn-see-all:hover {
  background: #000;
  color: #fff;
}

.btn-white-promo {
  background: #fff;
  color: #000;
  padding: 15px 35px;
  border: 1px solid transparent;
}

.btn-white-promo:hover {
  border-color: #000;
}

.btn-load-more {
  display: inline-block;
  padding: 18px 60px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: #111;
  color: #fff;
}

.badge-container {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  pointer-events: auto;
}

.badge.badge-new {
  background: var(--black);
  color: var(--white);
}

.badge.badge-bestseller {
  background: var(--black);
  color: var(--white);
}

.badge.badge-sale {
  background: #c8a98a;
  color: var(--white);
}

.badge.badge-limited {
  background: #5d4037;
  color: #fff;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: var(--font-serif), serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #111;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-family: var(--font-serif), serif;
  font-size: clamp(26px, 3vw, 42px);
  font-style: italic;
  font-weight: 400;
  border-bottom: 1px solid #111;
  display: inline-block;
  padding-bottom: 10px;
}

.scroll-nav-overlay {
  display: none;
}

.s-arrow {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

a {
  text-decoration: none !important;
}

.wp-block-heading a,
.wp-block-paragraph a {
  color: #1dc6f3;
}

/*Cookie pop up*/
.cookie-consent {
  display: none;
  contain: layout paint;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 999999;
  width: auto;
  max-height: calc(100dvh - 90px);
  overflow-y: auto;
  background: var(--beige);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.2);
  color: var(--black);
  font-family: var(--font-sans);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-consent.is-mounted {
  display: block;
}

/* Close button */
.cookie-consent__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease,
    transform 0.25s ease;
}

.cookie-consent__close:hover {
  background: #333;
  transform: rotate(90deg);
}

/* Header */
.cookie-consent__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 52px 12px 18px;
}

.cookie-consent__header h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-consent__logo {
  display: none;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  line-height: 1;
}

.cookie-consent__logo span {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cookie-consent__logo small {
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

/* Main text */
.cookie-consent__text {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.65;
}

/* Preferences */
.cookie-preferences {
  max-height: 0;
  padding: 0 18px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    padding 0.35s ease;
}

.cookie-preferences.is-open {
  max-height: 500px;
  padding-top: 4px;
  padding-bottom: 18px;
  opacity: 1;
}

.cookie-preference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 64px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.cookie-preference-row>div {
  display: grid;
  gap: 4px;
}

.cookie-preference-row strong {
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.cookie-preference-row>div>span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.45;
}

/* Preference switches */
.cookie-switch {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 21px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch>span {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #d4d4d4;
  transition: background 0.25s ease;
}

.cookie-switch>span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.cookie-switch input:checked+span {
  background: var(--black);
}

.cookie-switch input:checked+span::after {
  transform: translateX(17px);
}

.cookie-switch input:disabled+span {
  cursor: not-allowed;
  opacity: 0.55;
}

/* Save preferences */
.cookie-save-preferences {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease,
    color 0.25s ease;
}

.cookie-save-preferences:hover {
  background: transparent;
  color: var(--black);
}

/* Provider text */
.cookie-consent__provider {
  padding: 9px 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.025);
  color: #888;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

/* Bottom buttons */
.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-action {
  min-width: 0;
  min-height: 46px;
  padding: 10px 5px;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.25s ease,
    color 0.25s ease;
}

.cookie-action:last-child {
  border-right: 0;
}

.cookie-action:hover {
  background: var(--black);
  color: var(--white);
}

.f-contact-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.f-contact-icons img {
    display: block;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
  .s-arrow {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border: 1px solid var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.5s;
    opacity: 1;
  }

  .s-arrow svg {
    width: 16px;
    height: 16px;
    stroke-width: 3;
    fill: none;
  }

  .s-arrow:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.2);
    transition: 0.5s;
  }

  .scroll-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 25;
  }

  .scroll-nav-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 20;
    pointer-events: none;
  }

  .scroll-nav-overlay .s-arrow {
    pointer-events: auto;
  }

  .scroll-nav-boutique {
    position: absolute;
    bottom: 35px;
    right: 35px;
    flex-direction: row;
  }

  .relative {
    position: relative !important;
  }

  /*Cookie pop up*/
  .cookie-consent {
    left: 18px;
    right: auto;
    bottom: 18px;
    width: 390px;
    max-height: calc(100vh - 50px);
    overflow: visible;
  }

  .cookie-consent__close {
    top: -46px;
    right: auto;
    left: 0;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .cookie-consent__header {
    align-items: center;
    padding: 24px 20px 12px;
  }

  .cookie-consent__header h2 {
    font-size: 21px;
  }

  .cookie-consent__logo {
    display: flex;
  }

  .cookie-consent__text {
    padding: 0 20px 20px;
    font-size: 11px;
    line-height: 1.6;
  }

  .cookie-preferences {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cookie-preferences.is-open {
    padding-bottom: 20px;
  }

  .cookie-consent__provider {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 9px;
  }

  .cookie-action {
    min-height: 44px;
    font-size: 10px;
  }
}


/*Back to top css*/
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 900;

  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;
  padding: 0;

  color: #fff;
  background: #111;
  border-radius: 50%;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.back-to-top svg {
  display: block;
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}