:root {
  --cream: #fbf9f4;
  --cream-deep: #f3eee4;
  --ink: #1d352a;
  --ink-soft: #56665c;
  --forest: #294b38;
  --sage: #809b87;
  --line: #ddd8cd;
  --clay: #d5ba94;
  --gold: #c98f36;
  --shadow: 0 18px 50px rgba(37, 56, 45, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
}

body.cart-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 40px;
  display: grid;
  place-items: center;
  color: #f4f3ec;
  background: var(--forest);
  font-size: 13px;
  letter-spacing: 0.015em;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar span::before {
  margin: 0 22px;
  content: "|";
  color: rgba(245, 245, 236, 0.38);
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 19;
  height: 76px;
  padding: 0 clamp(22px, 4.8vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(29, 53, 42, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand:hover .brand-name {
  color: #486451;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 32px;
  display: block;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: var(--forest);
}

.brand-mark::before {
  width: 16px;
  height: 23px;
  left: 14px;
  top: 0;
  border-radius: 16px 2px 16px 2px;
  transform: rotate(-24deg);
}

.brand-mark::after {
  width: 16px;
  height: 23px;
  left: 1px;
  top: 8px;
  border-radius: 2px 16px 2px 16px;
  transform: rotate(-12deg);
}

.brand-mark span {
  height: 23px;
  width: 2px;
  left: 15px;
  bottom: 0;
  transform: rotate(-3deg);
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.brand-name em {
  font-style: normal;
  color: #879886;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 500;
  color: #556158;
}

.main-nav a {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.main-nav .active {
  color: var(--forest);
}

.main-nav .active::after {
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 17px;
  left: 0;
  content: "";
  background: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}

.customer-welcome {
  margin: 0 -4px 0 0;
  padding: 8px 4px;
  color: var(--forest);
  border-bottom: 1px solid rgba(41, 75, 56, 0.28);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.customer-welcome:hover {
  color: #647f68;
  border-color: #647f68;
}

.check-in-button {
  height: 39px;
  padding: 0 19px;
  border-radius: 22px;
  color: white;
  background: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.check-in-button:hover,
.check-out-button:hover {
  background: #203d2d;
}

.check-out-button {
  height: 39px;
  padding: 0 19px;
  border: 1px solid var(--forest);
  border-radius: 22px;
  color: var(--forest);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.check-out-button:hover {
  color: white;
}

.check-out-button.confirmed {
  color: white;
  background: #6b856f;
  border-color: #6b856f;
}

.check-out-button.active-customer {
  color: white;
  background: var(--forest);
  box-shadow: 0 7px 18px rgba(41, 75, 56, 0.22);
}

.icon-action {
  position: relative;
  width: 25px;
  height: 31px;
  display: grid;
  align-items: center;
}

.icon-action svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  right: -10px;
  top: -1px;
  display: grid;
  place-items: center;
  height: 18px;
  min-width: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border-radius: 12px;
  background: var(--forest);
}

main {
  max-width: 1536px;
  margin: 0 auto;
}

.hero {
  min-height: 466px;
  display: grid;
  grid-template-columns: 48.5% 51.5%;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(48px, 4.9vw, 70px) 30px 54px clamp(30px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  color: #809583;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.31em;
}

.hero h1 {
  margin: 0 0 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(52px, 4.55vw, 67px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: #87a38d;
  font-style: italic;
  letter-spacing: -0.05em;
}

.hero-description {
  max-width: 405px;
  margin: 0 0 29px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.primary-action {
  width: 174px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  background: var(--forest);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action:hover {
  background: #203d2d;
  transform: translateY(-2px);
}

.primary-action span {
  font-size: 20px;
  line-height: 1;
}

.hero-art {
  position: relative;
  overflow: hidden;
  min-height: 466px;
  background: #efecdf;
}

.sun {
  position: absolute;
  right: -100px;
  top: 0;
  width: 530px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(251, 249, 240, 0.86), transparent 59%),
    #eeebde;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
  width: 115px;
  height: 350px;
  border-left: 2px solid rgba(108, 133, 105, 0.48);
  z-index: 1;
}

.hero-art::before {
  left: 91px;
  bottom: -14px;
  transform: rotate(-11deg);
}

.hero-art::after {
  right: 88px;
  top: -36px;
  transform: rotate(151deg);
}

.leaf {
  position: absolute;
  z-index: 1;
}

.leaf::before,
.leaf::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(111, 138, 106, 0.5);
}

.leaf-one {
  left: 14px;
  bottom: 130px;
}

.leaf-one::before {
  width: 79px;
  height: 41px;
  border-radius: 80px 2px 80px 2px;
  transform: rotate(19deg);
}

.leaf-one::after {
  left: 33px;
  bottom: 39px;
  width: 62px;
  height: 28px;
  border-radius: 2px 60px 2px 60px;
  transform: rotate(-39deg);
}

.leaf-two {
  right: 30px;
  top: 120px;
  transform: scale(0.9) rotate(-20deg);
}

.leaf-two::before {
  width: 84px;
  height: 40px;
  border-radius: 80px 2px 80px 2px;
}

.leaf-two::after {
  left: 30px;
  top: 48px;
  width: 67px;
  height: 32px;
  border-radius: 2px 70px 2px 70px;
}

.hero-bottle {
  position: absolute;
  z-index: 2;
  bottom: 47px;
  left: 46%;
  transform: translateX(-50%);
  filter: drop-shadow(3px 20px 18px rgba(40, 38, 25, 0.16));
}

.bottle-lid {
  width: 113px;
  height: 53px;
  margin: 0 auto -7px;
  border-radius: 36px 36px 6px 6px / 12px 12px 6px 6px;
  background:
    linear-gradient(90deg, rgba(255, 222, 93, 0.9), transparent 27%, rgba(151, 37, 5, 0.4) 92%),
    repeating-linear-gradient(90deg, rgba(176, 49, 7, 0.5) 0 2px, transparent 2px 8px),
    linear-gradient(#ff8d17, #ee4310);
  box-shadow: inset 0 -7px 0 #da3d09, 0 3px 3px rgba(51, 43, 29, 0.13);
}

.bottle-body {
  position: relative;
  width: 229px;
  height: 282px;
  padding-top: 83px;
  overflow: hidden;
  border: 3px solid rgba(100, 137, 156, 0.6);
  border-radius: 84px 84px 34px 34px / 54px 54px 29px 29px;
  background:
    linear-gradient(94deg, rgba(255, 255, 255, 0.76), transparent 19%, transparent 74%, rgba(95, 148, 178, 0.22)),
    rgba(194, 226, 238, 0.28);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.28), inset -15px 0 13px rgba(54, 95, 121, 0.08);
}

.bottle-body::before {
  position: absolute;
  top: 13px;
  left: 27px;
  z-index: 3;
  width: 16px;
  height: 239px;
  content: "";
  border-radius: 26px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.07));
}

.bottle-pills {
  position: absolute;
  left: 14px;
  right: 13px;
  display: flex;
  justify-content: space-around;
  gap: 3px;
}

.bottle-pills-top {
  top: 35px;
}

.bottle-pills-bottom {
  bottom: 14px;
}

.bottle-pills span {
  display: block;
  width: 43px;
  height: 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffbf20 0 46%, #ed421b 47% 100%);
  box-shadow: inset 5px 5px 4px rgba(255, 255, 255, 0.42), 1px 2px 3px rgba(40, 35, 25, 0.2);
  transform: rotate(var(--pill-turn, -15deg));
}

.bottle-pills span:nth-child(2) {
  --pill-turn: 17deg;
  background: linear-gradient(90deg, #9acf28 0 47%, #397e21 48%);
}

.bottle-pills span:nth-child(3) {
  --pill-turn: -4deg;
  background: linear-gradient(90deg, #ffcb27 0 47%, #ff7814 48%);
}

.bottle-pills span:nth-child(4) {
  --pill-turn: 13deg;
}

.bottle-pills span:nth-child(5) {
  --pill-turn: -22deg;
  background: linear-gradient(90deg, #9fd51c 0 47%, #428a22 48%);
}

.bottle-label {
  position: relative;
  z-index: 2;
  height: 147px;
  padding: 19px 0 12px;
  text-align: center;
  color: white;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
  background:
    radial-gradient(circle at 50% 32%, #fdd751 0 19%, transparent 20%),
    linear-gradient(#18a6da 0 49%, #eaf4e4 50% 100%);
}

.label-logo {
  display: block;
  width: 32px;
  height: 15px;
  margin: 0 auto 5px;
  border-radius: 30px 2px 30px 2px;
  transform: rotate(-18deg);
  background: #67a821;
}

.bottle-label b {
  display: block;
  padding: 6px 0;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.04;
  font-weight: 800;
  text-shadow: 2px 2px 0 #e85613;
  text-transform: uppercase;
}

.bottle-label small {
  display: block;
  margin: 8px auto 11px;
  width: max-content;
  padding: 4px 10px;
  border-radius: 15px;
  color: white;
  background: #f07517;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.bottle-label i {
  color: #306c36;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.capsule {
  position: absolute;
  z-index: 3;
  width: 41px;
  height: 18px;
  border-radius: 30px;
  background: linear-gradient(90deg, #d4c5a5 0 49%, #a98558 51% 100%);
  box-shadow: 2px 5px 5px rgba(70, 60, 35, 0.12);
}

.capsule-a {
  left: calc(46% - 142px);
  bottom: 47px;
  transform: rotate(-26deg);
}

.capsule-b {
  left: calc(46% + 118px);
  bottom: 59px;
  transform: rotate(13deg);
}

.capsule-c {
  left: calc(46% + 84px);
  bottom: 31px;
  transform: rotate(19deg);
}

.values {
  min-height: 93px;
  padding: 0 clamp(30px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.values article {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.values article + article {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 3.5vw, 58px);
}

.values h2 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 800;
}

.values p {
  margin: 0;
  color: #718078;
  font-size: 11px;
}

.value-icon {
  position: relative;
  width: 31px;
  height: 35px;
  display: block;
  flex-shrink: 0;
  color: #52705b;
}

.plant::before {
  position: absolute;
  content: "";
  left: 15px;
  bottom: 1px;
  height: 31px;
  border-left: 1.8px solid currentColor;
  transform: rotate(-9deg);
}

.plant::after {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  width: 30px;
  height: 18px;
  border: 1.8px solid currentColor;
  border-radius: 0 22px 0 22px;
  transform: rotate(19deg);
}

.flask {
  border: 1.8px solid currentColor;
  border-top: 0;
  width: 23px;
  height: 22px;
  margin-left: 4px;
  margin-top: 12px;
  border-radius: 0 0 10px 10px;
}

.flask::before {
  position: absolute;
  content: "";
  left: 6px;
  top: -13px;
  width: 8px;
  height: 13px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
}

.flask::after {
  position: absolute;
  content: "";
  left: 3px;
  top: 10px;
  width: 15px;
  border-top: 1.8px solid currentColor;
}

.heart::before {
  position: absolute;
  content: "";
  left: 4px;
  top: 5px;
  width: 22px;
  height: 22px;
  border: 1.8px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.heart::after {
  position: absolute;
  content: "";
  left: 4px;
  top: 5px;
  width: 25px;
  height: 16px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.box {
  width: 28px;
  height: 23px;
  margin-top: 7px;
  border: 1.8px solid currentColor;
}

.box::before {
  position: absolute;
  content: "";
  left: -1px;
  top: -7px;
  width: 27px;
  height: 7px;
  border: 1.8px solid currentColor;
}

.box::after {
  position: absolute;
  content: "";
  left: 12px;
  top: -7px;
  height: 30px;
  border-left: 1.8px solid currentColor;
}

.catalog {
  padding: 46px clamp(22px, 5vw, 70px) 64px;
}

.catalog-heading {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.catalog-heading .eyebrow {
  margin-bottom: 9px;
}

.catalog-heading h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.results {
  margin: 0;
  padding-bottom: 8px;
  color: #68786d;
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter {
  padding: 11px 21px;
  border: 1px solid #d7d1c4;
  border-radius: 30px;
  color: #56655b;
  background: white;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter:hover,
.filter.active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.55vw, 22px);
}

.catalog-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 25px;
  border: 1px solid #ddd3c2;
  border-radius: 8px;
  color: #64746a;
  background: white;
  font-size: 14px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e6e0d5;
  border-radius: 10px;
  background: white;
  box-shadow: 0 1px 0 rgba(44, 64, 48, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  min-height: 255px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(49, 49, 37, 0.12), transparent 35%),
    var(--product-tone);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.67);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jar {
  position: relative;
  width: 118px;
  height: 174px;
  margin-top: 25px;
  filter: drop-shadow(3px 12px 7px rgba(43, 44, 32, 0.18));
}

.jar::before {
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 0;
  width: 118px;
  height: 134px;
  content: "";
  border: 2px solid rgba(82, 124, 153, 0.55);
  border-radius: 48px 48px 22px 22px / 32px 32px 19px 19px;
  background:
    linear-gradient(98deg, rgba(255, 255, 255, 0.74), transparent 17%, transparent 76%, rgba(57, 104, 132, 0.18)),
    rgba(204, 231, 243, 0.37);
  box-shadow:
    inset 5px 0 5px rgba(255, 255, 255, 0.58),
    inset -8px 0 8px rgba(38, 84, 110, 0.1),
    inset 0 -4px 5px rgba(69, 109, 135, 0.1);
}

.jar-cap {
  position: absolute;
  z-index: 4;
  left: 14px;
  top: 0;
  width: 90px;
  height: 34px;
  border-radius: 13px 13px 4px 4px;
  background:
    linear-gradient(90deg, rgba(255, 225, 99, 0.8), transparent 25%, rgba(168, 34, 5, 0.42) 88%),
    repeating-linear-gradient(90deg, rgba(179, 44, 6, 0.52) 0 2px, transparent 2px 6px),
    linear-gradient(#ff8617, #ed4811);
  box-shadow: inset 0 -5px 0 #d33a08;
}

.jar-cap::before {
  position: absolute;
  top: -3px;
  left: 1px;
  width: 88px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(90deg, #ffbf31, #ff7211 55%, #d93608);
  box-shadow: inset 0 2px 1px rgba(255, 232, 145, 0.56);
}

.jar-cap::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: rgba(180, 41, 7, 0.52);
}

.jar-neck {
  position: absolute;
  z-index: 1;
  top: 31px;
  left: 23px;
  width: 72px;
  height: 18px;
  border: 2px solid rgba(83, 124, 151, 0.56);
  border-radius: 0 0 7px 7px;
  background: rgba(218, 242, 248, 0.48);
}

.jar-neck::after {
  position: absolute;
  bottom: -2px;
  left: -6px;
  width: 80px;
  height: 5px;
  content: "";
  border-radius: 50%;
  border-bottom: 2px solid rgba(54, 96, 124, 0.5);
  background: rgba(232, 248, 251, 0.43);
}

.jar::after {
  position: absolute;
  z-index: 5;
  top: 54px;
  left: 13px;
  width: 11px;
  height: 102px;
  content: "";
  border-radius: 12px;
  background: linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08));
}

.jar-pills {
  position: absolute;
  left: 13px;
  right: 12px;
  z-index: 1;
  display: flex;
  gap: 2px;
}

.jar-pills-top {
  top: 56px;
}

.jar-pills-bottom {
  bottom: 12px;
}

.jar-pills i {
  display: block;
  width: 25px;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffd02b 0 47%, #ef4618 48%);
  box-shadow: inset 3px 2px 2px rgba(255, 255, 255, 0.52), 0 1px 2px rgba(49, 33, 16, 0.21);
  transform: rotate(-16deg);
}

.jar-pills i:nth-child(2) {
  background: linear-gradient(90deg, #93ce27 0 48%, #38761f 49%);
  transform: rotate(13deg);
}

.jar-pills i:nth-child(3) {
  background: linear-gradient(90deg, #ffbb1c 0 48%, #ff6b0d 49%);
  transform: rotate(-6deg);
}

.jar-pills i:nth-child(4) {
  background: linear-gradient(90deg, #ffcf1c 0 48%, #dc2819 49%);
  transform: rotate(18deg);
}

.jar-label {
  position: absolute;
  z-index: 3;
  top: 79px;
  left: 3px;
  width: 112px;
  min-height: 65px;
  padding: 6px 5px 5px;
  color: white;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 0.91);
  border-bottom: 2px solid rgba(255, 255, 255, 0.91);
  border-radius: 8px / 5px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 211, 64, 0.94), transparent 25%),
    linear-gradient(#148bc2, #0872ad);
  font-weight: 600;
}

.jar-label small {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.jar-label strong {
  display: block;
  margin: 7px 0 5px;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(220, 78, 14, 0.9);
}

.jar-label em {
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 2px 8px;
  border-radius: 10px;
  color: white;
  background: #f17617;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.jar-minerals .jar-label {
  background: linear-gradient(#3b99bf, #237594);
}

.jar-herbal .jar-label {
  background: linear-gradient(#62a94b, #267341);
}

.jar-protein .jar-label {
  background: linear-gradient(#d97d28, #b34e18);
}

.jar-probiotics .jar-label {
  background: linear-gradient(#875cac, #53368b);
}

.product-body {
  padding: 15px 14px 14px;
}

.product-category {
  margin: 0 0 7px;
  color: #809080;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 40px;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.product-detail {
  min-height: 31px;
  margin: 0 0 12px;
  color: #68786d;
  font-size: 11px;
  line-height: 1.45;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.product-price {
  font-size: 15px;
  font-weight: 800;
}

.add-button {
  min-width: 92px;
  height: 35px;
  padding: 0 12px;
  border-radius: 7px;
  color: white;
  background: var(--forest);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition: background 150ms ease;
}

.add-button:hover {
  background: #152e20;
}

.site-footer {
  padding: 25px clamp(22px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #6e786f;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  margin-right: 12px;
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
}

.cart-overlay {
  position: fixed;
  z-index: 29;
  inset: 0;
  background: rgba(23, 38, 30, 0.4);
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(490px, 100vw);
  padding: 31px 30px 30px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fcfaf5;
  box-shadow: -24px 0 65px rgba(22, 36, 29, 0.18);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-header {
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-header .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.cart-header h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.close-cart {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: #f0ebdf;
  font-size: 31px;
  line-height: 1;
}

.cart-empty {
  margin: auto 0;
  padding: 38px 22px;
  text-align: center;
  border: 1px dashed #dad3c4;
  border-radius: 12px;
}

.cart-empty p {
  margin: 0 0 9px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
}

.cart-empty span {
  color: #69796f;
  font-size: 13px;
}

.cart-items {
  margin: 18px -4px 13px 0;
  padding-right: 8px;
  overflow-y: auto;
}

.cart-item {
  position: relative;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 57px 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #e6e0d5;
}

.cart-product-pill {
  position: relative;
  width: 52px;
  height: 58px;
  border: 1px solid rgba(82, 124, 153, 0.45);
  border-radius: 20px 20px 10px 10px;
  background: linear-gradient(#e4f2f4 0 34%, #1689bd 35% 75%, #e2f1f1 76%);
}

.cart-product-pill::before {
  position: absolute;
  top: -7px;
  left: 7px;
  width: 38px;
  height: 9px;
  content: "";
  border-radius: 5px 5px 2px 2px;
  background: #f26614;
}

.cart-product-pill span {
  position: absolute;
  top: 13px;
  left: 11px;
  width: 28px;
  height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffd32c 50%, #ed4518 50%);
}

.cart-product-pill.jar-minerals {
  background: linear-gradient(#e4f2f4 0 34%, #357c97 35% 75%, #e2f1f1 76%);
}

.cart-product-pill.jar-herbal {
  background: linear-gradient(#e4f2f4 0 34%, #438551 35% 75%, #e2f1f1 76%);
}

.cart-product-pill.jar-protein {
  background: linear-gradient(#e4f2f4 0 34%, #be6520 35% 75%, #e2f1f1 76%);
}

.cart-product-pill.jar-probiotics {
  background: linear-gradient(#e4f2f4 0 34%, #63478b 35% 75%, #e2f1f1 76%);
}

.cart-item-detail p {
  margin: 0 0 4px;
  color: #809080;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-item-detail h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.25;
}

.cart-item-detail > span {
  color: #66766c;
  font-size: 12px;
}

.line-total {
  align-self: start;
  font-size: 13px;
}

.quantity-controls {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.quantity-controls button:not(.remove-item) {
  width: 25px;
  height: 25px;
  border: 1px solid #d8d1c3;
  border-radius: 50%;
  background: white;
  font-weight: 700;
}

.quantity-controls b {
  min-width: 13px;
  text-align: center;
  font-size: 12px;
}

.remove-item {
  margin-left: 5px;
  color: #7a756b;
  font-size: 11px;
  text-decoration: underline;
}

.cart-summary {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  margin-bottom: 9px;
  display: flex;
  justify-content: space-between;
  color: #66766c;
  font-size: 13px;
}

.cart-summary .cart-total {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.shipping-note {
  margin: 0 0 18px;
  color: #61786a;
  font-size: 12px;
}

.checkout-toggle,
.place-order,
.continue-shopping {
  width: 100%;
  height: 49px;
  color: white;
  border-radius: 5px;
  background: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form {
  margin-top: 19px;
  padding-top: 19px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.checkout-form h3 {
  margin: 0 0 17px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.prefill-note {
  margin: -8px 0 16px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #416649;
  background: #e9f0e7;
  font-size: 11px;
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-grid label {
  color: #53665a;
  font-size: 11px;
  font-weight: 800;
}

.checkout-grid .full-field {
  grid-column: 1 / -1;
}

.checkout-grid input {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  padding: 0 11px;
  border: 1px solid #d7d0c3;
  border-radius: 5px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.checkout-grid input:focus {
  outline: 2px solid rgba(41, 75, 56, 0.2);
  border-color: var(--forest);
}

.payment-note {
  margin: 15px 0;
  color: #6c786f;
  font-size: 11px;
  line-height: 1.5;
}

.order-success {
  margin: auto 0;
  padding: 35px 20px;
  text-align: center;
}

.success-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font-size: 27px;
}

.order-success h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
}

.order-success p {
  margin: 0 0 25px;
  color: #65766b;
  font-size: 13px;
  line-height: 1.55;
}

.check-in-overlay {
  position: fixed;
  z-index: 31;
  inset: 0;
  background: rgba(23, 38, 30, 0.47);
  backdrop-filter: blur(3px);
}

.check-in-modal {
  position: fixed;
  z-index: 32;
  top: 50%;
  left: 50%;
  width: min(690px, calc(100vw - 36px));
  max-height: min(820px, calc(100vh - 38px));
  padding: 29px 31px 31px;
  overflow-y: auto;
  border-radius: 14px;
  background: #fcfaf5;
  box-shadow: 0 26px 75px rgba(22, 36, 29, 0.24);
  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);
  visibility: hidden;
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.check-in-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.check-in-header {
  margin-bottom: 25px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.check-in-header .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.check-in-header h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.check-in-header p:not(.eyebrow) {
  margin: 0;
  color: #67776c;
  font-size: 13px;
}

.check-in-form fieldset {
  margin: 0 0 21px;
  padding: 0;
  border: 0;
}

.check-in-form legend {
  margin-bottom: 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.profile-grid label {
  grid-column: span 3;
  color: #53665a;
  font-size: 11px;
  font-weight: 800;
}

.profile-grid .wide-field {
  grid-column: 1 / -1;
}

.profile-grid label:nth-child(n + 3):not(.wide-field) {
  grid-column: span 2;
}

.profile-grid input {
  width: 100%;
  height: 43px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid #d7d0c3;
  border-radius: 5px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.profile-grid input:focus {
  outline: 2px solid rgba(41, 75, 56, 0.2);
  border-color: var(--forest);
}

.email-lookup {
  margin-bottom: 2px;
}

.lookup-status {
  min-height: 17px;
  margin-top: 7px;
  display: block;
  color: #7a6a52;
  font-size: 11px;
  font-weight: 700;
}

.lookup-status.matched {
  color: #426b4c;
}

.billing-toggle {
  margin: 3px 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4e6054;
  font-size: 13px;
  font-weight: 700;
}

.billing-toggle input {
  width: 17px;
  height: 17px;
  accent-color: var(--forest);
}

.billing-fields {
  padding-top: 4px !important;
}

.save-profile {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  color: white;
  background: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.check-in-success {
  padding: 36px 24px 12px;
  text-align: center;
}

.check-in-success h3 {
  margin: 0 0 11px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.check-in-success p {
  max-width: 445px;
  margin: 0 auto 27px;
  color: #627367;
  font-size: 13px;
  line-height: 1.6;
}

.check-in-success .continue-shopping {
  max-width: 250px;
}

.account-overlay {
  position: fixed;
  z-index: 31;
  inset: 0;
  background: rgba(23, 38, 30, 0.47);
  backdrop-filter: blur(3px);
}

.account-modal {
  position: fixed;
  z-index: 32;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 38px));
  padding: 29px 31px 31px;
  overflow-y: auto;
  border-radius: 14px;
  background: #fcfaf5;
  box-shadow: 0 26px 75px rgba(22, 36, 29, 0.24);
  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);
  visibility: hidden;
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.account-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.account-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.account-header .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.account-header h2 {
  margin: 0 0 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.account-header p:not(.eyebrow) {
  margin: 0;
  color: #64766b;
  font-size: 13px;
}

.history-order {
  margin-bottom: 15px;
  padding: 17px 18px 15px;
  border: 1px solid #e2dccf;
  border-radius: 9px;
  background: white;
}

.history-order-head {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.history-order-head h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.history-order-head p {
  margin: 0;
  color: #728076;
  font-size: 11px;
}

.status-badge {
  padding: 6px 11px;
  border-radius: 18px;
  color: #486451;
  background: #e4efe5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.status-received {
  color: #315c42;
  background: #e2efe6;
}

.history-order ul {
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
  border-bottom: 1px solid #eee8dd;
}

.history-order li {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #586a5e;
  font-size: 12px;
}

.history-order li small {
  color: #829084;
}

.history-total {
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
}

.history-loading,
.history-error,
.history-empty {
  margin: 0;
  padding: 36px 22px;
  border: 1px dashed #dcd3c4;
  border-radius: 9px;
  color: #63756a;
  text-align: center;
  font-size: 13px;
}

.history-empty h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.history-empty p {
  margin: 0;
}

.admin-overlay {
  position: fixed;
  z-index: 33;
  inset: 0;
  background: rgba(20, 33, 27, 0.58);
  backdrop-filter: blur(3px);
}

.admin-login-modal,
.admin-dashboard {
  position: fixed;
  z-index: 34;
  top: 50%;
  left: 50%;
  border-radius: 14px;
  background: #fcfaf5;
  box-shadow: 0 26px 75px rgba(22, 36, 29, 0.3);
  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);
  visibility: hidden;
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms ease;
}

.admin-login-modal.open,
.admin-dashboard.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.admin-login-modal {
  width: min(515px, calc(100vw - 36px));
  padding: 29px 31px 31px;
}

.admin-modal-header,
.dashboard-header {
  margin-bottom: 23px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-modal-header .eyebrow,
.dashboard-header .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.admin-modal-header h2,
.dashboard-header h2 {
  margin: 0 0 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.admin-modal-header p:not(.eyebrow),
.dashboard-header p:not(.eyebrow) {
  margin: 0;
  color: #627468;
  font-size: 13px;
}

.admin-login-form label {
  margin-bottom: 14px;
  display: block;
  color: #53665a;
  font-size: 11px;
  font-weight: 800;
}

.admin-login-form input,
.admin-form-grid input,
.password-reset-form input,
.admin-order select {
  width: 100%;
  height: 43px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid #d7d0c3;
  border-radius: 5px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.admin-bootstrap-note {
  margin: 4px 0 17px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #5f6e64;
  background: #f1ede3;
  font-size: 11px;
}

.admin-error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 5px;
  color: #8a3529;
  background: #f6e5e0;
  font-size: 12px;
  font-weight: 700;
}

.admin-dashboard {
  width: min(980px, calc(100vw - 36px));
  height: min(780px, calc(100vh - 38px));
  padding: 27px 30px 30px;
  overflow: hidden;
}

.dashboard-tabs {
  margin-bottom: 20px;
  display: flex;
  gap: 9px;
}

.dashboard-tab {
  padding: 11px 23px;
  border: 1px solid #d7d0c3;
  border-radius: 22px;
  color: #596b60;
  background: white;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-tab.active {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.dashboard-panel {
  display: none;
  height: calc(100% - 145px);
  overflow-y: auto;
  padding-right: 5px;
}

.dashboard-panel.active {
  display: block;
}

.admin-order {
  margin-bottom: 12px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 1fr auto 160px;
  align-items: center;
  gap: 20px;
  border: 1px solid #e3dccf;
  border-radius: 8px;
  background: white;
}

.admin-order h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.admin-order p {
  margin: 0 0 5px;
  color: #596c61;
  font-size: 12px;
}

.admin-order small {
  color: #78867d;
  font-size: 11px;
}

.admin-badges {
  margin-top: 9px;
  display: flex;
  gap: 6px;
}

.admin-order > strong {
  font-size: 14px;
}

.admin-order label {
  color: #53665a;
  font-size: 10px;
  font-weight: 800;
}

.admin-order select {
  height: 37px;
  padding: 0 8px;
}

.verify-payment {
  grid-column: 3;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid var(--forest);
  border-radius: 5px;
  color: var(--forest);
  background: white;
  font-size: 11px;
  font-weight: 800;
}

.verify-payment:disabled {
  opacity: 0.65;
}

.add-admin-form {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #e3dccf;
  border-radius: 8px;
  background: white;
}

.add-admin-form h3 {
  margin: 0 0 15px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.admin-form-grid {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.admin-form-grid label {
  color: #53665a;
  font-size: 11px;
  font-weight: 800;
}

.add-admin-form .save-profile {
  max-width: 195px;
}

.integration-readiness {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #e3dccf;
  border-radius: 8px;
  background: white;
}

.integration-readiness h3 {
  margin: 0 0 13px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.integration-readiness p {
  margin: 8px 0;
  color: #596c61;
  font-size: 13px;
}

.integration-readiness small {
  color: #78867d;
}

.integration-product {
  margin-bottom: 9px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  border: 1px solid #e3dccf;
  border-radius: 8px;
  background: white;
}

.integration-product label {
  color: #53665a;
  font-size: 11px;
  font-weight: 800;
}

.integration-product input {
  width: 100%;
  height: 39px;
  margin-top: 6px;
  padding: 0 11px;
  border: 1px solid #d7d0c3;
  border-radius: 5px;
}

.integration-product button {
  height: 39px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: var(--forest);
  font-weight: 700;
}

.administrator-row {
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid #e2dccf;
}

.administrator-row h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.administrator-row p {
  margin: 0;
  color: #68786e;
  font-size: 12px;
}

.password-reset-form {
  width: min(370px, 55%);
  display: flex;
  align-items: end;
  gap: 8px;
}

.password-reset-form input {
  margin: 0;
}

.password-reset-form button {
  min-width: 135px;
  height: 43px;
  border-radius: 5px;
  color: white;
  background: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr 0.88fr;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 25px;
  }

  .values article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 840px) {
  .site-header {
    height: auto;
    min-height: 75px;
    flex-wrap: wrap;
    gap: 14px 25px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .main-nav {
    width: 100%;
    height: 37px;
    order: 3;
    justify-content: center;
    gap: clamp(20px, 8vw, 44px);
  }

  .main-nav .active::after {
    bottom: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-art {
    min-height: 425px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 570px) {
  .announcement-bar span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 54px);
  }

  .values {
    grid-template-columns: 1fr;
  }

  .values article + article {
    border-left: 0;
    padding-left: 0;
  }

  .catalog-heading,
  .site-footer {
    display: block;
  }

  .results {
    padding: 15px 0 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer p + p {
    margin-top: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .customer-welcome {
    max-width: 112px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
  }

  .check-in-button {
    padding: 0 13px;
  }

  .check-out-button {
    padding: 0 13px;
  }

  .cart-drawer {
    padding: 23px 18px 20px;
  }

  .checkout-grid {
    display: block;
  }

  .checkout-grid label {
    display: block;
    margin-bottom: 12px;
  }

  .check-in-modal {
    padding: 22px 18px 23px;
  }

  .account-modal {
    padding: 22px 18px 23px;
  }

  .admin-login-modal,
  .admin-dashboard {
    padding: 22px 18px 23px;
  }

  .admin-dashboard {
    height: calc(100vh - 24px);
  }

  .admin-form-grid,
  .admin-order,
  .integration-product {
    display: block;
  }

  .integration-product button {
    margin-top: 11px;
    width: 100%;
  }

  .admin-form-grid label {
    margin-bottom: 12px;
    display: block;
  }

  .admin-order > strong {
    margin: 12px 0;
    display: block;
  }

  .administrator-row,
  .password-reset-form {
    width: 100%;
    display: block;
  }

  .password-reset-form button {
    width: 100%;
    margin-top: 8px;
  }

  .check-in-header h2 {
    font-size: 28px;
  }

  .profile-grid {
    display: block;
  }

  .profile-grid label {
    display: block;
    margin-bottom: 12px;
  }
}
