:root {
  --bark: #5C3D2E;
  --cream: #FDF8F3;
  --spice: #C17817;
  --leaf: #4A6741;
  --sand: #E8DDD3;
  --surface: #FFFFFF;
}

html,
body {
  height: 100%;
}

body {
  background: var(--cream);
  color: var(--bark);
  font-family: Outfit, sans-serif;
  overflow-y: auto;
}

.cms-pending {
  visibility: hidden;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app>footer {
  margin-top: auto !important;
}

.font-display {
  font-family: "Cormorant Garamond", serif;
}

.text-bark {
  color: var(--bark) !important;
}

.text-spice {
  color: var(--spice) !important;
}

.text-leaf {
  color: var(--leaf) !important;
}

.bg-cream {
  background: var(--cream) !important;
}

.bg-bark {
  background: var(--bark) !important;
}

.bg-sand {
  background: var(--sand) !important;
}

.navbar-soft-border {
  border-color: rgba(232, 221, 211, .8) !important;
}

.mobile-menu-border {
  border-color: var(--sand) !important;
}

.page-offset {
  margin-top: 48px;
}

.hero-label {
  letter-spacing: .12em;
}

.navbar-brand {
  transition: transform .2s ease, opacity .2s ease;
}

.navbar-brand:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.btn-bark {
  background: var(--bark);
  border-color: var(--bark);
}

.btn-bark:hover {
  background: #4f3428;
  border-color: #4f3428;
}

.btn-bark-outline {
  border: 1px solid var(--bark);
  color: var(--bark);
}

.btn-bark-outline:hover {
  background: var(--bark);
  color: var(--cream);
}

.hero-orb {
  width: min(420px, 90vw);
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(193, 120, 23, .2), var(--sand), rgba(74, 103, 65, .1));
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-media-wrap {
  width: min(520px, 92vw);
}

.hero-banner-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(193, 120, 23, .1), var(--sand));
  box-shadow: 0 24px 50px rgba(92, 61, 46, .16);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-orb:hover {
  transform: scale(1.01);
  box-shadow: 0 24px 50px rgba(92, 61, 46, .18);
}

.hero-orb-graphic {
  color: rgba(92, 61, 46, .8);
}

.since-badge {
  bottom: -12px;
  right: -12px;
}

.stats-band {
  background: rgba(232, 221, 211, .35);
}

.compare-card {
  background: linear-gradient(145deg, rgba(253, 248, 243, .95), rgba(232, 221, 211, .55));
}

.compare-item {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(92, 61, 46, .08);
}

.product-detail-media {
  height: 420px;
  background: linear-gradient(135deg, rgba(193, 120, 23, .1), var(--sand));
}

.product-detail-icon {
  width: 64px;
  height: 64px;
}

.badge-spice-soft {
  background: rgba(193, 120, 23, .12);
  color: var(--spice);
}

.product-fallback-media {
  background: linear-gradient(135deg, rgba(193, 120, 23, .08), var(--sand));
}

.product-media-frame {
  height: 180px;
}

.footer-shell {
  background: var(--bark);
  color: rgba(253, 248, 243, .7);
}

.footer-link {
  color: rgba(253, 248, 243, .7);
}

.footer-link {
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.social-icon-box {
  background: rgba(0, 0, 0, .28);
}

.social-icon {
  color: var(--cream);
}

.social-icon-box:hover {
  background: rgba(253, 248, 243, .22);
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadeIn .45s ease forwards;
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(193, 120, 23, .05) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(74, 103, 65, .05) 0%, transparent 45%);
}

.fade-in {
  opacity: 0;
  animation: fadeIn .6s ease forwards;
}

.stagger-1 {
  animation-delay: .1s;
}

.stagger-2 {
  animation-delay: .2s;
}

.stagger-3 {
  animation-delay: .3s;
}

.stagger-4 {
  animation-delay: .4s;
}

.product-card {
  border: 0;
  border-radius: 1rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(92, 61, 46, .12);
}

.card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(92, 61, 46, .1);
}

.nav-link-custom {
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  position: relative;
  color: var(--bark);
  text-decoration: none;
  padding-bottom: .25rem;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--spice);
  transition: width .25s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active-nav::after {
  width: 100%;
}

.cta-btn {
  border-radius: 999px;
  transition: all .25s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(193, 120, 23, .28);
}

#mobile-menu a {
  transition: background-color .2s ease, transform .2s ease;
  border-radius: .5rem;
  padding: .2rem .35rem;
}

#mobile-menu a:hover {
  background: rgba(193, 120, 23, .12);
  transform: translateX(2px);
}

.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  background: var(--sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.icon-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(92, 61, 46, .18);
}

.icon-box.social-icon-box {

  background: rgba(253, 248, 243, .22);
}

.icon-box.social-icon-box:hover {
  background: rgba(158, 146, 146, 0.28);
}

.form-control,
.form-select,
textarea.form-control {
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:hover,
.form-select:hover,
textarea.form-control:hover {
  border-color: rgba(193, 120, 23, .45);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(193, 120, 23, .65);
  box-shadow: 0 0 0 .2rem rgba(193, 120, 23, .16);
}

.toast-msg {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  transition: all .35s ease;
  z-index: 1060;
  background: var(--bark);
  color: var(--cream);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  font-size: .9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}