:root {
  --ink: #18201b;
  --muted: #5c655d;
  --paper: #fbf7ef;
  --cream: #fffdf7;
  --green: #286246;
  --leaf: #8fbf74;
  --gold: #e0a538;
  --rose: #c6544d;
  --line: rgba(24, 32, 27, 0.12);
  --shadow: 0 24px 70px rgba(24, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(224, 165, 56, 0.18), transparent 28rem),
    linear-gradient(180deg, var(--paper) 0%, #ffffff 58%, #f5f8f1 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.trust-row,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  width: 54px;
  height: 46px;
  place-items: center;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(224, 165, 56, 0.3);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 232, 209, 0.82)),
    #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(24, 32, 27, 0.14),
    0 2px 0 rgba(40, 98, 70, 0.14);
  transform: perspective(120px) rotateX(2deg);
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 4px 5px auto 5px;
  height: 36%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 3px 5px rgba(24, 32, 27, 0.24));
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.secondary-button {
  padding: 0 18px;
  color: var(--green);
  border: 1px solid rgba(40, 98, 70, 0.28);
  background: rgba(255, 255, 255, 0.56);
}

.mobile-header-actions,
.mobile-bottom-nav {
  display: none;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  color: #e0b833;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

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

.catalog-button {
  position: relative;
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #20252d;
  border: 1px solid #20252d;
  border-radius: 4px;
  background: #ffffff;
  font-weight: 700;
  text-align: center;
}

.catalog-button.cart-icon {
  color: #ffffff;
  background: #252b35;
}

.catalog-button.search-icon::before,
.catalog-button.search-icon::after,
.catalog-button.cart-icon::before,
.catalog-button.cart-icon::after {
  display: none;
}

.catalog-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(24, 32, 27, 0.12);
}

.add-to-cart-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.search-icon::before {
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-icon::after {
  width: 11px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
  content: "";
  transform: translate(-3px, 10px) rotate(45deg);
}

.cart-icon::before {
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  content: "";
  transform: translateY(1px);
}

.cart-icon::after {
  position: absolute;
  width: 24px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: translate(3px, -5px) skewX(-10deg);
}

.hero {
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.primary-button {
  padding: 0 24px;
  color: white;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(40, 98, 70, 0.24);
}

.secondary-button {
  padding: 0 22px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  overflow: hidden;
  background: #f6eee0;
  box-shadow: var(--shadow);
}

.hero-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card {
  position: absolute;
  z-index: 2;
  left: 7%;
  right: auto;
  bottom: 8%;
  width: min(430px, 86%);
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: white;
  background: var(--rose);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.showcase-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.showcase-card p {
  color: var(--muted);
  line-height: 1.6;
}

.showcase-card strong {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-size: 1.6rem;
}

.stock-note {
  position: absolute;
  z-index: 3;
  right: 7%;
  top: 7%;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 253, 247, 0.9);
  border-radius: 20px;
}

.stock-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 82px clamp(18px, 5vw, 72px);
}

.intro,
.bundles,
.final-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro h2,
.section-heading h2,
.bundle-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.intro > p,
.bundle-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.product-grid,
.testimonial-grid,
.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.bundle-list article,
.benefits article,
blockquote {
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(24, 32, 27, 0.07);
}

.product-card {
  overflow: hidden;
}

.product-visual {
  position: relative;
  min-height: 230px;
  background: #ffffff;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: contain;
  object-position: center;
}

.product-content,
.bundle-list article,
.benefits article,
blockquote {
  padding: 24px;
}

.product-content span,
.bundle-list span,
.benefits span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content h3,
.bundle-list h3,
.benefits h3 {
  margin: 10px 0;
  font-size: 1.35rem;
}

.product-content p,
.bundle-list p,
.benefits p,
blockquote p {
  color: var(--muted);
  line-height: 1.65;
}

.product-content strong,
.bundle-list strong {
  color: var(--green);
  font-size: 1.35rem;
}

.bundles {
  background: var(--ink);
  color: white;
}

.bundles .eyebrow,
.bundles strong {
  color: #f3c45d;
}

.bundle-copy p,
.bundles .bundle-list p {
  color: rgba(255, 255, 255, 0.72);
}

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

.bundle-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 22px;
  color: var(--ink);
  background: var(--cream);
}

.bundle-list article p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.benefits {
  background: #f7faf4;
}

blockquote {
  margin: 0;
}

blockquote p {
  min-height: 88px;
  font-size: 1.05rem;
}

cite {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  margin: 40px clamp(18px, 5vw, 72px) 72px;
  padding: clamp(28px, 5vw, 54px);
  color: white;
  background: linear-gradient(135deg, var(--green), #163d2b);
  border-radius: 28px;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .primary-button {
  justify-self: end;
  color: var(--ink);
  background: #f3c45d;
  box-shadow: none;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.site-footer a,
.payment-note a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.site-footer a:hover,
.payment-note a:hover {
  text-decoration: underline;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 32, 27, 0.42);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: min(720px, 100%);
  height: 100%;
  padding: 32px;
  overflow: auto;
  background: #fffdf7;
  box-shadow: -20px 0 60px rgba(24, 32, 27, 0.22);
}

.cart-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cart-panel-header h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.close-cart {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 20px 0;
}

.empty-cart {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #ffffff;
}

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

.cart-item img {
  width: 92px;
  height: 118px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cart-item p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-item strong {
  color: var(--green);
}

.quantity-controls {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  grid-column: 1 / -1;
  align-items: center;
  justify-items: center;
  justify-self: end;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #edf0f5;
}

.quantity-controls button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf7;
  cursor: pointer;
  font-weight: 900;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  color: var(--green);
  font-size: 1.55rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
  resize: vertical;
}

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

.checkout-total-card {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(40, 98, 70, 0.14);
  border-radius: 8px;
  background: #f8fbf6;
}

.checkout-total-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checkout-total-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-total-card strong {
  color: var(--green);
  font-size: 1.05rem;
}

.checkout-total-grand {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(40, 98, 70, 0.16);
}

.checkout-total-grand span {
  color: var(--ink);
}

.checkout-total-grand strong {
  font-size: 1.6rem;
}

.manual-payment-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(40, 98, 70, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf6 100%);
}

.manual-payment-head {
  display: grid;
  gap: 5px;
  margin-bottom: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(40, 98, 70, 0.12);
}

.manual-payment-head span {
  width: fit-content;
  padding: 4px 9px;
  color: var(--green);
  border-radius: 999px;
  background: rgba(40, 98, 70, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-payment-head strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.manual-payment-head small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.payment-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 98, 70, 0.32);
  box-shadow: 0 10px 24px rgba(24, 32, 27, 0.08);
}

.payment-choice:has(input:checked) {
  border-color: rgba(40, 98, 70, 0.65);
  background: #f3f9f0;
  box-shadow: 0 12px 28px rgba(40, 98, 70, 0.12);
}

.payment-choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.payment-choice b {
  display: inline-grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
  padding: 0 8px;
  color: #ffffff;
  border-radius: 8px;
  background: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.payment-choice span {
  display: grid;
  gap: 3px;
}

.payment-choice strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.payment-choice small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.payment-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--ink);
  background: #f7f8fb;
  border: 1px solid rgba(40, 98, 70, 0.16);
  border-radius: 8px;
}

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

.payment-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.payment-note ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.thank-you-screen {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  padding: 24px;
  overflow: auto;
}

.thank-you-screen.is-open {
  display: grid;
  place-items: center;
}

.thank-you-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 20, 0.62);
}

.thank-you-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, 100%);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(40, 98, 70, 0.16);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 24px 80px rgba(17, 24, 20, 0.28);
}

.thank-you-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
}

.thank-you-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.thank-you-copy {
  color: var(--muted);
  line-height: 1.65;
}

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

.thank-you-summary div,
.thank-you-items,
.thank-you-steps {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.thank-you-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thank-you-summary strong {
  color: var(--green);
  font-size: 1rem;
}

.thank-you-items {
  display: grid;
  gap: 8px;
}

.thank-you-items div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-weight: 800;
}

.thank-you-items strong {
  color: var(--green);
  white-space: nowrap;
}

.thank-you-steps p {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.thank-you-steps ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

.thank-you-actions .primary-button,
.thank-you-actions .secondary-button {
  flex: 1 1 190px;
  justify-content: center;
}

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(40, 98, 70, 0.28);
  cursor: pointer;
  font-weight: 900;
}

.product-detail-page {
  background: #f4f6fb;
}

.product-detail-header {
  background: #ffffff;
}

.header-cart-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.header-cart-link b {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  color: #ffffff;
  border-radius: 999px;
  background: #d92626;
  font-size: 0.78rem;
}

.product-detail-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #334155;
  font-size: 1.2rem;
  font-weight: 700;
}

.detail-loading {
  padding: 32px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.detail-gallery,
.detail-info,
.detail-more-info {
  min-width: 0;
}

.detail-gallery {
  position: relative;
}

.detail-image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(40, 98, 70, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-main-image {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #ffffff;
}

.detail-thumbs {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.detail-thumbs button {
  flex: 0 0 auto;
  width: 84px;
  height: 104px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.detail-thumbs button.active {
  border-color: #252b35;
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: grid;
  gap: 20px;
  padding-top: 6px;
}

.detail-category {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info h1 {
  margin: 0;
  color: #334155;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.detail-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-bottom: 18px;
  color: #f4b52c;
  border-bottom: 1px solid #dfe4eb;
  font-size: 1.28rem;
}

.detail-rating small {
  color: #94a3b8;
  font-size: 0.95rem;
}

.detail-summary {
  margin: -4px 0 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.detail-price {
  display: block;
  padding-bottom: 22px;
  color: #d92626;
  border-bottom: 1px solid #dfe4eb;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

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

.detail-highlights article {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: #ffffff;
}

.detail-highlights span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-highlights strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.detail-quantity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #94a3b8;
}

.detail-stepper {
  display: grid;
  grid-template-columns: 42px 42px 42px;
  height: 42px;
  border: 1px solid #e4e8ef;
  background: #ffffff;
}

.detail-stepper button,
.detail-stepper b {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font: inherit;
}

.detail-stepper button {
  cursor: pointer;
  font-size: 1.5rem;
}

.detail-buy-button {
  min-height: 54px;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  background: #252b35;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.detail-buy-button:disabled {
  background: #dd6468;
  cursor: not-allowed;
}

.detail-whatsapp-link {
  color: var(--green);
  font-weight: 800;
}

.detail-more-info {
  margin-top: 70px;
  padding: 34px;
  background: #ffffff;
}

.detail-more-info h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.detail-more-info p {
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.8;
}

.detail-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.detail-benefits article {
  padding: 16px;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: #f8fbf6;
}

.detail-benefits strong,
.detail-benefits span {
  display: block;
}

.detail-benefits strong {
  color: var(--green);
  margin-bottom: 6px;
}

.detail-benefits span {
  color: var(--muted);
  line-height: 1.45;
}

.detail-testimonials {
  margin-top: 18px;
  padding: 30px;
  background: #ffffff;
}

.detail-testimonials h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.detail-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-testimonial-grid button {
  padding: 0;
  overflow: hidden;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: #fffdf7;
  cursor: zoom-in;
  box-shadow: 0 10px 28px rgba(24, 32, 27, 0.06);
}

.detail-testimonial-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-order-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.detail-order-guide article {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(40, 98, 70, 0.14);
  border-radius: 8px;
  background: #fffdf7;
}

.detail-order-guide strong {
  color: var(--green);
}

.detail-order-guide span {
  color: var(--muted);
  line-height: 1.5;
}

.detail-sticky-buy {
  display: none;
}

.floating-cart span,
.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  color: var(--ink);
  background: #f3c45d;
  border-radius: 999px;
  font-size: 0.78rem;
}

.admin-page {
  background: #f7f8fb;
}

.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.admin-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.admin-hero p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-login label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.admin-login input,
.order-actions select {
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.admin-status {
  min-height: 22px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.admin-status[data-type="success"] {
  color: var(--green);
}

.admin-status[data-type="error"] {
  color: var(--rose);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-metrics article,
.admin-toolbar {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 27, 0.05);
}

.admin-metrics article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.admin-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-metrics strong {
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.admin-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
}

.status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-tabs button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  cursor: pointer;
  font-weight: 800;
}

.status-tabs button.active {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

.admin-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.admin-search-row input {
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.admin-search-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.export-csv-button {
  color: #ffffff;
  border-color: #1f5a41;
  background: #1f5a41;
}

.orders-list {
  display: grid;
  gap: 14px;
}

.order-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(24, 32, 27, 0.06);
}

.order-card-header,
.order-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.order-card-header h2 {
  margin: 5px 0;
  font-size: 1.35rem;
}

.order-card-header small {
  display: inline-flex;
  margin-top: 4px;
  padding: 5px 9px;
  color: var(--green);
  background: #e8f5ee;
  border-radius: 999px;
  font-weight: 900;
}

.order-card-header span,
.order-card-header p,
.order-card > p {
  color: var(--muted);
}

.order-card-header strong {
  color: var(--green);
  font-size: 1.55rem;
}

.order-total-block {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef2f0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-baru {
  background: #fff1cd;
  color: #8a5f00;
}

.status-diproses {
  background: #dff0ff;
  color: #1a5a8a;
}

.status-dihantar {
  background: #e4f7de;
  color: #2d6b25;
}

.status-selesai {
  background: #e8f5ee;
  color: var(--green);
}

.status-batal {
  background: #ffe4e4;
  color: #a13333;
}

.order-address {
  padding: 12px 14px;
  background: #f7f8fb;
  border: 1px solid #edf0f5;
  border-radius: 8px;
}

.order-card ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.8;
}

.order-card-summary {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  color: var(--muted);
  line-height: 1.45;
}

.order-card-summary p {
  margin: 0;
}

.order-card-actions {
  justify-content: flex-end;
}

.order-card-actions select,
.order-card-actions .secondary-button {
  flex: 0 1 190px;
}

.modal-open {
  overflow: hidden;
}

.order-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 24px;
}

.order-detail-modal.is-open {
  display: grid;
  place-items: center;
}

.order-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 15, 0.58);
  backdrop-filter: blur(8px);
}

.order-detail-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 28px;
  background: #fffdf7;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(12, 18, 15, 0.28);
}

.order-detail-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
}

.order-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-right: 54px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.order-detail-heading h2 {
  margin: 5px 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.order-detail-heading span,
.order-detail-box p,
.order-detail-note {
  color: var(--muted);
}

.order-detail-heading small {
  color: var(--green);
  font-weight: 900;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.order-detail-box,
.order-detail-note,
.order-detail-products {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.order-detail-box h3,
.order-detail-products h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-detail-box p {
  margin: 7px 0;
  line-height: 1.45;
}

.order-detail-note,
.order-detail-products {
  margin-top: 14px;
}

.order-detail-products ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-detail-products li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.order-detail-products li:last-child {
  border-bottom: 0;
}

.order-detail-products b {
  color: var(--muted);
}

.order-detail-products strong {
  color: var(--green);
}

.order-detail-actions {
  margin-top: 16px;
}

.tracking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(40, 98, 70, 0.14);
  border-radius: 8px;
  background: #f8fbf6;
}

.tracking-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.tracking-panel input {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.tracking-save-button {
  min-height: 42px;
}

.order-actions {
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.order-actions .secondary-button,
.order-actions select {
  flex: 1 1 150px;
}

.print-slip-button {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
}

.easyparcel-button {
  color: #7a4b00;
  border-color: rgba(213, 176, 53, 0.5);
  background: #fff6d8;
}

.whatsapp-copy-button {
  color: #1f6d45;
  border-color: rgba(31, 109, 69, 0.34);
  background: #edf8f1;
}

.product-admin-panel {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.product-form {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(24, 32, 27, 0.05);
}

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

.product-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.product-form input,
.product-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
}

.product-form textarea {
  resize: vertical;
}

.product-detail-editor {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(40, 98, 70, 0.18);
  border-radius: 8px;
  background: #f8fbf6;
}

.product-detail-editor-heading {
  display: grid;
  gap: 4px;
}

.product-detail-editor-heading strong {
  color: var(--green);
  font-size: 1.02rem;
}

.product-detail-editor-heading span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.product-admin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(40, 98, 70, 0.14);
  border-radius: 8px;
  background: #f8fbf6;
}

.product-admin-tools span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-image-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  border: 1px dashed rgba(40, 98, 70, 0.3);
  border-radius: 8px;
  background: #f8fbf6;
}

.product-image-preview {
  display: grid;
  min-height: 140px;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-image-preview img {
  display: none;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.product-image-preview.has-image img {
  display: block;
}

.product-image-preview.has-image p {
  display: none;
}

.product-image-preview p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-flags,
.product-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-flags label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

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

.product-admin-card.is-inactive {
  opacity: 0.62;
}

.product-admin-card img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f8fb;
}

.product-admin-card span,
.product-admin-card p,
.product-admin-card small {
  color: var(--muted);
}

.product-admin-card h3 {
  margin: 5px 0;
  font-size: 1.1rem;
}

.product-admin-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
}

.product-admin-actions {
  display: grid;
  gap: 8px;
}

.product-admin-actions button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--green);
  border: 1px solid rgba(40, 98, 70, 0.28);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--rose);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card.is-sold-out {
  opacity: 0.68;
}

.product-card.is-sold-out .product-visual::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "SOLD OUT";
  color: #ffffff;
  background: rgba(24, 32, 27, 0.58);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .bundles,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 480px;
  }

  .testimonial-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

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

  .final-cta .primary-button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 78px;
    background: #f7f8fb;
  }

  .site-header {
    align-items: center;
    min-height: 72px;
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e9edf3;
    box-shadow: 0 2px 14px rgba(24, 32, 27, 0.06);
    backdrop-filter: none;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo-wrap {
    width: 58px;
    height: 44px;
    padding: 5px;
    border-radius: 10px;
  }

  .brand span:last-child {
    display: none;
    max-width: none;
    line-height: 1.05;
  }

  .header-cta,
  .hero,
  .intro,
  .bundles,
  .benefits,
  .testimonials,
  .final-cta,
  .site-footer {
    display: none;
  }

  .floating-cart {
    display: none;
  }

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

  .icon-button {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }

  .search-icon::before {
    width: 17px;
    height: 17px;
    border: 3px solid currentColor;
    border-radius: 50%;
    content: "";
  }

  .search-icon::after {
    width: 11px;
    height: 3px;
    background: currentColor;
    border-radius: 99px;
    content: "";
    transform: translate(-3px, 10px) rotate(45deg);
  }

  .menu-icon::before {
    width: 28px;
    height: 21px;
    border-top: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    content: "";
  }

  .menu-icon::after {
    position: absolute;
    width: 28px;
    height: 3px;
    background: currentColor;
    content: "";
  }

  .products.section {
    padding: 0 6px 26px;
  }

  .section-heading {
    display: none;
  }

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

  .product-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 3px;
    box-shadow: 0 1px 7px rgba(24, 32, 27, 0.08);
  }

  .product-visual {
    min-height: auto;
    aspect-ratio: 3 / 4;
    background: #ffffff;
  }

  .product-visual img {
    min-height: 0;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .product-content {
    padding: 18px 16px 18px;
  }

  .product-content span,
  .product-content p {
    display: none;
  }

  .product-content h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #303641;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.28;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-content strong {
    display: block;
    margin-bottom: 16px;
    color: #c53e42;
    font-size: 1.05rem;
    font-weight: 500;
  }

  .rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: #303641;
    font-size: 0.86rem;
  }

  .stars {
    color: #e0b833;
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .add-to-cart-button {
    min-height: 42px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
  }

  .catalog-button {
    position: relative;
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #20252d;
    border: 1px solid #20252d;
    border-radius: 4px;
    background: #ffffff;
  }

  .catalog-button.cart-icon {
    color: #ffffff;
    background: #252b35;
  }

  .cart-icon::before {
    width: 18px;
    height: 14px;
    border: 2px solid currentColor;
    border-top: 0;
    content: "";
    transform: translateY(1px);
  }

  .cart-icon::after {
    position: absolute;
    width: 24px;
    height: 16px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    content: "";
    transform: translate(3px, -5px) skewX(-10deg);
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 72px;
    background: #ffffff;
    border-top: 1px solid #e4e8ef;
    box-shadow: 0 -6px 24px rgba(24, 32, 27, 0.08);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    color: #b6bdc6;
    font-size: 0.92rem;
  }

  .mobile-bottom-nav .cart-count {
    position: absolute;
    margin-left: 26px;
    margin-top: -38px;
    color: #ffffff;
    background: #d24545;
  }

  .cart-panel {
    width: 100%;
    display: block;
    padding: 22px 18px 92px;
  }

  .cart-item {
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .cart-item img {
    width: 62px;
    height: 82px;
  }

  .cart-item h3 {
    margin-right: 0;
    font-size: 0.95rem;
  }

  .cart-item strong {
    display: block;
    font-size: 1rem;
  }

  .quantity-controls {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #edf0f5;
  }

  .checkout-form {
    margin-top: 18px;
  }

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

  .cart-summary {
    margin-top: 14px;
  }

  .thank-you-screen {
    align-items: start;
    padding: 14px 12px 92px;
  }

  .thank-you-card {
    padding: 22px 18px;
  }

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

  .thank-you-items div {
    display: grid;
    gap: 4px;
  }

  .product-detail-shell {
    width: min(100% - 24px, 1120px);
    padding: 24px 0 96px;
  }

  .product-detail-grid,
  .detail-benefits,
  .detail-testimonial-grid,
  .detail-order-guide {
    grid-template-columns: 1fr;
  }

  .detail-main-image {
    max-height: none;
  }

  .detail-info {
    gap: 16px;
  }

  .detail-highlights {
    grid-template-columns: 1fr;
  }

  .detail-quantity-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-buy-button {
    width: 100%;
  }

  .detail-more-info {
    margin-top: 34px;
    padding: 22px 18px;
  }

  .detail-testimonials {
    padding: 22px 18px;
  }

  .detail-sticky-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e4e8ef;
    box-shadow: 0 -12px 34px rgba(24, 32, 27, 0.12);
  }

  .detail-sticky-buy div {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .detail-sticky-buy span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .detail-sticky-buy strong {
    color: var(--green);
    font-size: 1.1rem;
  }

  .detail-sticky-buy button {
    min-height: 44px;
    padding: 0 18px;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    font-weight: 900;
  }

  .detail-sticky-buy button:disabled {
    background: #dd6468;
  }

  .admin-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 26px;
  }

  .admin-hero,
  .order-card-header,
  .order-detail-heading,
  .order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .order-detail-modal {
    padding: 10px;
  }

  .order-detail-panel {
    max-height: 94vh;
    padding: 18px;
    border-radius: 10px;
  }

  .order-detail-heading,
  .order-detail-grid,
  .order-detail-products li {
    grid-template-columns: 1fr;
  }

  .order-detail-heading {
    padding-right: 0;
  }

  .order-detail-close {
    margin-left: auto;
  }

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

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

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

  .admin-search-row {
    grid-template-columns: 1fr;
  }

  .admin-form-grid,
  .benefit-editor-grid,
  .product-image-upload,
  .product-admin-card {
    grid-template-columns: 1fr;
  }

  .product-admin-card img {
    width: 100%;
    height: 220px;
  }

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

  .order-total-block {
    justify-items: start;
  }

  .mobile-bottom-nav .active {
    color: #d5b035;
  }

  .home-icon,
  .account-icon,
  .mobile-bottom-nav .cart-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
  }

  .home-icon::before {
    position: absolute;
    inset: 7px 3px 3px;
    border: 2px solid currentColor;
    border-top: 0;
    content: "";
  }

  .home-icon::after {
    position: absolute;
    left: 4px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .account-icon::before {
    position: absolute;
    left: 7px;
    top: 2px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
  }

  .account-icon::after {
    position: absolute;
    left: 4px;
    bottom: 2px;
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    content: "";
  }
}
