:root {
  --ink: #123225;
  --deep: #0d2a1d;
  --club: #143d2a;
  --fairway: #6f8466;
  --cream: #fbf7ed;
  --white: #fffef9;
  --sand: #e6dbc8;
  --brass: #b99a55;
  --sky: #dce9e4;
  --line: rgba(18, 50, 37, 0.13);
  --shadow: 0 26px 70px rgba(13, 42, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 61, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 61, 42, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  color: #fff;
  background: var(--deep);
  font-size: 13px;
}

.topbar button,
.topbar a {
  color: #fff;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 42px;
  background: rgba(255, 254, 249, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 168px;
  color: var(--ink);
  text-decoration: none;
  line-height: 0.9;
}

.brand span,
.brand strong {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.brand strong {
  margin-left: 7px;
  color: var(--club);
}

.brand-single span {
  font-size: 40px;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--fairway);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: 18px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.account-menu-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.cart-button {
  min-height: 40px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.profile-button {
  display: grid;
  width: 74px;
  min-height: 52px;
  place-items: center;
  gap: 2px;
  color: var(--club);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.profile-button svg {
  width: 58px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 11;
}

.profile-button:hover,
.profile-button.active-profile {
  color: var(--brass);
  transform: translateY(-1px);
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 178px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(18, 50, 37, 0.15);
}

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

.account-menu a {
  padding: 11px 12px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.account-menu a:hover {
  background: #f6f2e8;
}

.cart-button {
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cart-button.active-cart {
  border-color: rgba(185, 154, 85, 0.45);
  box-shadow: 0 12px 28px rgba(18, 50, 37, 0.08);
}

.cart-button span {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  margin-left: 7px;
  place-items: center;
  color: #fff;
  background: var(--brass);
  border-radius: 50%;
  font-size: 12px;
}

.hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.92fr 1.28fr;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: 70px 36px 70px 72px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--fairway);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.7vw, 86px);
  line-height: 0.95;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: #354f42;
  font-size: 18px;
  line-height: 1.58;
}

.search-panel {
  display: grid;
  max-width: 540px;
  grid-template-columns: 1fr 104px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(18, 50, 37, 0.08);
}

.search-panel input {
  min-width: 0;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  outline: none;
}

.search-panel button {
  color: #fff;
  background: var(--club);
  border: 0;
  font-weight: 900;
}

.trust-row {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  color: #385145;
  font-size: 13px;
  line-height: 1.35;
}

.trust-row span {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(251, 247, 237, 0.72) 14%, rgba(251, 247, 237, 0) 44%),
    url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=1500&q=85") center/cover;
}

.recommend-card {
  position: absolute;
  right: 46px;
  bottom: 42px;
  display: grid;
  width: min(455px, calc(100% - 64px));
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 254, 249, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.plant-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: #fff;
  background: var(--club);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.recommend-card h2 {
  margin-bottom: 7px;
  font-size: 24px;
}

.recommend-card p {
  margin-bottom: 16px;
  color: #405447;
  line-height: 1.45;
}

.recommend-card button,
.difference-copy button,
.lead-form button,
.purchase-panel button {
  padding: 13px 21px;
  color: #fff;
  background: var(--club);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.section-row {
  scroll-margin-top: 150px;
  padding: 54px 72px;
  background: rgba(255, 254, 249, 0.86);
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1;
}

.section-heading a {
  color: var(--club);
  font-weight: 900;
  text-decoration: none;
}

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

.bundle-grid article,
.inventory-callout,
.lead-form,
.care-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(18, 50, 37, 0.08);
}

.bundle-grid article {
  min-height: 220px;
  padding: 28px;
}

.bundle-grid span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.bundle-grid h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.bundle-grid p,
.inventory-callout p,
.concierge p,
.care-grid p {
  color: #405447;
  line-height: 1.55;
}

.inventory-callout {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 34px;
  margin: 34px 72px;
  padding: 34px;
}

.starter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.starter-list a,
.filter-pill {
  padding: 10px 13px;
  color: var(--club);
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.search-result-message {
  min-height: 22px;
  margin: -14px 0 22px;
  color: var(--fairway);
  font-size: 13px;
  font-weight: 900;
}

.filter-pill.active {
  color: #fff;
  background: var(--club);
}

.catalog-block {
  scroll-margin-top: 150px;
  margin-top: 38px;
}

.catalog-block > h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(145px, 1fr));
  gap: 28px 22px;
}

.plant-card {
  min-width: 0;
  text-align: center;
}

.plant-link {
  display: grid;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.plant-photo {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(18, 50, 37, 0.1);
}

.plant-photo em {
  position: absolute;
  right: 12px;
  bottom: 14px;
  padding: 7px 10px;
  color: #fff;
  background: var(--club);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(18, 50, 37, 0.18);
}

.plant-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.plant-link:hover img {
  transform: scale(1.06);
}

.plant-link strong {
  min-height: 38px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.plant-link small {
  color: var(--fairway);
  font-size: 13px;
  font-weight: 900;
}

.plant-link small s {
  margin-right: 6px;
  color: #8b9385;
  font-weight: 750;
}

.empty-sale-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  color: var(--fairway);
  background: #fbfaf6;
  border: 1px dashed var(--line);
  border-radius: 16px;
  font-weight: 850;
}

.difference {
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.9fr 1.1fr;
  background:
    linear-gradient(90deg, rgba(13, 42, 29, 0.95), rgba(13, 42, 29, 0.78)),
    url("https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1500&q=85") center/cover;
  color: #fff;
}

.difference-copy {
  padding: 72px;
}

.difference-copy .eyebrow {
  color: #cddbbf;
}

.difference-copy h2 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
}

.difference-copy ul {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.difference-copy li {
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.difference-copy li::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: "•";
}

.difference-copy button {
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.concierge {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  padding: 72px;
  background: var(--white);
}

.concierge h2 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form p {
  min-height: 22px;
  margin: 0;
  color: var(--club);
  font-weight: 900;
}

.detail-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  padding: 54px 72px 72px;
  background: var(--white);
}

.back-link {
  grid-column: 1 / -1;
  color: var(--club);
  font-weight: 900;
  text-decoration: none;
}

.detail-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  max-width: 720px;
}

.detail-copy > p {
  max-width: 620px;
  color: #405447;
  font-size: 19px;
  line-height: 1.6;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.detail-meta span {
  padding: 10px 13px;
  color: var(--club);
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.purchase-panel strong {
  margin-right: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.sale-detail-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--fairway);
  font-size: 14px;
  font-weight: 850;
}

.size-selector {
  display: grid;
  grid-column: 1;
  gap: 6px;
  min-width: 210px;
  max-width: 280px;
  color: var(--fairway);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-selector select {
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.detail-quantity {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.detail-quantity.is-visible {
  display: flex;
}

.detail-quantity button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
}

.detail-quantity span {
  min-width: 26px;
  text-align: center;
  font-weight: 950;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.care-grid article {
  padding: 26px;
}

.care-grid h2 {
  font-size: 28px;
}

.profile-page {
  min-height: calc(100vh - 120px);
  padding: 54px 72px 72px;
}

.cart-page {
  min-height: calc(100vh - 120px);
  padding: 54px 72px 72px;
}

.profile-hero {
  max-width: 820px;
  margin-bottom: 30px;
}

.cart-hero {
  max-width: 760px;
  margin-bottom: 30px;
}

.profile-hero h1 {
  margin-bottom: 16px;
}

.cart-hero h1 {
  margin-bottom: 16px;
}

.profile-hero p:not(.eyebrow) {
  max-width: 640px;
  color: #405447;
  font-size: 18px;
  line-height: 1.6;
}

.cart-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #405447;
  font-size: 18px;
  line-height: 1.6;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 20px;
  align-items: start;
}

.profile-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 50, 37, 0.08);
}

.cart-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 50, 37, 0.08);
}

.checkout-card {
  position: sticky;
  top: 118px;
}

.profile-card-large,
.profile-card-full {
  grid-column: span 1;
}

.profile-card-full {
  grid-column: 1 / -1;
}

.card-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.card-title-row h2 {
  margin: 0;
  font-size: 32px;
}

.card-title-row button {
  min-width: 62px;
  padding: 10px 14px;
  color: var(--club);
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.small-link {
  padding: 10px 14px;
  color: var(--club);
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.profile-lines,
.order-list {
  display: grid;
  gap: 12px;
}

.profile-form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-form[hidden] {
  display: none;
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
}

.form-row.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-row.city-state-zip {
  grid-template-columns: 1fr 92px 130px;
}

.profile-form label {
  display: grid;
  gap: 7px;
  color: var(--fairway);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.profile-form textarea {
  min-height: 110px;
  resize: vertical;
}

.profile-form button {
  justify-self: start;
  padding: 13px 18px;
  color: #fff;
  background: var(--club);
  border: 0;
  border-radius: 999px;
  font-weight: 950;
}

.profile-form p {
  min-height: 20px;
  margin: 0;
  color: var(--club);
  font-weight: 900;
  text-transform: none;
}

.delete-profile-link {
  display: block;
  margin: 24px auto 0;
  padding: 0;
  color: #7f372e;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.cart-item-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sky);
  border-radius: 50%;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cart-item-main {
  display: grid;
  gap: 4px;
}

.cart-item-main a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.cart-item-main span {
  color: var(--fairway);
  font-size: 13px;
  font-weight: 850;
}

.cart-item-main strong {
  color: #405447;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px 34px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  height: 36px;
  color: var(--club);
  background: var(--white);
  border: 0;
  font-size: 19px;
  font-weight: 900;
}

.quantity-control span {
  text-align: center;
  font-weight: 950;
}

.remove-item {
  color: #7f372e;
  background: #fff7f4;
  border: 1px solid rgba(127, 55, 46, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
}

.empty-cart {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 30px;
  background: #fbfaf6;
  border: 1px dashed var(--line);
  border-radius: 14px;
}

.empty-cart h3,
.empty-cart p {
  margin: 0;
}

.empty-cart p {
  color: #405447;
}

.empty-cart a {
  margin-top: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--club);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line span,
.summary-line strong {
  color: #405447;
}

.summary-total {
  margin-bottom: 18px;
  border-bottom: 0;
}

.summary-total span {
  color: var(--ink);
  font-weight: 950;
}

.summary-total strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.checkout-form {
  display: grid;
  gap: 11px;
}

.checkout-note {
  margin: 0 0 16px;
  padding: 13px 15px;
  color: #405447;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px 116px;
  gap: 11px;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
}

.checkout-form textarea {
  min-height: 98px;
  resize: vertical;
}

.checkout-form button {
  padding: 14px 18px;
  color: #fff;
  background: var(--club);
  border: 0;
  border-radius: 999px;
  font-weight: 950;
}

.checkout-form p {
  min-height: 22px;
  margin: 0;
  color: var(--club);
  font-weight: 900;
  line-height: 1.4;
}

.info-line,
.payment-card,
.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.empty-profile-summary {
  padding: 16px 18px;
  color: #405447;
  background: #fbfaf6;
  border: 1px dashed var(--line);
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.payment-profile-card {
  align-self: start;
  padding: 20px;
}

.payment-profile-card .card-title-row {
  margin-bottom: 14px;
}

.payment-profile-card .card-title-row h2 {
  font-size: 24px;
}

.payment-profile-card .payment-card {
  padding: 12px 14px;
}

.saved-payment-list {
  display: grid;
  gap: 10px;
}

.empty-payment-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.empty-payment-card span {
  color: var(--fairway);
  font-size: 13px;
  font-weight: 800;
}

.payment-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-actions button {
  min-width: 0;
  padding: 7px 10px;
  color: var(--club);
  background: #fffef9;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.detected-card-brand {
  margin-top: -4px;
  color: var(--club);
  font-size: 13px;
  font-weight: 900;
}

.payment-profile-card .quiet-note {
  margin-top: 10px;
}

.master-tools {
  display: grid;
  gap: 14px;
}

.master-panel {
  overflow: hidden;
  background: #fffef9;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.master-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.master-panel summary::after {
  content: "+";
  color: var(--brass);
  font-size: 24px;
  line-height: 1;
}

.master-panel[open] summary::after {
  content: "-";
}

.admin-list {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.admin-price-row,
.admin-sale-row,
.metric-line,
.item-edit summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.admin-price-row div,
.admin-sale-row div {
  display: grid;
  gap: 3px;
}

.admin-size-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(104px, 1fr));
  gap: 10px;
  min-width: min(430px, 100%);
}

.admin-size-prices-form {
  grid-column: 1 / -1;
}

.admin-price-row strong,
.admin-sale-row strong,
.item-edit summary span {
  color: var(--ink);
  font-weight: 950;
}

.admin-price-row span,
.admin-sale-row span,
.item-edit summary small {
  color: var(--fairway);
  font-size: 13px;
  font-weight: 850;
}

.admin-price-row label,
.admin-sale-row label,
.admin-size-prices label {
  display: grid;
  gap: 5px;
  color: var(--fairway);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-price-row input,
.admin-sale-row input,
.admin-size-prices input {
  width: 120px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font: inherit;
  font-weight: 850;
}

.admin-sale-row button {
  width: fit-content;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-plant-form,
.item-edit-form {
  margin: 0;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #f6f2e8;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.metric-card span,
.metric-card small {
  color: var(--fairway);
  font-weight: 850;
}

.metric-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.sales-metrics {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.sales-metrics h3 {
  margin: 12px 0 2px;
  color: var(--ink);
  font-size: 22px;
}

.metric-line span {
  color: var(--ink);
  font-weight: 900;
}

.metric-line strong {
  color: var(--fairway);
  font-size: 14px;
}

.item-edit {
  display: grid;
  gap: 0;
}

.item-edit summary {
  cursor: pointer;
  list-style: none;
}

.item-edit summary::-webkit-details-marker {
  display: none;
}

.info-line {
  align-items: start;
}

.info-line span,
.quiet-note,
.order-card span {
  color: var(--fairway);
}

.info-line span {
  min-width: 132px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-line strong,
.payment-card span,
.order-card strong {
  color: var(--ink);
}

.payment-card strong {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quiet-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.order-card {
  color: inherit;
  text-decoration: none;
}

.order-card div {
  display: grid;
  gap: 5px;
}

.order-card small {
  color: var(--brass);
  font-weight: 950;
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .difference,
  .concierge,
  .detail-hero,
  .inventory-callout,
  .profile-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    position: static;
  }

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

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

  .admin-price-row,
  .metric-line,
  .item-edit summary {
    align-items: start;
    flex-direction: column;
  }

  .profile-card-large,
  .profile-card-full {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .site-header,
  .hero-copy,
  .section-row,
  .difference-copy,
  .concierge,
  .detail-hero,
  .profile-page,
  .cart-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    gap: 14px;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .brand span,
  .brand strong {
    font-size: 30px;
  }

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

  .hero-media {
    min-height: 460px;
  }

  .trust-row,
  .bundle-grid,
  .plant-grid,
  .care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-item {
    grid-template-columns: 76px 1fr;
  }

  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .purchase-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .form-row.two-col,
  .form-row.three-col,
  .form-row.city-state-zip {
    grid-template-columns: 1fr;
  }

  .quantity-control,
  .remove-item {
    grid-column: 2;
    justify-self: start;
  }

  .recommend-card {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .inventory-callout {
    margin: 20px;
  }

}

@media (max-width: 460px) {
  .trust-row,
  .bundle-grid,
  .plant-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .search-panel button {
    padding: 14px;
  }
}
