@charset "UTF-8";
/*
  L'ordre des imports : 
    - reset
    - vendors
    - pages
    - themes
    - layout
    - components
*/
.alert {
  position: fixed;
  top: 100px;
  right: -400px;
  max-width: 450px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.alert.show {
  right: 20px;
  animation: slideInFromRight 0.3s ease;
}
.alert.hide {
  right: -400px;
  opacity: 0;
  animation: slideOutToRight 0.3s ease;
}
.alert.alert-danger {
  background-color: rgb(232, 127, 23);
  color: white;
  border-color: rgb(232, 127, 23);
}
.alert.alert-success {
  background-color: rgb(119, 224, 203);
  color: rgb(30, 74, 65);
  border-color: #c3e6cb;
}
.alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}
.alert .alert-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: currentColor;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  opacity: 0.7;
}
.alert .alert-close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.alert .alert-close:active {
  transform: scale(0.95);
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.notification-toasts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.notification-toast {
  position: relative;
  pointer-events: auto;
  min-width: 220px;
  max-width: 420px;
  padding: 14px 22px;
  border-radius: 16px;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(58, 45, 41, 0.18);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.notification-toast.notification-toast--success {
  background: #5E7344;
}
.notification-toast.notification-toast--error {
  background: #A2594F;
}
.notification-toast.notification-toast--hide {
  opacity: 0;
  transform: translateY(12px);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .is-turbo-nav main,
  .is-turbo-nav .auth {
    animation: pageFadeIn 0.35s ease both;
  }
}
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/bricolage-grotesque-latin-k0HXNf5.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/hanken-grotesk-latin-vOuBqtB.woff2") format("woff2");
}
body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3A2D29;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
  line-height: 1.15;
}

.display {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.25rem;
}

.form-error {
  margin-top: 0.5rem;
}
.form-error .error-message {
  display: flex;
  align-items: center;
  color: rgb(238, 155, 30);
  font-size: 0.875rem;
  /* background-color: #fef2f2;
  border: 1px solid #fecaca; */
  /*  border-radius: 4px; */
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
}
.form-error .error-message .icon-alert {
  margin-right: 0.5rem;
  color: rgb(238, 155, 30);
}
.form-error .error-message .icon-alert::before {
  content: "⚠️";
}
.form-error .error-message:last-child {
  margin-bottom: 0;
}

.login__form-item .form-control.is-invalid,
.login__form-item input.is-invalid {
  border-color: red;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #A2594F;
}

.disp {
  font-family: "Bricolage Grotesque", serif;
}

.hero {
  padding: 170px 0 90px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

.hero__eyebrow {
  margin-bottom: 24px;
  display: inline-block;
}

.hero__title {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 800;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero__title .o {
  color: #A2594F;
}
.hero__title .u {
  position: relative;
  display: inline-block;
}
.hero__title .u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.09em;
  background: #CE8C7E;
  border-radius: 4px;
}

.hero__lead {
  margin-top: 28px;
  max-width: 440px;
  font-size: 19px;
  color: #6E5A52;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6E5A52;
}
.hero__rating b {
  color: #A2594F;
  letter-spacing: 2px;
}

.hero__media {
  position: relative;
}

.hero__blob {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 48% 52% 57% 43%/45% 50% 50% 55%;
  overflow: hidden;
  background: #F0E6DE;
  box-shadow: 0 40px 80px -40px rgba(50, 36, 27, 0.5);
}
.hero__blob img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  margin-top: -6%;
}

.hero__chip {
  position: absolute;
  background: #FBF7F4;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -22px rgba(50, 36, 27, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__chip--tl {
  top: 8%;
  left: -26px;
}
.hero__chip--br {
  bottom: 10%;
  right: -22px;
}
@media (max-width: 980px) {
  .hero__chip {
    padding: 10px 14px;
  }
  .hero__chip--tl {
    left: 10px;
  }
  .hero__chip--br {
    right: 10px;
  }
}
.hero__chip-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero__chip b {
  font-family: "Bricolage Grotesque", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}
.hero__chip small {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E5A52;
  white-space: nowrap;
}
.hero__chip .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #7E9C89;
  display: grid;
  place-items: center;
  color: #FBF7F4;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
}

.ticker {
  background: #A2594F;
  color: #FBF7F4;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker[data-reveal] {
  transition: opacity 1.8s ease;
}
.ticker__row {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: ticker-slide 30s linear infinite;
  width: max-content;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
  font-size: 21px;
}
.ticker__item::before {
  content: "✦";
  color: #CE8C7E;
}

@keyframes ticker-slide {
  to {
    transform: translateX(-50%);
  }
}
.products {
  padding: 110px 0 40px;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 66px;
}
.sec-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.sec-head h2 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-bottom: 0.06em;
}
.sec-head p {
  max-width: 330px;
  color: #6E5A52;
  font-size: 15px;
}
@media (max-width: 680px) {
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #FBF7F4;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: 0 20px 40px -16px rgba(50, 36, 27, 0.18);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: -1;
}
.card:hover {
  transform: translateY(-6px);
}
.card:hover::after {
  opacity: 1;
}
.card__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #F0E6DE;
  aspect-ratio: 1/1;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.card:hover .card__media img {
  transform: scale(1.06);
}
.card__pill {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #A2594F;
  color: #FBF7F4;
  padding: 6px 13px;
  border-radius: 30px;
  white-space: nowrap;
}
.card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(248, 241, 230, 0.9);
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s;
}
.card:hover .card__fav {
  opacity: 1;
  transform: none;
}
.card__body {
  padding: 16px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.card__name {
  font-family: "Bricolage Grotesque", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.05;
}
.card__desc {
  font-size: 14px;
  color: #6E5A52;
  flex: 1;
}
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.card__price {
  font-family: "Bricolage Grotesque", serif;
  font-size: 22px;
  font-weight: 700;
}
.card__add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3A2D29;
  color: #FBF7F4;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.card__add:hover {
  background: #A2594F;
}
.card__add:disabled {
  cursor: default;
  opacity: 0.65;
}

.products__more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.35s;
  text-decoration: none;
}
.btn--solid {
  background: #A2594F;
  color: #FBF7F4;
}
.btn--solid:hover {
  background: #894639;
}
.btn--ghost {
  border-color: #3A2D29;
  color: #3A2D29;
}
.btn--ghost:hover {
  background: #3A2D29;
  color: #FBF7F4;
}

.story {
  padding: 120px 0;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}
.story__media {
  position: relative;
}
.story__media-frame {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #F0E6DE;
  box-shadow: 0 40px 80px -44px rgba(50, 36, 27, 0.5);
}
.story__media-frame img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  margin-top: -6%;
}
.story__badge {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: #7E9C89;
  color: #FBF7F4;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: 15px;
  padding: 14px;
  transform: rotate(-8deg);
}
.story h2 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.story p {
  color: #6E5A52;
  margin-bottom: 18px;
  max-width: 520px;
}
.story__quote {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.35;
  color: #3A2D29;
  background: #FBF7F4;
  border-radius: 18px;
  padding: 24px 26px;
  margin: 28px 0;
}
.story__sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.story__sign b {
  font-weight: 700;
}
.story__sign small {
  color: #6E5A52;
}
.story__av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #CE8C7E;
  color: #FBF7F4;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
}

.values {
  padding: 30px 0 120px;
}
.values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .values__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .values__list {
    grid-template-columns: 1fr;
  }
}

.value {
  background: #28303E;
  color: #FBF7F4;
  border-radius: 26px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.value:nth-child(2) {
  background: #A2594F;
}
.value:nth-child(3) {
  background: #7E9C89;
}
.value::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--value-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.value:nth-child(2)::before {
  opacity: 0.06;
}
.value:nth-child(3)::before {
  opacity: 0.17;
}
.value__num {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 1;
  font-family: "Bricolage Grotesque", serif;
  font-size: 60px;
  font-weight: 800;
  opacity: 0.22;
  line-height: 1;
}
.value h4 {
  position: relative;
  z-index: 1;
  font-family: "Bricolage Grotesque", serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}
.value p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  opacity: 0.86;
}

.testi {
  padding: 110px 0;
  background: #F0E6DE;
}
.testi__head {
  text-align: center;
  margin-bottom: 54px;
}
.testi__head h2 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 68px);
  margin-top: 12px;
  letter-spacing: -0.03em;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .testi__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .testi__grid {
    grid-template-columns: 1fr;
  }
}
.testi__carousel {
  overflow: hidden;
}
.testi__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testi__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
}
@media (max-width: 980px) {
  .testi__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 680px) {
  .testi__slide {
    flex: 0 0 100%;
  }
}
.testi__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testi__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 45, 41, 0.16);
  background: transparent;
  color: #3A2D29;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.testi__arrow:hover {
  background: #3A2D29;
  color: #FBF7F4;
  border-color: #3A2D29;
}

.quote {
  background: #FBF7F4;
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 50px -38px rgba(58, 45, 41, 0.5);
  height: 100%;
}
.quote__stars {
  color: #A2594F;
  letter-spacing: 3px;
  font-size: 15px;
}
.quote p {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
}
.quote__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.quote__who b {
  display: block;
  font-size: 14px;
}
.quote__who small {
  font-size: 12px;
  color: #6E5A52;
}
.quote__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #CE8C7E;
  color: #FBF7F4;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
}

.news {
  padding: 120px 0;
}
.news__inner {
  position: relative;
  background: #A2594F;
  color: #FBF7F4;
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.news__inner::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -80px;
}
.news .eyebrow {
  color: rgba(248, 241, 230, 0.78);
}
.news h2 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 0.95;
  margin: 14px 0 16px;
  letter-spacing: -0.03em;
}
.news p {
  max-width: 460px;
  margin: 0 auto 34px;
  color: rgba(248, 241, 230, 0.85);
}
.news__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 7px 7px 7px 24px;
}
.news__form input {
  flex: 1;
  background: none;
  border: none;
  color: #FBF7F4;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.news__form input::placeholder {
  color: rgba(248, 241, 230, 0.65);
}
.news__form button {
  background: #3A2D29;
  color: #FBF7F4;
  border: none;
  border-radius: 30px;
  padding: 14px 26px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.news__form button:hover {
  background: #221a18;
}
@media (max-width: 680px) {
  .news__form {
    flex-direction: column;
    border-radius: 22px;
  }
  .news__form button {
    width: 100%;
  }
}
.news__msg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  animation: fadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.news__msg--error {
  color: #f4a261;
}
.news__msg--ok {
  color: rgba(255, 255, 255, 0.85);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 680px) {
  .wrap {
    padding: 0 22px;
  }
  .hero {
    padding: 130px 0 70px;
  }
}
.product-detail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-block: 130px 5rem;
}
@media screen and (max-width: 980px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 110px 4rem;
  }
}

.product-media {
  align-self: start;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #F0E6DE;
  box-shadow: 0 40px 80px -50px rgba(50, 36, 27, 0.5);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-info__back {
  font-size: 0.875rem;
  color: #6E5A52;
  margin-bottom: 1.5rem;
}
.product-info__back:hover {
  color: #A2594F;
}
.product-info__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #A2594F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.product-info__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 0.75rem;
}
.product-info__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6E5A52;
}
.product-info__rating-stars {
  color: #A2594F;
  display: flex;
  gap: 0.1rem;
}
.product-info__rating a {
  text-decoration: underline;
  color: #6E5A52;
}
.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-info__price-current {
  font-family: "Bricolage Grotesque", serif;
  font-size: 2.625rem;
  font-weight: 700;
  color: #A2594F;
}
.product-info__price-old {
  font-size: 1rem;
  color: #6E5A52;
  text-decoration: line-through;
}
.product-info__price-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(126, 156, 137, 0.12);
  color: #5E7355;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.qty-selector__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3A2D29;
  margin-right: 0.25rem;
}
.qty-selector__input {
  width: 52px;
  text-align: center;
  border: none;
  padding: 0.5rem 0;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3A2D29;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.qty-selector__input::-webkit-inner-spin-button, .qty-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 45, 41, 0.16);
  background: #FBF7F4;
  color: #3A2D29;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.qty-btn:hover {
  border-color: #A2594F;
  color: #A2594F;
}

.product-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  .product-cta {
    flex-direction: column;
  }
}
.product-cta .btn--solid {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  flex: 1;
  justify-content: center;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #FBF7F4;
  border-radius: 16px;
}
@media screen and (max-width: 680px) {
  .guarantees {
    grid-template-columns: 1fr;
  }
}
.guarantees__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6E5A52;
}
.guarantees__item svg {
  width: 18px;
  height: 18px;
  color: #7E9C89;
  flex-shrink: 0;
}

.accordion {
  border-top: 1px solid rgba(58, 45, 41, 0.16);
}
.accordion__item {
  border-bottom: 1px solid rgba(58, 45, 41, 0.16);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A2D29;
  cursor: pointer;
  text-align: left;
}
.accordion__trigger svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #6E5A52;
}
.accordion__trigger[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #6E5A52;
  font-size: 0.875rem;
  line-height: 1.7;
}
.accordion__panel.is-open {
  max-height: 300px;
}
.accordion__panel-inner {
  padding: 0 0 1.25rem;
}

.trust {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-block: 4rem;
  border-top: 1px solid rgba(58, 45, 41, 0.16);
}
@media screen and (max-width: 980px) {
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .trust {
    grid-template-columns: 1fr;
  }
}
.trust__item {
  text-align: center;
}
.trust__item svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  color: #7E9C89;
}
.trust__item-title {
  font-family: "Bricolage Grotesque", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 0.25rem;
}
.trust__item-text {
  font-size: 0.75rem;
  color: #6E5A52;
}

.related {
  padding-block: 1rem 5rem;
}
.related .sec-head {
  margin-bottom: 40px;
}

.cart-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-block: 130px 5rem;
}
@media screen and (max-width: 980px) {
  .cart-page {
    padding-block: 110px 4rem;
  }
}
.cart-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 980px) {
  .cart-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bag,
.cart-aside {
  min-width: 0;
}

.cart-aside {
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 980px) {
  .cart-aside {
    position: static;
  }
}

.ship-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6E5A52;
  margin-bottom: 0.85rem;
}
.ship-note strong {
  font-family: "Bricolage Grotesque", serif;
  color: #5E7355;
}

.bag {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bag__empty {
  text-align: center;
  padding: 5rem 0;
  color: #6E5A52;
}
.bag__empty a {
  color: #A2594F;
  font-weight: 600;
  text-decoration: underline;
}

.bag-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(58, 45, 41, 0.16);
}
.bag-item__image {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #F0E6DE;
  flex-shrink: 0;
}
.bag-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bag-item__meta {
  flex: 1;
  min-width: 0;
}
.bag-item__name {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 0.25rem;
}
.bag-item__variant {
  font-size: 0.75rem;
  color: #6E5A52;
  margin-bottom: 0.5rem;
}
.bag-item__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bag-item__qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.bag-item__qty input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  padding: 0;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3A2D29;
  outline: none;
  -moz-appearance: textfield;
}
.bag-item__qty input::-webkit-inner-spin-button, .bag-item__qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bag-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #6E5A52;
  transition: color 0.2s, background 0.2s;
}
.bag-item__remove:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bag-item__remove svg {
  width: 18px;
  height: 18px;
}
.bag-item__remove:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
}
.bag-item__price {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A2D29;
  text-align: right;
  min-width: 80px;
}
@media screen and (max-width: 680px) {
  .bag-item {
    flex-wrap: wrap;
    column-gap: 1rem;
  }
  .bag-item .bag-item__image {
    width: 72px;
    height: 72px;
  }
  .bag-item .bag-item__actions {
    flex-wrap: wrap;
  }
  .bag-item .bag-item__price {
    width: 100%;
    text-align: right;
    margin-top: 0.5rem;
  }
}

.cart-summary {
  background: #FBF7F4;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
}
.cart-summary__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 1.5rem;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.875rem;
  color: #6E5A52;
}
.cart-summary__row--total {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3A2D29;
  border-top: 2px solid rgba(58, 45, 41, 0.16);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.cart-summary__row--discount {
  color: #5E7355;
}
.cart-summary__promo {
  display: flex;
  gap: 0.5rem;
  margin-block: 1rem;
}
.cart-summary__promo input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(58, 45, 41, 0.16);
  border-radius: 9999px;
  font-size: 0.875rem;
  background: #EDE3DA;
  outline: none;
  min-width: 0;
}
.cart-summary__promo input:focus {
  border-color: #A2594F;
}
.cart-summary__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background: #A2594F;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(162, 89, 79, 0.3);
  width: 100%;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
.cart-summary__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-summary__cta:hover:not(:disabled) {
  background: #894639;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(162, 89, 79, 0.4);
}
.cart-summary__reassurance {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #6E5A52;
}
.cart-summary__reassurance svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 0.25rem;
  color: #5E7344;
}
.cart-summary__empty {
  text-align: center;
  padding: 2rem 0;
  color: #6E5A52;
}

html.page-auth, body.page-auth {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}
@media screen and (max-width: 860px) {
  .auth {
    grid-template-columns: 1fr;
  }
}
.auth__brand {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #3A2D29;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  overflow: hidden;
}
.auth__brand-logo {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  z-index: 2;
}
.auth__brand-logo .logo__mark {
  background: #7E9C89;
  color: #FBF7F4;
}
.auth__brand .logo {
  color: #FBF7F4;
}
@media screen and (max-width: 860px) {
  .auth__brand {
    display: none;
  }
}
.auth__brand-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}
.auth__brand-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth__brand-halo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(162, 89, 79, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.auth__brand-content {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  max-width: 340px;
}
.auth__brand-pitch {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.auth__brand-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.auth__brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.auth__brand-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #A2594F;
}
.auth__brand-quote {
  margin-top: 3rem;
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.auth__form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  background: #EDE3DA;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.auth__form-inner {
  width: 100%;
  max-width: 420px;
  min-height: 480px;
}
.auth__form-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6E5A52;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.auth__form-back:hover {
  color: #3A2D29;
}
.auth__form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(58, 45, 41, 0.16);
}
.auth__form-tabs button {
  flex: 1;
  padding: 0.75rem 0;
  text-align: center;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  color: #6E5A52;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.auth__form-tabs button.is-active {
  color: #3A2D29;
  border-bottom-color: #A2594F;
}
.auth__field {
  margin-bottom: 1.25rem;
}
.auth__field ul {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}
.auth__field ul li {
  font-size: 0.75rem;
  font-weight: 500;
  color: #A2594F;
}
.auth__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3A2D29;
  margin-bottom: 0.4rem;
}
.auth__field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 12px;
  background: #FBF7F4;
  font-size: 1rem;
  color: #3A2D29;
  outline: none;
  transition: background 0.2s;
}
.auth__field input::placeholder {
  color: rgba(58, 45, 41, 0.35);
}
.auth__field input:focus {
  background: #fff;
}
.auth__field input.valid {
  background: #eff1ec;
}
.auth__field input.invalid {
  background: #f6eeed;
}
.auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.auth__options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6E5A52;
  cursor: pointer;
}
.auth__options label input[type=checkbox] {
  accent-color: #A2594F;
  width: 16px;
  height: 16px;
}
.auth__options a {
  color: #A2594F;
  font-weight: 500;
}
.auth__options a:hover {
  text-decoration: underline;
}
.auth__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background: #A2594F;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(162, 89, 79, 0.3);
  width: 100%;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}
.auth__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth__submit:hover:not(:disabled) {
  background: #894639;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(162, 89, 79, 0.4);
}
.auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #6E5A52;
  font-size: 0.75rem;
}
.auth__divider::before, .auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(58, 45, 41, 0.16);
}
.auth__social {
  display: flex;
  gap: 1rem;
}
.auth__social button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background: transparent;
  color: #3A2D29;
  border: 1.5px solid rgba(58, 45, 41, 0.16);
  width: 100%;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.auth__social button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth__social button:hover:not(:disabled) {
  border-color: #3A2D29;
  background: rgba(58, 45, 41, 0.04);
}
.auth__switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6E5A52;
}
.auth__switch button {
  background: none;
  border: none;
  color: #A2594F;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}
.auth__switch button:hover {
  text-decoration: underline;
}
.auth__panel[hidden] {
  display: none;
}

.password-requirements {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.password-requirements small {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #6E5A52;
  font-size: 0.75rem;
}
.password-requirements ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.password-requirements li {
  font-size: 11px;
  color: #6E5A52;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
}
.password-requirements li[data-valid=true] {
  color: #5E7344;
}
.password-requirements li .requirement-icon {
  font-size: 10px;
}

.account-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  padding-block: 130px 5rem;
}
@media screen and (max-width: 980px) {
  .account-page {
    grid-template-columns: 1fr;
  }
}

.account-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.account-header__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #3A2D29;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FBF7F4;
  flex-shrink: 0;
}
.account-header__greeting {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #3A2D29;
}
.account-header__since {
  font-size: 0.875rem;
  color: #6E5A52;
  margin-top: 0.25rem;
}

.account-sidebar {
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 980px) {
  .account-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
}
.account-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6E5A52;
  transition: all 0.2s;
}
.account-sidebar__link:hover {
  background: rgba(58, 45, 41, 0.04);
  color: #3A2D29;
}
.account-sidebar__link.is-active {
  background: rgba(162, 89, 79, 0.08);
  color: #A2594F;
  font-weight: 600;
}
.account-sidebar__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.account-sidebar__logout {
  margin-top: 1.5rem;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 680px) {
  .account-stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #FBF7F4;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.stat-card__icon--terra {
  background: rgba(162, 89, 79, 0.12);
  color: #A2594F;
}
.stat-card__icon--olive {
  background: rgba(126, 156, 137, 0.12);
  color: #7E9C89;
}
.stat-card__icon--clay {
  background: rgba(206, 140, 126, 0.12);
  color: #CE8C7E;
}
.stat-card__value {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #3A2D29;
  line-height: 1;
}
.stat-card__label {
  font-size: 0.875rem;
  color: #6E5A52;
  margin-top: 0.25rem;
}

.orders-section {
  margin-bottom: 2.5rem;
}
.orders-section__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 1rem;
}

.order-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #FBF7F4;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.order-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(58, 45, 41, 0.14);
}
@media screen and (max-width: 680px) {
  .order-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
.order-row__images {
  display: flex;
  flex-shrink: 0;
}
.order-row__images img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #FBF7F4;
}
.order-row__images img + img {
  margin-left: -16px;
}
.order-row__id {
  font-family: "Bricolage Grotesque", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3A2D29;
  min-width: 100px;
}
.order-row__status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.order-row__status--done {
  background: rgba(94, 115, 68, 0.1);
  color: #5E7344;
}
.order-row__status--transit {
  background: rgba(162, 89, 79, 0.1);
  color: #A2594F;
}
.order-row__total {
  margin-left: auto;
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A2D29;
  white-space: nowrap;
}
.order-row__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  background: transparent;
  color: #3A2D29;
  border: 1.5px solid rgba(58, 45, 41, 0.16);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
.order-row__action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.order-row__action:hover:not(:disabled) {
  border-color: #3A2D29;
  background: rgba(58, 45, 41, 0.04);
}
.order-row__invoice {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A2594F;
  white-space: nowrap;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(58, 45, 41, 0.16);
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
}
.order-row__invoice:hover {
  background: rgba(162, 89, 79, 0.08);
  color: #894639;
}
.order-row__invoice svg {
  flex-shrink: 0;
}

.account-panel[hidden] {
  display: none;
}

.order-row__date {
  font-size: 0.75rem;
  color: #6E5A52;
  white-space: nowrap;
}

.account-empty {
  color: #6E5A52;
  font-size: 0.875rem;
  padding: 1rem 0;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.address-card {
  position: relative;
  background: #FBF7F4;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(58, 45, 41, 0.12);
}
.address-card--default {
  background: rgba(162, 89, 79, 0.03);
}
.address-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FBF7F4;
  background: #A2594F;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
}
.address-card__label {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 0.5rem;
}
.address-card__body {
  font-size: 0.875rem;
  color: #6E5A52;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.address-card__actions form {
  display: inline;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  color: #6E5A52;
  text-decoration: underline;
  transition: color 0.2s;
}
.link-btn:hover {
  color: #A2594F;
}
.link-btn--danger:hover {
  color: #e74c3c;
}

.account-section {
  background: #FBF7F4;
  border-radius: 24px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
  margin-bottom: 1rem;
}
.account-section__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 1.25rem;
}
.account-section--danger {
  border: 1.5px solid rgba(231, 76, 60, 0.2);
}
.account-section .btn--danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  background: transparent;
  color: #e74c3c;
  border: 1.5px solid rgba(231, 76, 60, 0.3);
}
.account-section .btn--danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.account-section .btn--danger:hover {
  background: rgba(231, 76, 60, 0.06);
  border-color: #e74c3c;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3A2D29;
}
.field input:not([type=checkbox]) {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-size: 0.875rem;
  color: #3A2D29;
  background: #EDE3DA;
  outline: none;
  transition: background 0.2s;
}
.field input:not([type=checkbox]):focus {
  background: rgba(58, 45, 41, 0.05);
}
.field input:not([type=checkbox]).valid {
  background: rgba(94, 115, 68, 0.1);
}
.field input:not([type=checkbox]).invalid {
  background: rgba(162, 89, 79, 0.1);
}
.field input:not([type=checkbox]):disabled {
  color: #6E5A52;
  background: rgba(58, 45, 41, 0.04);
  cursor: not-allowed;
}
.field__hint {
  font-size: 0.75rem;
  color: #6E5A52;
}
.field ul {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}
.field ul li {
  font-size: 0.75rem;
  font-weight: 500;
  color: #A2594F;
}
.field--check {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.field--check label {
  font-weight: 500;
  color: #6E5A52;
}

.address-form__row,
.account-section form.address-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 680px) {
  .address-form__row,
  .account-section form.address-form__row {
    grid-template-columns: 1fr;
  }
}
.address-form__actions,
.account-section form.address-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-block: 130px 5rem;
}
@media screen and (max-width: 980px) {
  .contact {
    padding-block: 110px 4rem;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
@media screen and (max-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1.25rem;
  color: #3A2D29;
}
.contact__lead {
  color: #6E5A52;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36ch;
}
.contact__details {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: #6E5A52;
  line-height: 1.5;
}
.contact__details svg {
  width: 22px;
  height: 22px;
  color: #A2594F;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__form-wrap {
  background: #FBF7F4;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
}
@media screen and (max-width: 680px) {
  .contact__form-wrap {
    padding: 1.5rem;
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 680px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-size: 0.875rem;
  color: #3A2D29;
  background: #EDE3DA;
  outline: none;
  resize: vertical;
  transition: background 0.2s;
}
.contact-form textarea:focus {
  background: rgba(58, 45, 41, 0.05);
}
.contact-form textarea.valid {
  background: rgba(94, 115, 68, 0.1);
}
.contact-form textarea.invalid {
  background: rgba(162, 89, 79, 0.1);
}
.contact-form .btn--block {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-block: 130px 5rem;
}
@media screen and (max-width: 980px) {
  .checkout {
    padding-block: 110px 4rem;
  }
}
.checkout__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  color: #3A2D29;
}
.checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 980px) {
  .checkout__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.checkout__main {
  min-width: 0;
}
.checkout__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 980px) {
  .checkout__aside {
    order: -1;
  }
}
.checkout__test-hint {
  background: rgba(126, 156, 137, 0.12);
  border: 1px dashed #5E7355;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: #3A2D29;
  margin-bottom: 1.5rem;
}
.checkout__test-hint strong {
  display: block;
  color: #5E7355;
  margin-bottom: 0.15rem;
}
.checkout__test-hint code {
  font-family: ui-monospace, monospace;
  background: rgba(58, 45, 41, 0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
}
.checkout__payment-element {
  margin-bottom: 1.25rem;
  min-height: 40px;
}
.checkout__error {
  color: #894639;
  font-size: 0.875rem;
  min-height: 1.2em;
  margin-bottom: 0.75rem;
}
.checkout__card {
  background: #FBF7F4;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.08);
}
.checkout__card-title {
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3A2D29;
  margin-bottom: 1rem;
}
.checkout__address {
  font-size: 0.875rem;
  color: #6E5A52;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.checkout__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6E5A52;
  padding: 0.35rem 0;
}
.checkout__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #6E5A52;
}
.checkout__row--discount {
  color: #5E7355;
}
.checkout__row--total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(58, 45, 41, 0.16);
  font-family: "Bricolage Grotesque", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3A2D29;
}

.checkout-result {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-block: 150px 6rem;
  text-align: center;
  max-width: 620px;
}
.checkout-result__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.75rem;
}
.checkout-result__icon svg {
  width: 44px;
  height: 44px;
}
.checkout-result__icon--ok {
  background: rgba(94, 115, 68, 0.14);
  color: #5E7344;
}
.checkout-result__icon--ko {
  background: rgba(162, 89, 79, 0.14);
  color: #A2594F;
}
.checkout-result__title {
  font-family: "Bricolage Grotesque", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #3A2D29;
  margin-bottom: 1rem;
}
.checkout-result__lead {
  color: #6E5A52;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.checkout-result__order {
  font-size: 1rem;
  color: #3A2D29;
  margin-bottom: 2rem;
}
.checkout-result__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 20px 0;
  transition: 0.4s;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(228, 217, 208, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(58, 45, 41, 0.15);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.header.is-scrolled {
  padding: 11px 0;
}
.header.is-scrolled::before {
  opacity: 1;
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 90;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 59;
  opacity: 0;
  transition: opacity 0.3s;
}
.header__overlay.is-open {
  display: block;
  opacity: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Bricolage Grotesque", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #7E9C89;
  color: #FBF7F4;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", serif;
  font-size: 19px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: #A2594F;
  transition: right 0.4s;
}
.nav a:hover::after {
  right: 0;
}

.lang {
  display: flex;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
}
.lang button, .lang a {
  background: none;
  border: none;
  cursor: pointer;
  color: #6E5A52;
  font: inherit;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  opacity: 0.45;
  transition: opacity 0.2s, color 0.2s;
}
.lang button.is-active, .lang a.is-active {
  opacity: 1;
  color: #3A2D29;
}
.lang button:hover, .lang a:hover {
  opacity: 1;
}
.lang span {
  color: rgba(58, 45, 41, 0.16);
  opacity: 0.5;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  color: #3A2D29;
  transition: color 0.2s;
}
.icon-btn:hover {
  color: #A2594F;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #3A2D29;
  transition: color 0.2s;
}
.cart-btn:hover {
  color: #A2594F;
}
.cart-btn .badge {
  position: absolute;
  top: -7px;
  right: -9px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 20px;
  background: #A2594F;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.account-menu {
  position: relative;
}
.account-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: #3A2D29;
  padding: 6px 4px;
  transition: color 0.2s;
}
.account-menu__chevron {
  transition: transform 0.25s;
}
.account-menu__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 190px;
  background: #FBF7F4;
  border-radius: 14px;
  box-shadow: 0 22px 44px -22px rgba(50, 36, 27, 0.55);
  border: 1px solid rgba(58, 45, 41, 0.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 70;
}
.account-menu__dropdown a {
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: #3A2D29;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.account-menu__dropdown a:hover {
  background: #EDE3DA;
  color: #A2594F;
}
.account-menu:hover .account-menu__trigger {
  color: #A2594F;
}
.account-menu:hover .account-menu__chevron {
  transform: rotate(180deg);
}
.account-menu:hover .account-menu__dropdown, .account-menu:focus-within .account-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #3A2D29;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav--mobile {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 24px;
  font-size: 28px;
  font-family: "Bricolage Grotesque", serif;
  background: #EDE3DA;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.nav--mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav--mobile__account {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nav--mobile__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav--mobile__user {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #A2594F;
  background: rgba(162, 89, 79, 0.1);
  padding: 8px 20px;
  border-radius: 9999px;
  margin-bottom: 4px;
}

.nav--mobile__sublink {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  color: #6E5A52;
}

@media (max-width: 980px) {
  .nav:not(.nav--mobile) {
    display: none;
  }
  .lang, .account-menu {
    display: none;
  }
  .burger {
    display: flex;
  }
}
.footer {
  padding: 80px 0 36px;
  position: relative;
  z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(58, 45, 41, 0.16);
}
@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__brand .logo {
  margin-bottom: 18px;
}
.footer__brand p {
  color: #6E5A52;
  font-size: 15px;
  max-width: 300px;
}
.footer__link {
  display: block;
  color: #6E5A52;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.3s;
}
.footer__link[href]:hover {
  color: #3A2D29;
}
.footer__col h5 {
  font-family: "Bricolage Grotesque", serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A2594F;
  margin-bottom: 16px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  font-size: 13px;
  color: #6E5A52;
}

body {
  background: #EDE3DA;
  color: #3A2D29;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

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

section {
  position: relative;
  z-index: 2;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal=fade] {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=app.output.css.map */
