:root {
  --bg: #efe7de;
  --bg-2: #d8cec3;
  --surface: #f7f2ec;
  --text: #2b1f16;
  --muted: rgba(43, 31, 22, 0.72);
  --muted-2: rgba(43, 31, 22, 0.56);
  --border: rgba(43, 31, 22, 0.12);
  --accent: #6b4b34;
  --accent-2: #2b1f16;
  --danger: #d8584e;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 26px rgba(43, 31, 22, 0.12);
  --shadow-2: 0 6px 16px rgba(43, 31, 22, 0.1);
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: #ffffff;
  color: var(--text);
}

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

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

.container {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
}

.page {
  padding: 18px 0 56px;
}

.section {
  padding: 30px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 31, 22, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.nav__link:hover {
  background: rgba(107, 75, 52, 0.1);
  color: var(--text);
}

.nav__link.is-active {
  background: var(--accent-2);
  color: #f6efe7;
}

.nav__link.is-pill {
  border: 1px solid rgba(43, 31, 22, 0.12);
}

.nav__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__hello {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link--muted {
  color: var(--muted-2);
  text-decoration: none;
}

.link--muted:hover {
  color: var(--text);
}

/* Hero Wrapper for outside arrows */
.hero-wrapper {
  position: relative;
  padding: 0 60px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(43, 31, 22, 0.06);
  box-shadow: var(--shadow);
}

.hero__track {
  display: grid;
  grid-template-columns: 1fr;
}

.heroSlide {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  padding: 22px;
  background: var(--bg-2);
}

.heroSlide__media {
  border-radius: var(--radius);
  overflow: hidden;
  height: 55vh;
  background: rgba(43, 31, 22, 0.12);
}

@media (max-width: 960px) {
  .heroSlide__media {
    height: 45vh;
  }
}

.heroSlide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSlide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px;
}

.heroSlide__title {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.02;
  margin: 0;
  color: var(--text);
}

.heroSlide__sub {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.6;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(247, 242, 236, 0.7);
  border: 1px solid rgba(43, 31, 22, 0.1);
  padding: 8px 10px;
  border-radius: 999px;
}

.heroDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 31, 22, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
}

.heroDot.is-active {
  background: rgba(43, 31, 22, 0.8);
  width: 22px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(43, 31, 22, 0.16);
  background: rgba(107, 75, 52, 0.85); /* Slightly darker/filled for visibility */
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  transition: transform 140ms ease, background 140ms ease;
  z-index: 2;
  font-size: 20px;
  padding-bottom: 4px; /* Center align visual tweak */
}

.hero__arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(43, 31, 22, 0.95);
}

.hero__arrow--left {
  left: 0;
}

.hero__arrow--right {
  right: 0;
}

.mini {
  overflow: hidden;
}

.mini__row {
  display: flex;
  gap: 14px;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.miniCard {
  position: relative;
  flex: 0 0 calc((100% - 28px) / 3);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(43, 31, 22, 0.08);
  box-shadow: var(--shadow-2);
  min-height: 25vh;
  cursor: pointer;
  transition: transform 140ms ease;
}

.miniCard__num {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(246, 239, 231, 0.4);
  color: #f6efe7;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 500;
  z-index: 2;
}

.miniCard:hover .miniCard__num {
  background: rgba(246, 239, 231, 0.1);
}

.miniCard:hover {
  transform: translateY(-2px);
}

.miniCard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}

.miniCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.62) 100%);
}

.miniCard__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
}

.miniCard__title {
  margin: 0;
  color: #f6efe7;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.miniCard__sub {
  margin: 6px 0 0;
  color: rgba(246, 239, 231, 0.84);
  font-size: 12px;
  line-height: 1.4;
}

.badge {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(43, 31, 22, 0.72);
  color: #f6efe7;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(246, 239, 231, 0.18);
}

.sectionTitle {
  text-align: center;
  margin-bottom: 32px;
}

.sectionTitle__heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  margin: 0;
}

.sectionTitle__sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Featured Product Slider */
.prodSlider {
  overflow: hidden;
}

.prodSlider__row {
  display: flex;
  gap: 18px;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.pCard {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 36px) / 3); /* 3 items visible, 18px gap */
}

@media (max-width: 960px) {
  .pCard {
    flex: 0 0 calc(100% - 40px); /* 1 item visible on mobile */
  }
}

.pCard__media {
  height: 280px;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.pCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pCard:hover .pCard__img {
  transform: scale(1.05);
}

.pCard__body {
  padding: 18px 0 0;
  text-align: center;
}

.pCard__name {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  font-family: var(--sans);
}

.pCard__price {
  margin: 6px 0 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.section--featured {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.section--featured .pCard__media {
  height: 55vh;
}

@media (max-width: 960px) {
  .section--featured .pCard__media {
    height: 45vh;
  }
}

.btn {
  border: none;
  border-radius: 999px;
  background: var(--accent-2);
  color: #f6efe7;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
  box-shadow: 0 10px 18px rgba(43, 31, 22, 0.14);
}

.btn--dark {
  background: #3e2b20;
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  box-shadow: none;
}

.btn--dark:hover {
  background: #2b1f16;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(43, 31, 22, 0.18);
  box-shadow: none;
  letter-spacing: 0.12em;
}

.btn--ghost:hover {
  background: rgba(43, 31, 22, 0.08);
  transform: translateY(-1px);
}

.btn--danger {
  background: var(--danger);
}

.btn--danger:hover {
  background: rgba(216, 88, 78, 0.92);
}

.btn--wide {
  width: 100%;
  padding: 12px 14px;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 600;
}

.btn--beige {
  background: #d8cec3;
  color: #2b1f16;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  box-shadow: none;
  text-transform: uppercase;
}

.btn--beige:hover {
  background: #c8bba9;
  transform: translateY(-1px);
}

.collection {
  padding: 0 20px;
}

.collection__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.collection__title {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0;
  font-style: italic;
}

.strip {
  overflow: hidden;
}

.strip__row {
  display: flex;
  gap: 18px;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.sCard {
  flex: 0 0 260px;
  background: transparent;
}

.sCard__media {
  height: 180px;
  background: rgba(43, 31, 22, 0.06);
  border-radius: 0;
  overflow: hidden;
}

.sCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sCard:hover .sCard__img {
  transform: scale(1.05);
}

.sCard__body {
  padding: 12px 0 0;
  text-align: center;
}

.sCard__name {
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  font-family: var(--sans);
}

.sCard__price {
  font-size: 13px;
  color: var(--text);
  margin: 4px 0 12px;
}

.reviews {
  background: #232323; /* Dark background matching image */
  color: #ffffff;
  padding: 100px 0;
}

.reviews .container {
  max-width: 1000px;
}

.reviews__title {
  text-align: left;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 42px;
  margin: 0 0 50px;
  letter-spacing: -0.01em;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.quote {
  text-align: left;
}

.quote__text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}

.quote__by {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: none; /* Image shows "Rimah Reyes" capitalized but not uppercase */
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.quote__by::before {
  content: "- ";
}

/* Footer */
.footer {
  background: #d8cec3;
  padding: 80px 0;
  color: var(--text);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__brand {
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 13px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #4a3b32;
}

.footer__text {
  max-width: 320px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(74, 59, 50, 0.8);
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(74, 59, 50, 0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

/* --- About Page Styles --- */

/* Hero */
.aboutHero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.aboutHero__overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aboutHero__copy {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  max-width: 800px;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Two Column (Vision/Mission) */
.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .twoCol {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 40px;
  border-radius: var(--radius);
}

.card--soft {
  background: #E8E2D9;
  color: var(--text);
}

.card__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #4A3B32;
}

.card__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(74, 59, 50, 0.8);
}

.list {
  padding-left: 20px;
  margin: 0;
}

.list li {
  margin-bottom: 8px;
}

/* Grid 3 (Services) */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

.grid3--full {
  width: 100%;
  gap: 0;
}

.grid3--full .tile {
  border-radius: 0;
  height: 400px;
}

.tile {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.tile__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  height: 50%;
}

.tile__label {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact */
.contact {
  padding: 60px 0;
}

.contact__title {
  text-align: center;
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  margin-bottom: 40px;
  margin-top: 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Product Page Styles --- */

/* Hero */
.productHero {
  width: 100%;
  background-color: #E0D6CD; /* Beige color */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productHero__content {
  max-width: 800px;
}

.productHero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: #5A4A42;
  margin-bottom: 20px;
  line-height: 1.2;
}

.productHero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #5A4A42;
  line-height: 1.6;
}

/* Filter Bar */
.productFilter {
  background-color: #F8F8F8;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.productFilter__bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Search */
.productFilter__search {
  position: relative;
  width: 300px;
}

.productFilter__input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 25px;
  padding: 0 50px 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  outline: none;
  transition: box-shadow 0.3s;
}

.productFilter__input:focus {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.productFilter__searchIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  pointer-events: none;
  font-size: 1.2rem;
}

/* Category */
.productFilter__category {
  display: flex;
  flex-direction: column;
  width: 250px;
}

.productFilter__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5A4A42;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.productFilter__select {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 25px;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  cursor: pointer;
  outline: none;
  appearance: none; /* Simplify look */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A4A42' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

/* Action/Button */
.productFilter__action {
    /* Auto height */
}

.productFilter__btn {
  height: 50px;
  padding: 0 30px;
  border: none;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: 0.5px;
}

.productFilter__btn--danger {
  background-color: #E54E4E;
  color: #fff;
}

.productFilter__btn:hover {
  opacity: 0.9;
}

/* Mobile responsiveness for Product Page */
@media (max-width: 768px) {
  .productFilter__bar {
    flex-direction: column;
    align-items: stretch;
  }
  .productFilter__search, .productFilter__category, .productFilter__action {
    width: 100%;
  }
  .productHero__title {
    font-size: 2.5rem;
  }
}

/* --- Auth Page Styles (Login & Register) --- */

.authPage {
  background-color: #F2ECE6; /* Slightly darker beige than default for contrast */
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.authWrap {
  width: 100%;
  max-width: 480px; /* Constrain width for better readability */
  margin: 0 auto;
}

.authCard {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.authCard__title {
  font-family: var(--serif);
  font-size: 32px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
  font-style: italic;
  color: #2B1F16;
}

.authCard__sub {
  text-align: center;
  color: rgba(43, 31, 22, 0.6);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
}

/* Scoped Form Styles for Auth */
.authCard .field {
  margin-bottom: 20px;
}

.authCard .field__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #5A4A42;
}

.authCard .field__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.authCard .field__row .field__label {
  margin-bottom: 0;
}

.authCard .input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: #FAFAFA;
  transition: all 0.2s ease;
}

.authCard .input:focus {
  outline: none;
  border-color: #6B4B34;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107, 75, 52, 0.1);
}

.authCard .input::placeholder {
  color: #AAA;
}

/* Checkbox */
.authCard .check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  color: rgba(43, 31, 22, 0.8);
  user-select: none;
}

.authCard .check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6B4B34;
  cursor: pointer;
}

.authCard .check--terms {
  margin-bottom: 24px;
  align-items: flex-start;
}

.authCard .check--terms span {
  font-size: 13px;
  line-height: 1.5;
}

/* Helpers */
.authCard__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.authCard__hint {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  background: #F0F0F0;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Divider */
.authCard .divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.authCard .divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #EEE;
  z-index: 1;
}

.authCard .divider span {
  background: #fff;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  color: #999;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.authCard__foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(43, 31, 22, 0.6);
}

.authCard__foot .link {
  font-weight: 600;
  color: #6B4B34;
}
