/*
 * Rimbuni / Shade Study
 * Mobile-first visual system. Interaction, pricing and tracking selectors are
 * intentionally preserved so main.js can remain untouched.
 */

:root {
  --paper: #f7f5ef;
  --paper-2: #f0eee7;
  --white: #fffdf8;
  --ink: #173c35;
  --ink-soft: #52655f;
  --moss: #3d7b68;
  --moss-pale: #dfeee5;
  --clay: #e26646;
  --clay-dark: #b84731;
  --sun: #efb94b;
  --sky: #d9eaf0;
  --blue: #25617a;
  --line: rgba(23, 60, 53, .15);
  --line-strong: rgba(23, 60, 53, .28);
  --shadow: 0 18px 50px rgba(23, 60, 53, .09);
  --shadow-tight: 0 8px 22px rgba(23, 60, 53, .11);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 17px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}

html {
  background: #e7e1d7;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(239, 185, 75, .24), transparent 21rem),
    radial-gradient(circle at 90% 24%, rgba(61, 123, 104, .16), transparent 25rem),
    #e7e1d7;
  overflow-x: hidden;
}

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

button,
summary,
label {
  -webkit-user-select: none;
  user-select: none;
}

button {
  border: 0;
}

.phone-frame {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(23, 60, 53, .08), 0 28px 90px rgba(45, 40, 30, .15);
}

.phone-frame::before {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .23;
  content: "";
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, .28) 0 1px, transparent 1px 5px),
    linear-gradient(25deg, rgba(23, 60, 53, .025) 0 1px, transparent 1px 7px);
  background-size: 9px 9px, 13px 13px;
  mix-blend-mode: multiply;
}

/* Header */
.nb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 69px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, .88);
  backdrop-filter: blur(18px);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--clay);
  font-size: 15px;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-8deg);
}

.logo-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.badge-official {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 60, 53, .22);
  border-radius: 999px;
  color: var(--moss);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--moss-pale);
}

/* Shared section rhythm */
.hero-section,
.about-section,
.gallery-section,
.specs-section,
.price-section,
.rating-section,
.testimonials-section,
.faq-section {
  position: relative;
  padding: 31px 17px;
  overflow: hidden;
}

.section-title {
  position: relative;
  margin-bottom: 19px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 6.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.section-title::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--clay);
  content: "";
}

.section-title::after {
  position: absolute;
  top: 0;
  right: 4px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 60, 53, .12);
  border-radius: 50%;
  content: "";
  transform: translateY(-7px);
}

/* Hero */
.hero-section {
  padding-top: 14px;
  padding-bottom: 26px;
  background: var(--paper);
}

.hero-image-wrap {
  position: relative;
  height: 455px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 34px 34px 92px 34px;
  background: #d8e7df;
  box-shadow: 9px 10px 0 rgba(23, 60, 53, .92);
  isolation: isolate;
  touch-action: pan-y;
  cursor: grab;
}

.hero-image-wrap::before {
  position: absolute;
  top: -90px;
  right: -65px;
  z-index: 3;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(23, 60, 53, .32);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(239, 185, 75, .92) 0 32%, rgba(239, 185, 75, .25) 33% 47%, transparent 48%);
  box-shadow: 0 0 0 22px rgba(239, 185, 75, .1), 0 0 0 44px rgba(239, 185, 75, .07);
  animation: sunDrift 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 12px;
  z-index: 4;
  border: 1px solid rgba(255, 253, 248, .7);
  border-radius: 26px 26px 76px 26px;
  content: "";
  pointer-events: none;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.22, .8, .25, 1);
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 60, 53, .03) 30%, rgba(23, 60, 53, .3) 100%),
    linear-gradient(125deg, rgba(255, 253, 248, .2), transparent 35%);
  pointer-events: none;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.04);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .8s ease;
}

.hero-image-wrap:active {
  cursor: grabbing;
}

.hero-image-wrap:active img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.07);
}

.hero-dots {
  position: absolute;
  bottom: 19px;
  left: 23px;
  z-index: 6;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 253, 248, .65);
  border-radius: 999px;
  background: rgba(23, 60, 53, .72);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, .5);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--sun);
}

.hero-text {
  position: relative;
  z-index: 7;
  margin: -48px 16px 0 9px;
  padding: 22px 19px 19px;
  border: 1px solid var(--ink);
  border-radius: 22px 22px 22px 5px;
  background: var(--white);
  box-shadow: 6px 7px 0 var(--clay);
  animation: riseIn .8s both;
}

.hero-text::before {
  position: absolute;
  top: -11px;
  right: 21px;
  width: 21px;
  height: 21px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--sun);
}

.hero-text h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 10vw, 3.25rem);
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.075em;
}

.hero-text h1::first-line {
  color: var(--clay-dark);
}

.hero-text p {
  max-width: 31ch;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 550;
  line-height: 1.45;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.trust-item {
  min-height: 70px;
  padding: 13px 4px 10px;
  color: var(--ink);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line-strong);
}

.trust-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
  line-height: 1;
}

/* Factory story */
.about-section {
  background: var(--moss-pale);
}

.about-section::before {
  position: absolute;
  top: 15px;
  right: -54px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(23, 60, 53, .17);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 18px rgba(255, 253, 248, .24), 0 0 0 36px rgba(23, 60, 53, .05);
}

.about-factory-img {
  position: relative;
  margin: 0 8px 27px 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 25px 25px 25px 6px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
}

.about-factory-img::after {
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 253, 248, .75);
  border-radius: 16px 16px 16px 3px;
  content: "";
}

.about-factory-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: saturate(.82) contrast(1.04);
}

.img-caption {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 253, 248, .7);
  border-radius: 8px;
  color: var(--white);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .04em;
  background: rgba(23, 60, 53, .72);
  backdrop-filter: blur(8px);
}

.about-points {
  display: grid;
  gap: 11px;
}

.about-item {
  position: relative;
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px 15px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(255, 253, 248, .68);
  box-shadow: 3px 4px 0 rgba(23, 60, 53, .1);
}

.about-item:nth-child(2) {
  margin-left: 12px;
}

.about-item:nth-child(3) {
  margin-right: 12px;
}

.about-icon {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 13px;
  font-size: 1.15rem;
  background: var(--sun);
  transform: rotate(-5deg);
}

.about-item:nth-child(2) .about-icon {
  background: var(--sky);
  transform: rotate(5deg);
}

.about-item:nth-child(3) .about-icon {
  background: #f5cfc1;
  transform: rotate(-3deg);
}

.about-item strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--ink);
  font-size: .9rem;
  letter-spacing: -.015em;
}

.about-item p {
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.42;
}

/* Gallery */
.gallery-section {
  padding-top: 35px;
  padding-bottom: 34px;
  background: var(--paper);
}

.gallery-section:nth-of-type(4) {
  background: #f3e7dc;
}

.gal-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 11px;
}

.gal-item {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 22px 7px 22px 7px;
  background: var(--moss);
  box-shadow: 4px 5px 0 rgba(23, 60, 53, .9);
  isolation: isolate;
  transform: translateZ(0);
}

.gal-item:nth-child(2) {
  margin-top: 21px;
  border-radius: 7px 22px 7px 22px;
  background: var(--blue);
}

.gal-item:nth-child(3) {
  margin-top: -8px;
  border-radius: 7px 22px 7px 22px;
  background: var(--clay);
}

.gal-item:nth-child(4) {
  margin-top: 13px;
  border-radius: 22px 7px 22px 7px;
  background: var(--sun);
}

.gal-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(23, 60, 53, .78));
}

.gal-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), filter .6s ease;
}

.gal-item:active img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.gal-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: var(--white);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Specifications */
.specs-section {
  background: var(--sky);
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--blue);
}

.spec-row {
  display: grid;
  grid-template-columns: 37% 63%;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

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

.spec-label,
.spec-value {
  padding: 13px 11px;
  font-size: .73rem;
  line-height: 1.35;
}

.spec-label {
  color: var(--moss);
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: rgba(217, 234, 240, .5);
}

.spec-value {
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
}

.spec-value strong {
  color: var(--clay-dark);
}

.spec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 24px;
}

.spec-card {
  position: relative;
  min-height: 150px;
  padding: 15px 13px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 19px;
  box-shadow: 4px 4px 0 rgba(23, 60, 53, .84);
}

.spec-card::after {
  position: absolute;
  right: -23px;
  bottom: -31px;
  width: 83px;
  height: 83px;
  border: 1px solid rgba(23, 60, 53, .24);
  border-radius: 50%;
  content: "";
}

.card-yellow { background: #f6d27c; }
.card-green { background: #b8dcc9; }
.card-pink { background: #f3b7a4; }
.card-blue { background: #a8d6e2; }

.card-emoji {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.spec-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: .98rem;
}

.spec-card span {
  display: block;
  max-width: 17ch;
  color: rgba(23, 60, 53, .78);
  font-size: .72rem;
  line-height: 1.35;
}

/* Pricing */
.price-section {
  background: var(--white);
}

.price-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle at 70% 25%, rgba(239, 185, 75, .3) 0 2px, transparent 3px 15px);
  background-size: 23px 23px;
  opacity: .9;
}

.price-subtitle {
  max-width: 34ch;
  margin: -7px 0 25px;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.45;
}

.price-group {
  position: relative;
  margin-bottom: 27px;
}

.price-group:last-child {
  margin-bottom: 0;
}

.group-label {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  border-radius: 10px 10px 10px 2px;
  color: var(--white);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.15;
  text-transform: uppercase;
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--sun);
}

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

.price-pill-info {
  position: relative;
  min-height: 68px;
  padding: 13px 10px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.price-pill-info:nth-child(3n) {
  background: #f9efe3;
}

.price-pill-info:active {
  border-color: var(--clay);
  box-shadow: 3px 3px 0 var(--clay);
  transform: translateY(-2px);
}

.price-pill-info.best-info {
  border-color: var(--clay);
  background: #fff3da;
  box-shadow: 3px 3px 0 rgba(226, 102, 70, .26);
}

.pill-size {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.pill-price {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 700;
}

.bs-label {
  position: absolute;
  top: -9px;
  right: 8px;
  padding: 4px 6px;
  border: 1px solid var(--clay-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--clay);
}

.hot-tag {
  font-size: .66rem;
}

/* Reviews */
.rating-section {
  background: #f3e7dc;
}

.rating-summary {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 18px 14px;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--clay);
}

.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.big-num {
  color: var(--clay-dark);
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: .85;
}

.big-star {
  margin-top: 9px;
  font-size: .78rem;
  letter-spacing: -2px;
}

.big-count {
  max-width: 10ch;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.2;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 29px 1fr 25px;
  gap: 6px;
  align-items: center;
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 750;
}

.bar-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e1d7;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), var(--clay));
}

.testimonials-section {
  background: var(--moss-pale);
}

.testi-list {
  display: grid;
  gap: 13px;
}

.testi-card {
  position: relative;
  padding: 18px 16px 15px;
  border: 1px solid var(--ink);
  border-radius: 21px 7px 21px 7px;
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(23, 60, 53, .9);
}

.testi-card:nth-child(even) {
  border-radius: 7px 21px 7px 21px;
  background: #fff4df;
  transform: translateX(9px);
}

.testi-card::before {
  position: absolute;
  top: 5px;
  right: 13px;
  color: var(--sun);
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
  content: "“";
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-right: 22px;
  margin-bottom: 9px;
}

.testi-top strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
}

.testi-top span {
  font-size: .65rem;
  letter-spacing: -1px;
}

.testi-card p {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: .8rem;
  font-style: italic;
  line-height: 1.46;
}

.testi-card small {
  display: block;
  margin-top: 9px;
  color: var(--moss);
  font-size: .66rem;
  font-weight: 750;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] {
  border-color: var(--clay);
  box-shadow: 4px 4px 0 rgba(226, 102, 70, .25);
}

.faq-item summary {
  position: relative;
  padding: 16px 39px 16px 15px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::before {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--clay-dark);
  font-size: .9rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::before {
  color: var(--white);
  content: "−";
  background: var(--clay);
}

.faq-item p {
  padding: 0 15px 16px;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 31px 17px 27px;
  overflow: hidden;
  color: rgba(255, 253, 248, .82);
  background: var(--ink);
}

.site-footer::before {
  position: absolute;
  top: -75px;
  right: -58px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(239, 185, 75, .52);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 20px rgba(239, 185, 75, .06), 0 0 0 42px rgba(239, 185, 75, .05);
}

.footer-brand,
.footer-info,
.footer-copy {
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-brand strong {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer-brand p {
  max-width: 29ch;
  margin-top: 6px;
  color: rgba(255, 253, 248, .67);
  font-size: .78rem;
  line-height: 1.4;
}

.footer-info {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 253, 248, .2);
  border-bottom: 1px solid rgba(255, 253, 248, .2);
}

.footer-info p {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, .75);
  font-size: .72rem;
  line-height: 1.4;
}

.footer-info p:last-child {
  margin-bottom: 0;
}

.footer-info a {
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
}

.footer-copy {
  padding-top: 17px;
}

.footer-copy p {
  margin-bottom: 5px;
  color: rgba(255, 253, 248, .42);
  font-size: .63rem;
  line-height: 1.35;
}

.footer-links {
  display: none;
}

.spacer {
  height: 102px;
  background: var(--paper);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 100;
  width: min(100%, 430px);
  padding: 10px 15px 14px;
  border-top: 1px solid rgba(23, 60, 53, .13);
  background: rgba(247, 245, 239, .91);
  box-shadow: 0 -12px 28px rgba(23, 60, 53, .08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.sticky-cta::before {
  display: block;
  width: 34px;
  height: 4px;
  margin: -3px auto 8px;
  border-radius: 999px;
  background: var(--sun);
  content: "";
}

.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  overflow: hidden;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  color: var(--white);
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .015em;
  background: var(--clay);
  box-shadow: 5px 6px 0 var(--ink);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  animation: ctaBreath 3.5s ease-in-out infinite;
}

.cta-btn::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -28%;
  width: 24%;
  content: "";
  background: rgba(255, 253, 248, .35);
  transform: skewX(-20deg);
  animation: ctaShine 4.5s ease-in-out infinite;
}

.cta-btn:active {
  box-shadow: 1px 2px 0 var(--ink);
  transform: translate(4px, 4px);
  animation: none;
}

/* Order sheet / all dynamic form UI */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(23, 60, 53, .48);
  backdrop-filter: blur(8px);
  transition: opacity .28s ease, visibility .28s ease;
}

.modal-overlay.open {
  visibility: visible;
  opacity: 1;
}

.modal-sheet {
  width: min(100%, 430px);
  max-height: 94vh;
  overflow-y: auto;
  border: 1px solid var(--ink);
  border-bottom: 0;
  border-radius: 29px 29px 0 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 -20px 60px rgba(23, 60, 53, .2);
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.open .modal-sheet {
  transform: translateY(0);
}

.modal-handle {
  width: 43px;
  height: 5px;
  margin: 11px auto 3px;
  border-radius: 99px;
  background: var(--line-strong);
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.modal-top h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.34rem;
  letter-spacing: -.04em;
}

.modal-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 900;
  background: var(--sun);
  cursor: pointer;
}

.order-form {
  padding: 19px 16px 26px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group > label {
  display: block;
  margin-bottom: 11px;
  color: var(--moss);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.choice-block,
.cart-box,
.payment-step,
.pay-opt-v {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--white);
}

.choice-block {
  position: relative;
  margin-bottom: 13px;
  padding: 14px;
  box-shadow: 3px 3px 0 rgba(23, 60, 53, .1);
}

.choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--clay-dark);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.choice-remove,
.remove-item {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--clay-dark);
  font-size: 1.05rem;
  background: #f8e0d7;
  cursor: pointer;
}

.choice-label {
  margin: 14px 0 8px;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.model-tabs,
.choice-color-grid,
.size-button-grid {
  display: grid;
  gap: 7px;
}

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

.model-tab,
.size-btn,
.choice-color-btn {
  min-height: 39px;
  padding: 7px 5px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: .64rem;
  font-weight: 850;
  line-height: 1.1;
  background: var(--paper);
  cursor: pointer;
}

.model-tab.active,
.size-btn.active,
.choice-color-btn.active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--moss);
  box-shadow: 2px 2px 0 var(--ink);
}

.model-preview {
  height: 150px;
  margin: 13px 0 8px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 15px;
  background: var(--moss-pale);
}

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

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

.size-btn {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: .75rem;
}

.size-btn small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: .59rem;
  font-weight: 800;
}

.size-btn.active small {
  color: rgba(255, 253, 248, .82);
}

.size-placeholder {
  padding: 13px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .74rem;
  line-height: 1.35;
  background: var(--paper);
}

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

.choice-color-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 8px;
  text-align: left;
}

.c-dot {
  display: inline-block;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.qty-row label {
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.qty-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: var(--white);
}

.qty-control button {
  width: 33px;
  height: 32px;
  color: var(--ink);
  font-size: 1.1rem;
  background: var(--sun);
  cursor: pointer;
}

.qty-control input {
  width: 31px;
  height: 32px;
  border: 0;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  background: transparent;
  outline: 0;
}

.add-choice-btn {
  width: 100%;
  margin: 7px 0 13px;
  padding: 11px;
  border: 1px dashed var(--moss);
  border-radius: 12px;
  color: var(--moss);
  font-size: .72rem;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.cart-box {
  padding: 13px;
  background: var(--moss-pale);
}

.cart-title,
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-title {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--moss);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-title strong {
  color: var(--clay-dark);
}

.cart-item {
  padding-top: 10px;
}

.cart-item > div {
  display: grid;
  gap: 3px;
}

.cart-item strong {
  color: var(--ink);
  font-size: .72rem;
}

.cart-item small,
.cart-empty {
  color: var(--ink-soft);
  font-size: .65rem;
  line-height: 1.3;
}

.cart-empty {
  padding-top: 10px;
}

.input-wrap {
  margin-bottom: 9px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-size: .8rem;
  outline: 0;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.input-wrap textarea {
  min-height: 86px;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61, 123, 104, .13);
}

.input-wrap select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--moss) 50%), linear-gradient(135deg, var(--moss) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-error {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid var(--clay);
  border-radius: 11px;
  color: var(--clay-dark);
  font-size: .72rem;
  line-height: 1.35;
  background: #fff0ea;
}

.pay-options-vertical {
  display: grid;
  gap: 9px;
}

.pay-opt-v {
  display: block;
  overflow: hidden;
}

.pay-opt-v > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-opt-inner {
  padding: 13px;
  cursor: pointer;
}

.pay-opt-v > input:checked + .pay-opt-inner {
  outline: 2px solid var(--moss);
  outline-offset: -2px;
  background: var(--moss-pale);
}

.pay-opt-title {
  display: block;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
}

.pay-opt-title small {
  color: var(--clay-dark);
  font-size: .68rem;
}

.pay-detail {
  margin-top: 11px;
}

.pay-nominal {
  padding: 9px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: .7rem;
  background: var(--white);
}

.pay-nominal strong {
  color: var(--clay-dark);
}

.bank-item {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: .7rem;
  background: var(--white);
}

.bank-item strong {
  color: var(--ink);
}

.bank-item small {
  color: var(--ink-soft);
}

.rek-num {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .04em;
}

.btn-salin,
.btn-download {
  margin-top: 6px;
  padding: 6px 9px;
  border: 1px solid var(--moss);
  border-radius: 8px;
  color: var(--moss);
  font-size: .62rem;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.btn-salin.copied {
  color: var(--white);
  background: var(--moss);
}

.cod-fee-note,
.qris-note {
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1.35;
}

.cod-fee-note strong {
  color: var(--clay-dark);
}

.cod-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 10px;
}

.cod-checkbox input {
  margin-top: 3px;
  accent-color: var(--clay);
}

.cod-checkbox span {
  color: var(--ink-soft);
  font-size: .67rem;
  line-height: 1.35;
}

.qris-img {
  display: block;
  width: min(100%, 220px);
  margin: 12px auto 8px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.qris-note {
  text-align: center;
}

.btn-download {
  display: block;
  margin: 9px auto 0;
}

.order-total {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 17px;
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--ink);
}

.fee-line,
.total-line,
.dp-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.fee-line {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: .7rem;
}

.total-line {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.27rem;
}

.total-line strong {
  color: var(--clay-dark);
}

.dp-line {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .72rem;
}

.dp-line strong {
  color: var(--ink);
}

.dp-line small {
  max-width: 15ch;
  font-size: .6rem;
  line-height: 1.2;
  text-align: right;
}

.submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  background: var(--moss);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}

.submit-btn:active {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(4px, 4px);
}

.needs-attention {
  border-color: var(--clay) !important;
  box-shadow: 0 0 0 3px rgba(226, 102, 70, .14) !important;
}

/* Animations */
@keyframes sunDrift {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(-10px, 12px) rotate(8deg); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ctaBreath {
  0%, 100% { box-shadow: 5px 6px 0 var(--ink); }
  50% { box-shadow: 5px 6px 0 var(--ink), 0 0 0 5px rgba(226, 102, 70, .12); }
}

@keyframes ctaShine {
  0%, 58%, 100% { left: -28%; opacity: 0; }
  64% { opacity: 1; }
  75% { left: 112%; opacity: 0; }
}

@media (min-width: 431px) {
  body {
    padding: 18px 0;
  }

  .phone-frame {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
