@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --ink: #111111;
  --muted: #6d6876;
  --leaf: #d98f7e;
  --leaf-dark: #111111;
  --mint: #fff0eb;
  --cream: #fbfaf8;
  --paper: #ffffff;
  --gold: #c88932;
  --rose: #f4ded4;
  --line: rgba(23, 33, 26, 0.12);
  --shadow: 0 22px 60px rgba(135, 78, 67, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.announcement {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  color: #fff;
  background: #111111;
  font-size: 13px;
}

.announcement span {
  color: #f2cf83;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #111;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  justify-self: center;
  padding: 6px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--leaf);
  background: #fff0eb;
}

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

.header-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.header-icon:hover {
  border-color: rgba(217, 143, 126, 0.42);
  background: #fff;
  transform: translateY(-1px);
}

.header-icon::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  padding: 6px 8px;
  border-radius: 6px;
  background: #111111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.header-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-icon i {
  color: var(--leaf-dark);
  font-size: 18px;
  line-height: 1;
}

.primary-button,
.ghost-button,
.cart-button,
.close-button,
.row-actions button {
  cursor: pointer;
  border: 0;
}

.primary-button,
.ghost-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 14px 34px rgba(217, 143, 126, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  background: var(--leaf-dark);
  transform: translateY(-2px);
}

.ghost-button,
.cart-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.compact {
  min-height: 42px;
  padding: 0 14px;
}

.cart-button b {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 99px;
  background: var(--leaf);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.header-icon.cart-button {
  display: grid;
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 106px);
  padding: clamp(44px, 7vw, 94px) clamp(18px, 5vw, 72px) 40px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

h3 {
  font-size: 21px;
}

.hero-text,
.page-hero p,
.benefit p,
.product-card p,
.routine p,
.review-card p,
.contact-panel span,
.form-note {
  color: var(--ink);
  line-height: 1.72;
}

.hero-text {
  max-width: 660px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-strip {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.product-halo {
  position: absolute;
  width: min(68vw, 520px);
  height: min(68vw, 520px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--rose));
  border: 1px solid rgba(217, 143, 126, 0.18);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  max-height: min(74vh, 670px);
  filter: drop-shadow(0 34px 38px rgba(17, 17, 17, 0.24));
  animation: productFloat 5.5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 24px;
}

.floating-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.floating-card-one {
  top: 16%;
  right: 4%;
}

.floating-card-two {
  bottom: 16%;
  left: 3%;
}

.page-hero,
.section-heading,
.benefits,
.video-showcase,
.product-grid,
.routine,
.results,
.reviews,
.order-process,
.shop-toolbar,
.checkout-layout,
.contact-layout,
.auth-shell,
.admin-grid,
.admin-panels {
  padding-inline: clamp(18px, 5vw, 72px);
}

.page-hero {
  max-width: 920px;
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: 28px;
}

.page-hero h1 {
  max-width: 820px;
}

body[data-page="checkout"] .page-hero h1 {
  max-width: 620px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
}

.benefits,
.product-grid,
.review-grid,
.checkout-layout,
.contact-layout,
.admin-grid,
.admin-panels {
  display: grid;
  gap: 18px;
}

.benefits {
  grid-template-columns: repeat(3, 1fr);
  padding-block: 42px;
  background: #fff;
}

.video-showcase {
  padding-top: 68px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

.video-showcase .section-heading {
  padding: 0 0 22px;
}

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

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(217, 143, 126, 0.24);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 22px 50px rgba(71, 45, 39, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(71, 45, 39, 0.18);
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.78) 100%);
  pointer-events: none;
}

.video-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.video-card span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.video-card strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
}

.benefit,
.product-card,
.review-card,
.checkout-card,
.contact-form,
.contact-panel,
.auth-card,
.settings-form,
.admin-panel,
.shop-toolbar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 33, 26, 0.02);
}

.benefit,
.review-card,
.contact-panel,
.admin-panel,
.shop-toolbar {
  padding: 26px;
}

.benefit,
.product-card,
.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover,
.product-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit img {
  width: 58px;
  margin-bottom: 22px;
}

.section-heading {
  max-width: 820px;
  padding-top: 72px;
  padding-bottom: 22px;
}

.product-grid {
  grid-template-columns: 1fr;
  padding-bottom: clamp(54px, 7vw, 86px);
}

.product-grid-home {
  padding-bottom: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.product-card > div {
  position: relative;
}

.product-card figure {
  display: grid;
  min-height: 270px;
  margin: 0;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--mint), #fff7ec);
}

.product-card img {
  max-height: 250px;
  object-fit: contain;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 18px;
}

.price strong {
  color: var(--leaf-dark);
  font-size: 30px;
}

.price del {
  color: #98a29a;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 900;
}

.deal-ribbon {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e51919;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(229, 25, 25, 0.18);
}

.bundle-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(217, 143, 126, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(67, 55, 49, 0.08);
}

.bundle-product {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(217, 143, 126, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8f4 0%, #fff 100%);
}

.bundle-product figure {
  display: grid;
  min-height: 390px;
  height: 100%;
  margin: 0;
  place-items: center;
  border-radius: 10px;
  background: #fff0ea;
}

.bundle-product img {
  max-height: 360px;
  object-fit: contain;
}

.bundle-product > div > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-product h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
}

.bundle-product p {
  max-width: 600px;
  color: var(--ink);
  line-height: 1.7;
}

.bundle-select-panel {
  display: grid;
  gap: 0;
  height: 100%;
}

.bundle-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bundle-title span {
  height: 2px;
  background: #b8dfaa;
}

.bundle-options {
  display: grid;
  gap: 14px;
}

.bundle-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 18px 20px;
  border: 2px solid #c6e6bd;
  border-radius: 12px;
  background: #f1f1f1;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bundle-option.selected {
  border-color: #45a814;
  background: #fff;
  box-shadow: 0 12px 28px rgba(69, 168, 20, 0.1);
}

.bundle-option:hover {
  border-color: #45a814;
}

.option-radio {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 3px solid #bfe5b3;
  border-radius: 50%;
  background: #fff;
}

.bundle-option.selected .option-radio {
  border-color: #45a814;
}

.bundle-option.selected .option-radio::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #45a814;
}

.bundle-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 600;
}

.bundle-copy small {
  display: block;
  color: var(--ink);
  font-size: clamp(16px, 2vw, 21px);
}

.bundle-copy em {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dedede;
  color: #222;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.bundle-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  white-space: nowrap;
}

.bundle-price strong {
  color: #0f1013;
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 500;
}

.bundle-price del {
  color: #64666a;
  font-size: clamp(16px, 2vw, 22px);
}

.bundle-ribbon {
  position: absolute;
  top: -14px;
  right: 26px;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 0 0 6px 6px;
  background: #ed0909;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.bundle-ribbon::before,
.bundle-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border-style: solid;
}

.bundle-ribbon::before {
  left: -14px;
  border-width: 14px 14px 0 0;
  border-color: transparent #9d0303 transparent transparent;
}

.bundle-ribbon::after {
  right: -14px;
  border-width: 14px 0 0 14px;
  border-color: transparent transparent transparent #9d0303;
}

.bundle-add-button {
  margin-top: 18px;
}

.bundle-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.routine,
.order-process {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  margin: 72px clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: #111111;
  color: #fff;
}

.routine {
  padding-inline: clamp(28px, 5vw, 58px);
}

.routine p,
.order-process p {
  color: #dce9dc;
}

.routine ol {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #dce9dc;
  line-height: 1.7;
}

.routine-panel {
  display: grid;
  gap: 14px;
}

.routine-panel div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.routine-panel span {
  display: block;
  color: #f2cf83;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.routine-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 25px;
}

.results {
  padding-bottom: 70px;
  background: #fff;
}

.reviews {
  padding-top: 34px;
  padding-bottom: 44px;
}

.results-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.featured-result {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: #111111;
  box-shadow: var(--shadow);
}

.featured-result img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.featured-result div {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: min(420px, calc(100% - 44px));
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.featured-result span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-result strong {
  font-size: 20px;
}

.result-thumbs {
  display: grid;
  gap: 14px;
}

.result-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  opacity: 0.72;
}

.result-thumbs button.active,
.result-thumbs button:hover {
  border-color: var(--leaf);
  opacity: 1;
}

.result-thumbs img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.reviews-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) 44px;
}

.reviews-intro {
  padding: 30px;
  border-radius: 8px;
  background: #111111;
  color: #fff;
}

.reviews-intro p {
  color: #dce9dc;
  line-height: 1.7;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.review-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.review-metrics strong,
.review-metrics span {
  display: block;
}

.review-metrics strong {
  font-size: 28px;
}

.review-metrics span {
  margin-top: 4px;
  color: #dce9dc;
  font-size: 13px;
  font-weight: 800;
}

.story-stack {
  position: relative;
  max-height: 540px;
  overflow: hidden;
  padding-right: 4px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}

.story-track {
  display: grid;
  gap: 12px;
  animation: storyScroll 24s linear infinite;
}

.story-stack:hover .story-track {
  animation-play-state: paused;
}

.story-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.story-topline,
.story-card footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.story-topline span,
.story-card footer span {
  color: var(--muted);
  font-weight: 800;
}

.story-topline strong {
  color: var(--leaf);
}

.story-card p {
  margin: 16px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}

.row-actions button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #eef3ed;
  color: var(--leaf-dark);
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-weight: 900;
}

.order-process {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 28px;
  background: #111111;
}

.process-copy {
  max-width: 520px;
}

.process-copy .primary-button {
  margin-top: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-steps article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--leaf);
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
}

.process-steps p {
  margin: 0;
  font-size: 14px;
}

.seo-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding: 34px clamp(18px, 5vw, 72px) 74px;
}

.seo-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 44px);
}

.seo-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.seo-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(217, 143, 126, 0.28);
  border-radius: 999px;
  background: #fff7f3;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 0.7fr 0.9fr;
  gap: clamp(26px, 6vw, 88px);
  padding: clamp(22px, 4vw, 42px) clamp(18px, 5vw, 72px) 24px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf7 0%, #fff2ed 100%);
}

.footer-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 28px;
  padding: 20px 22px;
  border: 1px solid rgba(217, 143, 126, 0.26);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(135, 78, 67, 0.11);
}

.footer-cta span,
.footer-bottom span {
  color: var(--muted);
}

.footer-cta strong {
  margin: 4px 0 0;
  font-size: 22px;
}

.footer-cta a,
.site-footer .footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(217, 143, 126, 0.26);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.65;
}

.site-footer a {
  display: flex;
  width: max-content;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--leaf);
}

.footer-cta a:hover,
.site-footer .footer-cta a:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(21, 18, 18, 0.18);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.footer-links {
  display: grid;
  align-content: start;
}

.social-link {
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-weight: 500;
}

.social-link i {
  color: var(--leaf);
  font-size: 21px;
}

.footer-links,
.footer-contact {
  padding-top: 8px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(217, 143, 126, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 13px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) 24px;
  padding: 18px 22px;
}

.shop-toolbar span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.checkout-layout,
.contact-layout {
  grid-template-columns: 0.82fr 1.18fr;
  padding-bottom: 76px;
}

.checkout-layout.checkout-complete {
  padding-bottom: 22px;
}

.checkout-card,
.contact-form,
.auth-card,
.settings-form {
  padding: clamp(24px, 4vw, 38px);
}

.thank-you-card {
  display: grid;
  gap: 18px;
  margin: 0 clamp(18px, 5vw, 72px) 76px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(217, 143, 126, 0.24);
  border-radius: 8px;
  background: #fff7f3;
}

.thank-you-card[hidden] {
  display: none;
}

.thank-you-card h2 {
  margin-bottom: 8px;
}

.thank-you-card p {
  color: var(--muted);
  line-height: 1.7;
}

.thank-you-details {
  display: grid;
  gap: 18px;
}

.thank-you-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thank-you-summary div {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.thank-you-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.thank-you-summary strong {
  display: block;
  margin-top: 4px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cart-item,
.order-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
}

.cart-item img {
  height: 70px;
  object-fit: contain;
}

.cart-item span,
.cart-item small,
.order-row span {
  color: var(--muted);
}

.cart-item button {
  border: 0;
  background: transparent;
  color: #a33d2d;
  cursor: pointer;
  font-weight: 900;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(14, 22, 16, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(14, 14, 14, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: min(340px, 88vw);
  height: 100vh;
  background: #fff;
  box-shadow: 22px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-header strong {
  font-size: 24px;
}

.mobile-menu .cart-close {
  position: static;
}

.mobile-menu-links {
  display: grid;
  padding: 14px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu-links a:hover {
  color: var(--leaf);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, 100vw);
  height: 100vh;
  background: #fff;
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.22);
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

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

.cart-drawer-header,
.cart-drawer-footer {
  padding: 20px;
}

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

.cart-drawer-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer-header strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.cart-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #f1eee6;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-drawer-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  overflow: auto;
}

.drawer-line-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.drawer-line-item img {
  width: 92px;
  height: 112px;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--mint), #fff7ec);
}

.drawer-line-content {
  display: grid;
  gap: 8px;
}

.drawer-line-content h3 {
  margin: 0 0 4px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.drawer-line-content span {
  color: var(--leaf-dark);
  font-weight: 900;
}

.drawer-line-content small {
  color: var(--muted);
  word-break: break-word;
}

.line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-stepper {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qty-stepper button,
.remove-line {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.qty-stepper button {
  min-height: 34px;
  color: var(--leaf-dark);
}

.qty-stepper strong {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-inline: 1px solid var(--line);
}

.remove-line {
  color: #9b3c2f;
  font-size: 13px;
}

.cart-drawer-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: #fffaf2;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
}

.cart-shipping {
  font-size: 15px;
}

.cart-grand-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.cart-subtotal span {
  color: var(--muted);
  font-weight: 900;
}

.cart-drawer-footer p,
.empty-cart p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.empty-cart {
  display: grid;
  gap: 12px;
  padding: 28px 14px;
  text-align: center;
}

.empty-cart strong {
  font-size: 22px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.cart-total-stack {
  display: grid;
  gap: 12px;
  margin: 24px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total-stack div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.cart-total-stack .grand {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.form-grid,
.settings-form,
.auth-card {
  display: grid;
  gap: 14px;
}

.checkout-note {
  margin: -4px 0 18px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 143, 126, 0.26);
  border-radius: 8px;
  background: #fff7f3;
  color: var(--ink);
  line-height: 1.6;
}

.payment-note {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 143, 126, 0.22);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--ink);
  line-height: 1.6;
}

.payment-note strong {
  color: var(--ink);
}

.payment-note.bank-open {
  padding: 0;
  border: 0;
  background: transparent;
}

.bank-transfer-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(217, 143, 126, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff8f4 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(67, 55, 49, 0.08);
}

.bank-transfer-card span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-transfer-card p {
  margin: 8px 0 0;
  color: var(--ink);
}

.bank-transfer-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bank-transfer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #fff;
}

.bank-transfer-card dt {
  color: var(--muted);
  font-weight: 600;
}

.bank-transfer-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

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

.checkout-card .primary-button[type="submit"],
.contact-form .primary-button[type="submit"],
.settings-form .primary-button[type="submit"],
.auth-card .primary-button[type="submit"] {
  margin-top: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 500;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #7d7a84;
  font-weight: 500;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(217, 143, 126, 0.16);
}

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

.full-width {
  width: 100%;
}

.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-panel div {
  padding: 18px;
  border-radius: 8px;
  background: var(--mint);
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel strong {
  margin-top: 5px;
}

.auth-shell {
  display: grid;
  min-height: 64vh;
  place-items: center;
  padding-block: 56px;
}

.auth-card {
  width: min(560px, 100%);
}

.admin-grid {
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 22px;
}

.product-manager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) 22px;
}

.product-list {
  display: grid;
  gap: 12px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-product-row img {
  width: 76px;
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff7f3;
}

.admin-product-row strong,
.admin-product-row span,
.admin-product-row small {
  display: block;
}

.admin-product-row span,
.admin-product-row small {
  margin-top: 4px;
  color: var(--muted);
}

.admin-body {
  background: #f6f6f7;
}

.admin-login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 20% 15%, #fff0eb, transparent 32%), #f6f6f7;
}

.admin-login-screen[hidden] {
  display: none;
}

.admin-login-card {
  display: grid;
  gap: 14px;
  width: min(440px, 100%);
  padding: 32px;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

.admin-login-card img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: contain;
}

.admin-login-card h1 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.18;
}

.admin-app {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 100vh;
  color: #202223;
  font-family: "Outfit", Arial, sans-serif;
}

.admin-app[hidden] {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 14px 12px;
  border-right: 1px solid #dfe3e8;
  background: #fff;
}

.admin-store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 8px 14px;
  color: #202223;
  font-weight: 700;
}

.admin-store img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.admin-nav {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid #edf0f2;
}

.admin-nav a,
.admin-view-store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
}

.admin-nav a.active,
.admin-nav a:hover,
.admin-view-store:hover {
  background: #f1f2f4;
  color: #202223;
}

.admin-nav i,
.admin-view-store i {
  width: 18px;
  color: #6b7280;
}

.admin-view-store {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
}

.admin-main {
  min-width: 0;
  padding-bottom: 42px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px 28px;
  border-bottom: 1px solid #dfe3e8;
  background: rgba(246, 246, 247, 0.92);
  backdrop-filter: blur(14px);
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(560px, 100%);
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #c9cccf;
  border-radius: 10px;
  background: #fff;
}

.admin-search input {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-top-actions a,
.admin-top-actions button,
.admin-card-head a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #c9cccf;
  border-radius: 8px;
  background: #fff;
  color: #202223;
  font-weight: 700;
}

.admin-top-actions button {
  cursor: pointer;
}

.admin-page-title,
.admin-metric-grid,
.admin-workspace {
  margin-inline: auto;
  width: min(1180px, calc(100% - 48px));
}

.admin-page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 16px;
}

.admin-page-title h1 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

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

.admin-metric-grid div,
.admin-card {
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.admin-metric-grid div {
  padding: 18px;
}

.admin-metric-grid span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.admin-metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 14px;
  margin-bottom: 14px;
  padding: 0;
}

.admin-workspace-products {
  grid-template-columns: 1fr;
}

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

.admin-card {
  padding: 0;
  overflow: hidden;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #edf0f2;
}

.admin-card-head span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-card-head h2 {
  margin: 3px 0 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
}

.admin-form,
.product-editor {
  padding: 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.admin-table-list,
.product-list {
  padding: 12px;
}

.admin-table-list .order-row,
.admin-product-row {
  border-color: #edf0f2;
  box-shadow: none;
}

.admin-product-row {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.admin-product-row img {
  width: 58px;
  height: 64px;
}

.admin-body .primary-button {
  min-height: 38px;
  border-radius: 8px;
  background: #202223;
  color: #fff;
  box-shadow: none;
}

.admin-body .ghost-button,
.admin-body .row-actions button {
  min-height: 38px;
  border: 1px solid #c9cccf;
  border-radius: 8px;
  background: #fff;
  color: #202223;
}

.product-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.product-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.product-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(560px, 100vw);
  height: 100vh;
  overflow: auto;
  border-left: 1px solid #dfe3e8;
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 24, 39, 0.18);
  transform: translateX(104%);
  transition: transform 0.26s ease;
}

.product-drawer.open {
  transform: translateX(0);
}

.product-drawer .product-editor {
  padding: 0 22px 24px;
  border: 0;
  box-shadow: none;
}

.product-drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-inline: -22px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid #dfe3e8;
  background: #fff;
}

.product-drawer-head span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-drawer-head h2 {
  margin: 3px 0 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
}

.admin-body .dashboard-stats.admin-metric-grid {
  grid-template-columns: repeat(3, 1fr);
}

.admin-body .dashboard-stats.admin-metric-grid div {
  background: #fff;
}

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

.dashboard-stats div {
  padding: 20px;
  border-radius: 8px;
  background: var(--mint);
}

.dashboard-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.admin-panels {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  padding-bottom: 76px;
}

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

.order-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 8px 0;
}

.order-progress span {
  position: relative;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.order-progress span.active {
  border-color: rgba(217, 143, 126, 0.32);
  background: #fff0eb;
  color: var(--ink);
}

.email-row details {
  margin-top: 6px;
}

.email-row summary {
  width: max-content;
  color: var(--leaf);
  cursor: pointer;
  font-weight: 700;
}

.email-row details p {
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff7f3;
  color: var(--muted);
  white-space: pre-wrap;
}

.mail-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mail-meta span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 18, 12, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 40px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #f1eee6;
  color: var(--ink);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #111111;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.66s ease, transform 0.66s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes storyScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 6px));
  }
}

@media (max-width: 1080px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #dfe3e8;
  }

  .admin-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow: auto;
  }

  .admin-view-store {
    position: static;
    margin-top: 8px;
  }

  .admin-workspace,
  .admin-workspace-products,
  .admin-workspace-secondary {
    grid-template-columns: 1fr;
  }

  .admin-body .dashboard-stats.admin-metric-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero,
  .routine,
  .order-process,
  .checkout-layout,
  .contact-layout,
  .admin-grid,
  .product-manager,
  .admin-panels {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-summary,
  .order-progress {
    grid-template-columns: 1fr;
  }

  .seo-copy,
  .seo-tags {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

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

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

  .product-grid,
  .results-board,
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .bundle-shell {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .bundle-product {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
  }

  .bundle-product figure {
    min-height: 260px;
  }

  .bundle-product img {
    max-height: 240px;
  }

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

@media (max-width: 720px) {
  .announcement {
    display: grid;
    text-align: center;
  }

  .site-header {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-actions {
    grid-column: 2;
    margin-left: auto;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions a {
    width: 100%;
  }

  .benefits,
  .video-reel-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-showcase {
    padding-top: 48px;
  }

  .video-card,
  .video-card video {
    min-height: 430px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card figure {
    min-height: 250px;
  }

  .bundle-shell {
    padding: 16px;
  }

  .bundle-product {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .bundle-product figure {
    min-height: 220px;
  }

  .bundle-title {
    gap: 10px;
    font-size: 15px;
  }

  .bundle-option {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 128px;
    gap: 14px;
    padding: 22px 16px 18px;
  }

  .bundle-price {
    grid-column: 2;
    justify-items: start;
    margin-top: 10px;
  }

  .bundle-copy strong,
  .bundle-price strong {
    font-size: 25px;
  }

  .bundle-copy small,
  .bundle-price del {
    font-size: 16px;
  }

  .bundle-ribbon {
    right: 14px;
    font-size: 13px;
  }

  .featured-result,
  .featured-result img {
    min-height: 360px;
  }

  .result-thumbs img {
    height: 108px;
  }

  .review-metrics,
  .story-topline,
  .story-card footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .shop-toolbar,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer a {
    margin: 0 0 9px;
  }

  .footer-cta,
  .footer-bottom {
    display: grid;
  }

  .footer-cta {
    margin-top: -18px;
  }

  .floating-card {
    display: none;
  }
}
