:root {
  --cream: #fbf3e9;
  --cream-soft: #fdf8f2;
  --orange: #e4632f;
  --orange-dark: #c94e20;
  --brown: #3b241a;
  --brown-soft: #6b4a3a;
  --green: #2f8f57;
  --line: #efdfce;
  --white: #ffffff;
  --shadow: 0 18px 40px -22px rgba(59, 36, 26, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--brown);
  background: var(--cream-soft);
  padding-bottom: 92px;
}

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

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

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

button {
  cursor: pointer;
}

.shop-shell {
  min-height: 100vh;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 248, 242, 0.55);
  border-bottom: 1px solid rgba(228, 99, 47, 0.15);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition:
    margin 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.shop-header.scrolled {
  top: 8px;
  margin: 8px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 243, 233, 0.88);
  box-shadow: 0 10px 30px rgba(59, 36, 26, 0.1);
}

.shop-nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  min-width: 0;
}

.nav-leading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-back-row {
  display: none;
}

.page-back {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(228, 99, 47, 0.28);
  border-radius: 13px;
  color: var(--orange-dark);
  background: linear-gradient(145deg, #fffdf9, #f9eadc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px -18px rgba(201, 78, 32, 0.75);
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.page-back svg {
  width: 19px;
  height: 19px;
}

.page-back:hover {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px -15px rgba(201, 78, 32, 0.85);
  transform: translateX(-2px);
}

.page-back:active {
  transform: translateX(-1px) scale(0.96);
}

.page-back:focus-visible {
  outline: 3px solid rgba(228, 99, 47, 0.24);
  outline-offset: 2px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  width: 58px;
  height: 42px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-link {
  font-weight: 700;
  color: var(--brown-soft);
  white-space: nowrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 26px -16px rgba(228, 99, 47, 0.9);
}

.btn-outline {
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-green {
  color: #fff;
  background: var(--green);
}

.btn-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.btn-wide {
  width: 100%;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffaf5, #f9efe3);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-panel.catalog-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

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

.hero-panel h1,
.page-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.hero-panel p,
.lead {
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

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

.filter-btn {
  border: 1px solid var(--line);
  color: var(--brown-soft);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.filter-btn.active {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

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

.catalog-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(228, 99, 47, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: #fffaf5;
  box-shadow: 0 14px 30px -28px rgba(59, 36, 26, 0.55);
}

.catalog-summary h2,
.product-section-heading h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--brown);
}

.catalog-summary h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.product-catalog {
  display: grid;
  gap: 44px;
}

.product-section {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(228, 99, 47, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: #fffaf5;
  box-shadow: 0 14px 30px -28px rgba(59, 36, 26, 0.55);
}

.product-section#bundling {
  border-color: #f0c8b6;
  border-left-color: #df7a4d;
  background: #fff7f2;
}

.product-section#opak-250 {
  border-color: #ccddcf;
  border-left-color: #79a887;
  background: #f7fbf6;
}

.product-section#opak-350 {
  border-color: #eadcb8;
  border-left-color: #c7a45a;
  background: #fffbf1;
}

.product-section#jagong-geprek {
  border-color: #ebd6a4;
  border-left-color: #d2a13b;
  background: #fff9eb;
}

.product-section#secondary {
  border-color: #e4cec3;
  border-left-color: #bd8c75;
  background: #fcf7f4;
}

.product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 16px;
}

.product-section-heading h2 {
  font-size: clamp(23px, 2.6vw, 31px);
}

.product-section-heading .eyebrow,
.catalog-summary .eyebrow {
  margin-bottom: 6px;
}

.product-section-heading > p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.6;
}

.product-slider {
  min-width: 0;
}

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

.slider-dots {
  display: none;
}

.product-card,
.summary-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 15px;
}

.product-thumb {
  aspect-ratio: 1 / 0.74;
  background: var(--cream);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, center);
}

.product-body {
  padding: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.product-category {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-name {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.product-desc {
  margin: 0;
  color: var(--brown-soft);
  font-size: 11.5px;
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.price-now {
  color: var(--brown);
  font-size: 17px;
  font-weight: 900;
}

.price-was {
  color: #9c8577;
  font-size: 13px;
  text-decoration: line-through;
}

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

.cart-summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cart-summary-actions .btn {
  width: 100%;
  min-height: 50px;
}

.cart-summary-actions svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.btn-cart-add {
  color: var(--orange-dark);
  border: 1px solid rgba(228, 99, 47, 0.3);
  background: linear-gradient(145deg, #fffdf9, #fff4e9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-cart-add:hover {
  border-color: var(--orange);
  background: #fff0e3;
}

.btn-cart-checkout {
  color: #fff;
  border: 1px solid var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px -16px rgba(201, 78, 32, 0.9);
}

.btn-cart-checkout:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.btn-cart-clear {
  color: #a43a2c;
  border: 1px solid rgba(164, 58, 44, 0.24);
  background: rgba(255, 245, 243, 0.78);
}

.btn-cart-clear:hover {
  color: #fff;
  border-color: #b84334;
  background: #b84334;
}

.btn-cart-clear:focus-visible,
.btn-cart-add:focus-visible,
.btn-cart-checkout:focus-visible {
  outline: 3px solid rgba(228, 99, 47, 0.2);
  outline-offset: 2px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brown);
  font-weight: 900;
  white-space: nowrap;
}

.cart-icon,
.sticky-cart-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon svg,
.sticky-cart-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cart-count-badge {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  line-height: 1;
}

.cart-count-badge.is-empty {
  display: none;
}

.detail-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.detail-media,
.summary-card,
.form-card {
  overflow: hidden;
}

.detail-media {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  object-position: var(--img-pos, center);
}

.detail-panel {
  padding: 26px;
}

.detail-panel h1 {
  margin: 8px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.bundle-contents {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--cream-soft);
}

.bundle-contents-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
}

.bundle-contents-heading > span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bundle-contents-heading > strong {
  color: var(--orange-dark);
  font-size: 12px;
}

.bundle-contents ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-contents li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--brown-soft);
  font-size: 12px;
  line-height: 1.45;
}

.bundle-contents li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bundle-contents li strong {
  flex: 0 0 auto;
  color: var(--brown);
  font-size: 13px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.tag {
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--cream);
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 800;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.qty-box button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--brown);
  background: var(--cream);
  font-weight: 900;
}

.qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
}

.detail-purchase-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.detail-add-cart {
  min-width: 0;
  min-height: 54px;
}

.add-cart-symbol {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1;
}

.add-cart-label-short {
  display: none;
}

.detail-followup-actions {
  display: grid;
  margin-top: 10px;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #f0c8a9;
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 246, 235, 0.96)
    ),
    var(--white);
  box-shadow: 0 12px 26px -22px rgba(228, 99, 47, 0.65);
}

.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  object-position: var(--img-pos, center);
  border: 2px solid #fff;
  box-shadow: 0 10px 20px -16px rgba(59, 36, 26, 0.6);
}

.cart-item-title {
  font-weight: 900;
  color: var(--brown);
}

.cart-item-meta {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown);
  font-weight: 900;
}

.summary-card,
.form-card {
  padding: 20px;
}

.summary-card {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(228, 99, 47, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #fffdf9 0%, #fff6ec 100%);
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), #f2b15f, var(--green));
}

.summary-card h2 {
  margin-top: 4px;
}

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

.summary-row strong {
  color: var(--orange-dark);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-total {
  font-size: 22px;
  font-weight: 900;
  color: var(--brown);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--brown);
  background: var(--white);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.address-combobox {
  position: relative;
  z-index: 1;
}

.address-combobox.is-open {
  z-index: 40;
}

.address-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.address-combobox-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--brown);
  background: var(--white);
  text-align: left;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.address-combobox-trigger:hover:not(:disabled) {
  border-color: #e9b28f;
  background: #fffdf9;
}

.address-combobox-trigger:focus-visible,
.address-combobox.is-open .address-combobox-trigger {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228, 99, 47, 0.13);
}

.address-combobox-trigger:disabled {
  cursor: not-allowed;
  color: #a48e82;
  background: #f8f2ec;
  opacity: 0.78;
}

.address-combobox-trigger svg {
  flex: 0 0 auto;
  color: var(--brown-soft);
  transition: transform 0.18s ease;
}

.address-combobox.is-open .address-combobox-trigger svg {
  transform: rotate(180deg);
}

.address-combobox-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-combobox-value.is-placeholder {
  color: #8b7569;
}

.address-combobox-panel {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 50;
  padding: 8px;
  border: 1px solid #ead5c2;
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 18px 36px -16px rgba(59, 36, 26, 0.38);
}

.address-combobox-panel[hidden] {
  display: none;
}

.address-combobox-search-wrap {
  position: relative;
  color: var(--brown-soft);
}

.address-combobox-search-wrap > svg {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.field .address-combobox-search {
  min-height: 42px;
  padding: 9px 34px 9px 38px;
  border-radius: 7px;
  background: #fff;
}

.field .address-combobox-search:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228, 99, 47, 0.1);
}

.address-combobox-options {
  max-height: 270px;
  margin-top: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d7bba4 transparent;
}

.address-combobox-group + .address-combobox-group {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #f1e4d8;
}

.address-combobox-group-label {
  margin: 0;
  padding: 7px 10px 5px;
  color: #947260;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.address-combobox-option {
  position: relative;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 34px 8px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--brown);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.address-combobox-option[hidden],
.address-combobox-group[hidden] {
  display: none;
}

.address-combobox-option:hover,
.address-combobox-option:focus-visible {
  outline: 0;
  color: var(--orange-dark);
  background: #fff0e5;
}

.address-combobox-option.is-selected {
  color: var(--orange-dark);
  background: #fff5ed;
}

.address-combobox-option.is-selected::after {
  position: absolute;
  right: 13px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.address-combobox-empty {
  margin: 7px 0 0;
  padding: 15px 10px;
  color: #8b7569;
  font-size: 12px;
  text-align: center;
}

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

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-add-more {
  width: 100%;
  margin-top: 12px;
  color: var(--orange-dark);
  border-color: #f0c8a9;
  background: #fffaf5;
}

.btn-add-more:hover {
  background: #fff1e6;
}

.btn-plus {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.btn-promo {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 24px -16px rgba(228, 99, 47, 0.9);
}

.btn-promo:hover {
  filter: brightness(1.02);
}

.checkout-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.checkout-submit-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
}

.checkout-submit.is-loading {
  cursor: wait;
  opacity: 0.94;
  filter: saturate(0.9);
}

.checkout-submit.is-loading::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 45%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: checkout-button-shimmer 1.35s ease-in-out infinite;
}

.checkout-submit.is-loading .checkout-submit-spinner {
  display: block;
  animation: checkout-button-spin 700ms linear infinite;
}

.checkout-submit-status {
  min-height: 18px;
  margin: 8px 4px 0;
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@keyframes checkout-button-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes checkout-button-shimmer {
  55%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-submit,
  .checkout-submit.is-loading::after,
  .checkout-submit.is-loading .checkout-submit-spinner {
    animation: none;
    transition: none;
  }
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.required-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.bundle-note {
  color: var(--orange-dark);
  font-weight: 800;
}

.field textarea.field-invalid {
  border-color: #c83a2a;
  box-shadow: 0 0 0 3px rgba(200, 58, 42, 0.12);
}

.inline-note {
  margin-top: -4px;
  color: var(--brown-soft);
  font-size: 12px;
  line-height: 1.5;
}

.notice {
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 800;
}

.notice.warning {
  color: #8a3a00;
  background: #fff3dc;
  border-color: #f0c87d;
}

.empty-state {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 50;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  max-width: min(440px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  box-shadow: var(--shadow);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sticky-cart {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 45;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(520px, calc(100% - 28px));
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px -18px rgba(59, 36, 26, 0.5);
  transform: translateX(-50%) translateY(110px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(12px);
}

.sticky-cart.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-cart strong {
  display: block;
  font-size: 15px;
}

.sticky-cart small {
  display: block;
  color: var(--brown-soft);
  font-size: 12px;
  margin-top: 2px;
}

.sticky-cart-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel,
  .detail-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --mobile-content-width: 358px;
    --mobile-product-card-width: 290px;
  }

  body {
    padding-bottom: 72px;
    font-size: 14px;
  }

  .section {
    width: min(calc(100% - 32px), var(--mobile-content-width));
    padding: 18px 0 28px;
  }

  .shop-nav {
    width: 100%;
    min-height: 54px;
    padding: 0 12px;
    position: relative;
    gap: 6px;
    transition: min-height 0.25s ease;
  }

  .shop-header {
    top: 0;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 0;
    background: rgba(253, 248, 242, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 12px 32px rgba(59, 36, 26, 0.1);
    backdrop-filter: blur(32px) saturate(170%);
    -webkit-backdrop-filter: blur(32px) saturate(170%);
  }

  .shop-header.scrolled {
    top: 6px;
    margin: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 100px;
    background: rgba(251, 243, 233, 0.7);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 14px 38px rgba(59, 36, 26, 0.17);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
  }

  .shop-header.scrolled .shop-nav {
    min-height: 50px;
  }

  .nav-actions {
    gap: 6px;
  }

  .hero-panel,
  .detail-panel {
    padding: 14px;
  }

  .hero-panel.catalog-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 14px;
    background: linear-gradient(145deg, #fffaf5, #f7eadc);
  }

  .catalog-hero .eyebrow {
    margin-bottom: 6px;
  }

  .catalog-hero h1 {
    max-width: 280px;
    font-size: 23px;
    line-height: 1.08;
  }

  .catalog-hero p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .catalog-hero .hero-image {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .catalog-hero .hero-image img {
    object-position: center bottom;
  }

  .catalog-summary {
    align-items: center;
    margin: 20px 0 22px;
    padding: 11px 12px;
    border-left-width: 3px;
    border-radius: 11px;
  }

  .catalog-summary h2 {
    font-size: 21px;
    line-height: 1.1;
  }

  .catalog-cart-summary {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .catalog-cart-summary > span:last-child {
    display: none;
  }

  .product-catalog {
    gap: 28px;
  }

  .product-section-heading {
    display: block;
    margin-bottom: 10px;
  }

  .product-section {
    padding: 11px;
    border-left-width: 3px;
    border-radius: 11px;
  }

  .product-section .product-slider {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .product-section-heading h2 {
    font-size: 19px;
    line-height: 1.12;
  }

  .product-section-heading > p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.5;
  }

  .product-slider {
    width: calc(100% + 14px);
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -14px;
    padding: 2px 14px 10px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-slider::-webkit-scrollbar {
    display: none;
  }

  .product-track,
  .product-track.product-track-two-rows {
    display: grid;
    width: max-content;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(
      calc(100vw - 84px),
      var(--mobile-product-card-width)
    );
    gap: 9px;
  }

  .product-track {
    grid-template-rows: minmax(0, 1fr);
  }

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

  .product-card {
    width: 100%;
    border-radius: 11px;
    scroll-snap-align: start;
    box-shadow: 0 12px 24px -22px rgba(59, 36, 26, 0.48);
  }

  .product-thumb {
    aspect-ratio: 1 / 0.62;
  }

  .product-body {
    padding: 8px;
    gap: 5px;
  }

  .product-category {
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  .product-name {
    display: -webkit-box;
    overflow: hidden;
    min-height: 30px;
    font-size: 11.5px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-desc {
    display: -webkit-box;
    overflow: hidden;
    font-size: 9.5px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .price-row {
    gap: 5px;
  }

  .price-now {
    font-size: 13px;
  }

  .price-was {
    font-size: 9px;
  }

  .product-card .btn-small {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    min-height: 8px;
    margin-top: 4px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8c4b3;
    transition:
      width 0.2s ease,
      background 0.2s ease;
  }

  .slider-dot.active {
    width: 18px;
    background: var(--orange);
  }

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

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

  .promo-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .promo-row input {
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .promo-row .btn-promo {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

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

  .cart-item-actions {
    grid-column: 1 / -1;
  }

  .brand {
    position: relative;
    z-index: auto;
    flex: 0 0 48px;
    width: 48px;
    height: 32px;
    transform: none;
    border-radius: 0;
    outline: none;
    overflow: visible;
  }

  .brand span {
    display: none;
  }

  .brand-mark {
    position: static;
    width: 46px;
    height: 27px;
    max-width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
  }

  .brand:focus-visible {
    outline: 3px solid rgba(228, 99, 47, 0.24);
    outline-offset: 3px;
  }

  .nav-leading {
    min-width: 48px;
    gap: 6px;
  }

  .nav-page-back {
    display: none;
  }

  .mobile-back-row {
    width: min(calc(100% - 32px), var(--mobile-content-width));
    display: flex;
    align-items: center;
    margin: 8px auto -8px;
  }

  .mobile-page-back {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 11px;
  }

  .mobile-page-back svg {
    width: 16px;
    height: 16px;
  }

  .page-back {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.78);
    box-shadow: 0 9px 20px -16px rgba(201, 78, 32, 0.8);
  }

  .page-back svg {
    width: 17px;
    height: 17px;
  }

  .nav-link {
    display: none;
  }

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

  .cart-pill {
    min-width: 58px;
    min-height: 40px;
    padding: 0 8px;
    justify-content: center;
    border-color: rgba(228, 99, 47, 0.2);
    background: rgba(255, 253, 249, 0.8);
    box-shadow: 0 9px 20px -16px rgba(59, 36, 26, 0.7);
  }

  .shop-nav .cart-pill {
    min-width: 40px;
    padding: 0;
    gap: 5px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .cart-pill:focus-visible {
    outline: 3px solid rgba(228, 99, 47, 0.24);
    outline-offset: 2px;
  }

  .cart-count-badge {
    min-width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .detail-purchase-row {
    grid-template-columns: minmax(84px, 0.62fr) minmax(0, 1.38fr);
    gap: 6px;
  }

  .qty-box {
    width: 100%;
    justify-content: space-between;
    gap: 3px;
    padding: 3px;
  }

  .qty-box button {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    font-size: 11px;
  }

  .qty-value {
    min-width: 14px;
    font-size: 11px;
  }

  .detail-add-cart {
    min-height: 34px;
    padding: 0 8px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .detail-add-cart .add-cart-symbol {
    width: 15px;
    height: 15px;
    font-size: 12px;
  }

  .detail-layout,
  .checkout-layout {
    gap: 16px;
  }

  .detail-media {
    width: 86%;
    margin-inline: auto;
    border-radius: 16px;
  }

  .detail-panel h1 {
    margin: 5px 0 7px;
    font-size: 20px;
    line-height: 1.08;
  }

  .detail-panel {
    padding: 11px;
  }

  .detail-panel .lead,
  .lead {
    font-size: 11px;
    line-height: 1.55;
  }

  .page-title {
    font-size: 27px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 8.5px;
  }

  .tags {
    gap: 5px;
    margin: 8px 0;
  }

  .tag {
    padding: 5px 7px;
    font-size: 8.5px;
  }

  .bundle-contents {
    margin-top: 8px;
    padding: 8px 9px;
    border-left-width: 3px;
  }

  .bundle-contents-heading {
    margin-bottom: 6px;
    font-size: 9.5px;
  }

  .bundle-contents-heading > strong,
  .bundle-contents li {
    font-size: 8.5px;
  }

  .bundle-contents ul {
    gap: 4px;
  }

  .bundle-contents li {
    padding-bottom: 4px;
  }

  .bundle-contents li strong {
    font-size: 9px;
  }

  .detail-panel .price-row {
    gap: 4px;
  }

  .detail-panel .price-now {
    font-size: 14px;
  }

  .detail-panel .price-was {
    font-size: 9px;
  }

  .btn {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 11.5px;
  }

  .detail-add-cart {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .detail-followup-actions {
    margin-top: 6px;
  }

  .summary-card,
  .form-card {
    padding: 13px;
  }

  .summary-card {
    border-radius: 14px;
  }

  .summary-card h2,
  .form-card h2 {
    margin-block: 3px 8px;
    font-size: 17px;
  }

  .summary-row {
    gap: 8px;
    padding: 6px 0;
    font-size: 11px;
  }

  .summary-total {
    font-size: 15px;
  }

  .summary-card::before {
    height: 4px;
  }

  .cart-summary-actions {
    gap: 7px;
    margin-top: 12px;
  }

  .cart-summary-actions .btn {
    min-height: 40px;
    font-size: 11.5px;
  }

  .cart-summary-actions svg {
    width: 15px;
    height: 15px;
  }

  .cart-summary-actions .btn-plus {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .cart-item {
    gap: 9px;
    padding: 9px;
    border-radius: 13px;
  }

  .cart-item img {
    width: 56px;
    height: 56px;
    border-radius: 9px;
  }

  .cart-item-title {
    font-size: 13px;
  }

  .cart-item-meta {
    font-size: 11px;
  }

  .icon-btn {
    width: 30px;
    height: 30px;
  }

  .field {
    gap: 6px;
    margin-bottom: 10px;
  }

  .field label {
    font-size: 11px;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 11px;
    font-size: 13px;
  }

  .field textarea {
    min-height: 80px;
  }

  .address-combobox-trigger {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 11px;
    font-size: 13px;
  }

  .address-combobox-panel {
    top: calc(100% + 5px);
    padding: 6px;
  }

  .field .address-combobox-search {
    min-height: 38px;
    padding-block: 8px;
    font-size: 12px;
  }

  .address-combobox-options {
    max-height: 230px;
  }

  .address-combobox-option {
    min-height: 37px;
    padding-block: 7px;
    font-size: 12px;
  }

  .field-row {
    gap: 8px;
  }

  .inline-note {
    font-size: 10px;
  }

  .notice {
    padding: 9px 11px;
    border-radius: 11px;
    font-size: 11px;
  }

  .btn-add-more {
    margin-top: 8px;
  }

  .sticky-cart {
    width: min(var(--mobile-content-width), calc(100% - 32px));
    min-height: 54px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 8px 9px 8px 12px;
    bottom: 10px;
    border-radius: 17px;
  }

  .sticky-cart strong {
    font-size: 12px;
  }

  .sticky-cart small {
    font-size: 10px;
  }

  .sticky-cart-cta {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .toast {
    bottom: 74px;
    max-width: calc(100% - 32px);
    padding: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .add-cart-label-full {
    display: none;
  }

  .add-cart-label-short {
    display: inline;
  }
}
