/** Shopify CDN: Minification failed

Line 821:0 Unexpected "`"

**/
/* ==================================================
   LIEBE LEATHER — DESIGN VARIABLES
================================================== */

:root {
  --liebe-cream: #f6f1ea;
  --liebe-soft-cream: #eee7de;
  --liebe-brown: #43291e;
  --liebe-medium-brown: #6b4635;
  --liebe-tan: #b9855a;
  --liebe-white: #ffffff;

  --liebe-heading-font: Georgia, "Times New Roman", serif;
  --liebe-body-font: Arial, Helvetica, sans-serif;

  --liebe-page-width: 1440px;
  --liebe-radius: 4px;
}


/* ==================================================
   HERO
================================================== */

.liebe-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 720px;
  padding: 120px 32px;

  background-color: var(--liebe-brown);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: var(--liebe-white);
  text-align: center;
  overflow: hidden;
}

.liebe-hero__content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.liebe-hero__eyebrow {
  margin: 0 0 24px;

  font-family: var(--liebe-body-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.liebe-hero__heading {
  margin: 0;

  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.liebe-hero__description {
  max-width: 720px;
  margin: 32px auto 0;

  font-family: var(--liebe-body-font);
  font-size: 18px;
  line-height: 1.7;
}

.liebe-hero__description p {
  margin: 0;
}

.liebe-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;

  margin-top: 42px;
}


/* ==================================================
   BUTTONS
================================================== */

.liebe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;
  min-height: 54px;
  padding: 14px 28px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-family: var(--liebe-body-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.liebe-button:hover {
  transform: translateY(-2px);
}

.liebe-button--primary {
  background: var(--liebe-brown);
  color: var(--liebe-white);
}

.liebe-button--primary:hover {
  background: var(--liebe-cream);
}

.liebe-button--secondary {
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
  color: var(--liebe-white);
}

.liebe-button--secondary:hover {
  border-color: var(--liebe-white);
  background: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-hero {
    min-height: 620px;
    padding: 96px 22px 72px;
  }

  .liebe-hero__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .liebe-hero__heading {
    font-size: clamp(48px, 15vw, 70px);
    line-height: 1;
  }

  .liebe-hero__description {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .liebe-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 32px;
  }

  .liebe-button {
    width: 100%;
    min-width: 0;
  }
}
/* ==================================================
   FEATURED COLLECTIONS
================================================== */

.liebe-collections {
  padding: 110px 32px;
  background: var(--section-background);
  color: var(--section-text);
}

.liebe-collections__inner {
  width: min(var(--liebe-page-width), 100%);
  margin: 0 auto;
}

.liebe-collections__eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.liebe-collections__heading {
  margin: 0;
  color: inherit;
  text-align: center;
  font-family: var(--liebe-heading-font);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}

.liebe-collections__description {
  max-width: 650px;
  margin: 22px auto 0;
  text-align: center;
  font-family: var(--liebe-body-font);
  font-size: 17px;
  line-height: 1.7;
}

.liebe-collections__description p {
  margin: 0;
}

.liebe-collections__grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:30px;
    align-items:stretch;
}

.liebe-collection-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:620px;
    overflow:hidden;
    border-radius:28px;
    background:#ECE5DE;
    text-decoration:none;
}

.liebe-collection-card__media {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px 28px 150px;
  overflow: hidden;
}

.liebe-collection-card__image {
  display: block;

  width: 82%;
  height: 82%;
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center center;

  margin: auto;

  transition: transform 600ms ease;
}

.liebe-collection-card__overlay {
  position: absolute;
  inset: 0;
  background:
    transparent;
}

.liebe-collection-card__content {
  position: absolute;
  color: #4A2E22;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.liebe-collection-card__title {
  margin: 0;
  color: #4A2E22;
  font-family: var(--liebe-heading-font);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.liebe-collection-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #4A2E22;
}

.liebe-collection-card:hover .liebe-collection-card__image {
  transform: scale(1.045);
}

.liebe-collection-card:hover .liebe-collection-card__link span {
  transform: translateX(4px);
}

.liebe-collection-card__link span {
  transition: transform 180ms ease;
}


/* ==================================================
   FEATURED COLLECTIONS — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-collections {
    padding: 90px 24px;
  }

  .liebe-collections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .liebe-collection-card:last-child {
    grid-column: 1 / -1;
  }
}


/* ==================================================
   FEATURED COLLECTIONS — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-collections {
    padding: 72px 18px;
  }
  .liebe-collection-card__image {
    width: 86%;
    height: 86%;
  }

  .liebe-collections__heading {
    font-size: 44px;
  }

  .liebe-collections__description {
    font-size: 15px;
  }

  .liebe-collections__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .liebe-collection-card,
  .liebe-collection-card:last-child {
    grid-column: auto;
    min-height: 450px;
    border-radius: 14px;
  }

  .liebe-collection-card__content {
    padding: 26px;
  }

  .liebe-collection-card__title {
    font-size: 38px;
  }
}
/* ==================================================
   STORY SECTION
================================================== */

.liebe-story {
  padding: 110px 32px;
  background: var(--story-background);
  color: var(--story-text);
}

.liebe-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;

  width: min(var(--liebe-page-width), 100%);
  min-height: 650px;
  margin: 0 auto;

  overflow: hidden;
  border-radius: 18px;
  background: var(--liebe-cream);
}

.liebe-story__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.liebe-story__image,
.liebe-story__placeholder,
.liebe-story__placeholder svg {
  width: 100%;
  height: 100%;
}

.liebe-story__image {
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.liebe-story__inner:hover .liebe-story__image {
  transform: scale(1.025);
}

.liebe-story__placeholder svg {
  display: block;
  background: var(--liebe-soft-cream);
}

.liebe-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
}

.liebe-story__eyebrow {
  margin: 0 0 20px;

  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.liebe-story__heading {
  max-width: 620px;
  margin: 0;

  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.liebe-story__text {
  max-width: 580px;
  margin-top: 30px;

  font-family: var(--liebe-body-font);
  font-size: 17px;
  line-height: 1.8;
}

.liebe-story__text p {
  margin: 0 0 14px;
}

.liebe-story__text p:last-child {
  margin-bottom: 0;
}

.liebe-story__button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;

  margin-top: 36px;
  padding-bottom: 7px;

  border-bottom: 1px solid currentColor;

  color: inherit;
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.liebe-story__button span {
  transition: transform 180ms ease;
}

.liebe-story__button:hover span {
  transform: translateX(5px);
}


/* ==================================================
   STORY SECTION — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-story {
    padding: 90px 24px;
  }

  .liebe-story__inner {
    grid-template-columns: 1fr;
  }

  .liebe-story__media {
    min-height: 520px;
  }

  .liebe-story__content {
    padding: 70px 52px;
  }
}


/* ==================================================
   STORY SECTION — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-story {
    padding: 72px 18px;
  }

  .liebe-story__inner {
    min-height: 0;
    border-radius: 14px;
  }

  .liebe-story__media {
    min-height: 390px;
  }

  .liebe-story__content {
    padding: 48px 26px 54px;
  }

  .liebe-story__heading {
    font-size: 46px;
  }

  .liebe-story__text {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .liebe-story__button {
    margin-top: 30px;
  }
}
/* ==================================================
   FEATURED PRODUCTS
================================================== */

.liebe-products {
  padding: 110px 32px;
  background: var(--products-background);
  color: var(--products-text);
}

.liebe-products__inner {
  width: min(var(--liebe-page-width), 100%);
  margin: 0 auto;
}

.liebe-products__header {
  max-width: 760px;
}

.liebe-products__eyebrow {
  margin: 0 0 14px;
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.liebe-products__heading {
  margin: 0;
  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}

.liebe-products__description {
  max-width: 640px;
  margin-top: 20px;
  font-family: var(--liebe-body-font);
  font-size: 17px;
  line-height: 1.7;
}

.liebe-products__description p {
  margin: 0;
}

.liebe-products__view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.liebe-products__view-all span {
  transition: transform 180ms ease;
}

.liebe-products__view-all:hover span {
  transform: translateX(4px);
}

.liebe-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.liebe-products__footer {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.liebe-product-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.liebe-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: #eee7de;
}

.liebe-product-card__image {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.liebe-product-card:hover .liebe-product-card__image {
  transform: scale(1.035);
}

.liebe-product-card__placeholder,
.liebe-product-card__placeholder svg {
  width: 100%;
  height: 100%;
}

.liebe-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--liebe-brown);
  color: var(--liebe-white);
  font-family: var(--liebe-body-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.liebe-product-card__content {
  padding: 20px 4px 0;
}

.liebe-product-card__title {
  margin: 0;
  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.liebe-product-card__price {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
  font-family: var(--liebe-body-font);
  font-size: 14px;
  font-weight: 600;
}

.liebe-product-card__price s {
  opacity: 0.55;
  font-weight: 400;
}


/* ==================================================
   FEATURED PRODUCTS — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-products {
    padding: 90px 24px;
  }

  .liebe-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==================================================
   FEATURED PRODUCTS — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-products {
    padding: 72px 18px;
  }

  .liebe-products__header {
    display: block;
  }

  .liebe-products__heading {
    font-size: 44px;
  }

  .liebe-products__description {
    font-size: 15px;
  }

  .liebe-products__footer {
  margin-top: 34px;
}

  .liebe-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
  }

  .liebe-product-card__media {
    border-radius: 12px;
  }

  .liebe-product-card__image {
    width: 88%;
    height: 88%;
  }

  .liebe-product-card__content {
    padding-top: 14px;
  }

  .liebe-product-card__title {
    font-size: 19px;
  }

  .liebe-product-card__price {
    font-size: 12px;
  }
}
```css
/* ==================================================
   WHY LIEBE LEATHER
================================================== */

.liebe-values {
    padding: 110px 32px 170px;
}
.liebe-values,
.liebe-values__heading,
.liebe-value-card__heading {
  color: inherit;
}

.liebe-values__grid {
  border-color: rgba(246, 241, 234, 0.2);
}

.liebe-value-card:not(:last-child) {
  border-color: rgba(246, 241, 234, 0.2);
}

.liebe-values__inner {
  width: min(var(--liebe-page-width), 100%);
  margin: 0 auto;
}

.liebe-values__header {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 50px;   /* Added */
  text-align: center;
}

.liebe-values__eyebrow {
  margin: 0 0 14px;

  color: var(--values-accent);

  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.liebe-values__heading {
  margin: 0;

  color: inherit;

  font-family: var(--liebe-heading-font);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.liebe-values__description {
  max-width: 650px;
  margin: 22px auto 0;

  font-family: var(--liebe-body-font);
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.82;
}

.liebe-values__description p {
  margin: 0;
}

/* VALUE GRID */

.liebe-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 68px;

  border-top: 1px solid rgba(246, 241, 234, 0.2);
  border-bottom: 1px solid rgba(246, 241, 234, 0.2);
}

/* INDIVIDUAL VALUE */

.liebe-value-card {
  position: relative;

  min-height: 310px;
  padding: 48px 34px;

  text-align: center;
}

.liebe-value-card:not(:last-child) {
  border-right: 1px solid rgba(246, 241, 234, 0.2);
}

.liebe-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 76px;
  height: 76px;
  margin: 0 auto 28px;

  border: 1px solid var(--values-accent);
  border-radius: 50%;

  color: var(--values-accent);

  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.liebe-value-card__icon svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.liebe-value-card:hover .liebe-value-card__icon {
  background: var(--values-accent);
  color: #43291e;
  transform: translateY(-4px);
}

.liebe-value-card__heading {
  margin: 0;

  color: inherit;

  font-family: var(--liebe-heading-font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.liebe-value-card__text {
  max-width: 260px;
  margin: 15px auto 0;

  font-family: var(--liebe-body-font);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.78;
}

.liebe-value-card__text p {
  margin: 0;
}

/* ==================================================
   WHY LIEBE LEATHER — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-values {
    padding: 90px 24px;
  }

  .liebe-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .liebe-value-card:nth-child(2) {
    border-right: none;
  }

  .liebe-value-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(246, 241, 234, 0.2);
  }

  .liebe-value-card {
    min-height: 280px;
  }
}

/* ==================================================
   WHY LIEBE LEATHER — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-values {
    padding: 72px 18px;
  }

  .liebe-values__heading {
    font-size: 44px;
  }

  .liebe-values__description {
    font-size: 15px;
  }

  .liebe-values__grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .liebe-value-card {
    min-height: 0;
    padding: 40px 24px;
  }

  .liebe-value-card:not(:last-child),
  .liebe-value-card:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(246, 241, 234, 0.2);
  }

  .liebe-value-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }

  .liebe-value-card__heading {
    font-size: 26px;
  }
}

/* ==================================================
   BRAND QUOTE
================================================== */

.liebe-quote {
  position: relative;
  overflow: hidden;
  padding: 220px 32px;

  background: var(--quote-background);
  color: var(--quote-text);
}

.liebe-quote__inner {
  position: relative;
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.liebe-quote__mark {
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);

  color: var(--quote-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 330px;
  font-weight: 400;
  line-height: 1;

  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.liebe-quote__blockquote {
  position: relative;
  z-index: 1;

  margin: 0;
  padding: 0;

  border: none;
}

.liebe-quote__blockquote p {
  margin: 0 0 16px;
margin-bottom:22px;
    line-height:1.28;
  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(38px, 4.3vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.liebe-quote__blockquote p:last-of-type {
  margin-bottom: 0;
}

.liebe-quote__attribution {
  margin-top: 70px;

  color: var(--quote-accent);
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}


/* ==================================================
   BRAND QUOTE — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-quote {
    padding: 130px 28px;
  }

  .liebe-quote__mark {
    top: -100px;
    font-size: 230px;
  }

  .liebe-quote__blockquote p {
    font-size: clamp(34px, 5vw, 50px);
  }
}


/* ==================================================
   BRAND QUOTE — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-quote {
    padding: 105px 22px;
  }

  .liebe-quote__mark {
    top: -70px;
    font-size: 170px;
  }

  .liebe-quote__blockquote p {
    margin-bottom: 13px;
    font-size: 34px;
    line-height: 1.22;
  }

  .liebe-quote__attribution {
    margin-top: 34px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }
}

/* ==================================================
   STAY CONNECTED
================================================== */

.liebe-newsletter {
  padding: 135px 32px;
}

.liebe-newsletter__inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.liebe-newsletter__eyebrow {
  margin: 0 0 16px;

  color: var(--newsletter-accent);
  font-family: var(--liebe-body-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.liebe-newsletter__heading {
  margin: 0;

  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.liebe-newsletter__description {
  max-width: 650px;
  margin: 24px auto 0;

  font-family: var(--liebe-body-font);
  font-size: 17px;
  line-height: 1.75;
}

.liebe-newsletter__description p {
  margin: 0;
}

.liebe-newsletter__form {
  max-width: 700px;
  margin: 42px auto 0;
}

.liebe-newsletter__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;

  overflow: hidden;
  border: 1px solid rgba(67, 41, 30, 0.28);
  border-radius: 999px;
  background: var(--newsletter-field);
}

.liebe-newsletter__input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 15px 24px;

  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;

  font-family: var(--liebe-body-font);
  font-size: 15px;
}

.liebe-newsletter__input::placeholder {
  color: currentColor;
  opacity: 0.58;
}

.liebe-newsletter__input:focus {
  box-shadow: inset 0 0 0 2px rgba(67, 41, 30, 0.2);
}

.liebe-newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 58px;
  padding: 15px 30px;

  border: 0;
  border-radius: 999px;
  background: var(--newsletter-accent);
  color: #f6f1ea;
  cursor: pointer;

  font-family: var(--liebe-body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.liebe-newsletter__button:hover {
  opacity: 0.92;
}

.liebe-newsletter__button:hover span {
  transform: translateX(4px);
}

.liebe-newsletter__button span {
  transition: transform 180ms ease;
}

.liebe-newsletter__message {
  margin: 20px 0 0;

  font-family: var(--liebe-body-font);
  font-size: 14px;
  line-height: 1.6;
}

.liebe-newsletter__message--success {
  color: #46643d;
}

.liebe-newsletter__message--error {
  color: #8a2f24;
}

.liebe-newsletter__message--error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.liebe-newsletter__note {
  margin: 18px 0 0;

  font-family: var(--liebe-body-font);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.62;
}


/* ==================================================
   STAY CONNECTED — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-newsletter {
    padding: 90px 20px;
  }

  .liebe-newsletter__heading {
    font-size: 46px;
  }

  .liebe-newsletter__description {
    font-size: 15px;
  }

  .liebe-newsletter__form {
    margin-top: 34px;
  }

  .liebe-newsletter__form-row {
    display: block;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .liebe-newsletter__input {
    min-height: 56px;
    padding: 14px 20px;

    border: 1px solid rgba(67, 41, 30, 0.28);
    border-radius: 999px;
    background: var(--newsletter-field);
    text-align: center;
  }

  .liebe-newsletter__button {
    width: 100%;
    margin-top: 12px;
  }
}
/* ==================================================
   LIEBE FOOTER
================================================== */

.liebe-footer {
  border-top: 1px solid rgba(246, 241, 234, 0.1);
  padding: 110px 32px 42px;
}

.liebe-footer__inner {
  width: min(var(--liebe-page-width), 100%);
  margin: 0 auto;
}

/* BRAND */

.liebe-footer__brand {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.liebe-footer__logo-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.liebe-footer__logo {
  display: block;
  width: auto;
  max-width: 280px;
  max-height: 115px;
  margin: 0 auto;
  object-fit: contain;
}

.liebe-footer__wordmark {
  color: inherit;
  font-family: var(--liebe-heading-font);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.liebe-footer__tagline {
  max-width: 500px;
  margin: 25px auto 0;
  font-family: var(--liebe-body-font);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.82;
}

.liebe-footer__tagline p {
  margin: 0;
}

/* DIVIDER */

.liebe-footer__divider {
  height: 1px;
  margin: 66px 0;
  background: rgba(246, 241, 234, 0.14);
}

/* MENUS */

.liebe-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.liebe-footer__column {
  text-align: center;
}

.liebe-footer__heading {
  margin: 0 0 24px;
  color: var(--footer-accent);
  font-family: var(--liebe-body-font);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.liebe-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.liebe-footer__links li + li {
  margin-top: 13px;
}

.liebe-footer__links a {
  position: relative;
  color: inherit;
  font-family: var(--liebe-body-font);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.liebe-footer__links a:hover {
  color: var(--footer-accent);
  opacity: 1;
}

/* SOCIAL LINKS */

.liebe-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
  margin-top: 72px;
}

.liebe-footer__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;

  min-width: 92px;

  color: inherit;
  font-family: var(--liebe-body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.liebe-footer__social-icon {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: var(--footer-accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    stroke 180ms ease,
    transform 180ms ease;
}

/* Facebook icon uses a filled shape */

.liebe-footer__social-link:nth-child(2)
.liebe-footer__social-icon {
  fill: var(--footer-accent);
  stroke: none;
}

.liebe-footer__social-link:hover {
  color: var(--footer-accent);
  transform: translateY(-3px);
}

.liebe-footer__social-link:hover
.liebe-footer__social-icon {
  transform: scale(1.08);
}

/* BOTTOM LINE */

.liebe-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 74px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 241, 234, 0.14);
  font-family: var(--liebe-body-font);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0.62;
}

.liebe-footer__bottom p {
  margin: 0;
}


/* ==================================================
   LIEBE FOOTER — TABLET
================================================== */

@media screen and (max-width: 989px) {
  .liebe-footer {
    padding: 90px 24px 38px;
  }

  .liebe-footer__menus {
    gap: 40px;
  }
}


/* ==================================================
   LIEBE FOOTER — MOBILE
================================================== */

@media screen and (max-width: 749px) {
  .liebe-footer {
    padding: 76px 22px 30px;
  }

  .liebe-footer__logo {
    max-width: 220px;
    max-height: 90px;
  }

  .liebe-footer__tagline {
    font-size: 14px;
  }

  .liebe-footer__divider {
    margin: 48px 0;
  }

  .liebe-footer__menus {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .liebe-footer__heading {
    margin-bottom: 18px;
  }

  .liebe-footer__links li + li {
    margin-top: 11px;
  }

  .liebe-footer__social {
  gap: 34px;
  margin-top: 54px;
}

.liebe-footer__social-link {
  min-width: 74px;
  font-size: 10px;
}

.liebe-footer__social-icon {
  width: 23px;
  height: 23px;
}

  .liebe-footer__bottom {
    display: block;
    margin-top: 54px;
    text-align: center;
  }

  .liebe-footer__bottom p + p {
    margin-top: 9px;
  }
}
/* ===========================================
   PRODUCT PAGE TITLE
=========================================== */

product-information .text-block.h3 > h1,
.product-information .text-block.h3 > h1,
.text-block.h3 > h1 {
  font-family: var(--liebe-heading-font) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: clamp(42px, 4.5vw, 64px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  color: #43291e !important;
  text-transform: none !important;
}
@media screen and (max-width: 749px) {
  product-information .text-block.h3 > h1,
  .product-information .text-block.h3 > h1,
  .text-block.h3 > h1 {
    font-size: 42px !important;
    line-height: 1.05 !important;
  }
}
