:root {
  --ink: #211f2a;
  --muted: #555765;
  --paper: #f8fbff;
  --surface: #ffffff;
  --line: #cfd8e7;
  --rose: #ff5578;
  --rose-dark: #be2449;
  --leaf: #00a878;
  --sky: #42a5ff;
  --gold: #ffc83d;
  --grape: #7c5cff;
  --tangerine: #ff8a34;
  --shadow: 0 20px 60px rgba(33, 31, 42, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 200, 61, 0.16) 0 10px, transparent 10px 26px),
    linear-gradient(180deg, #f8fbff 0%, #fff7fb 50%, #f4fff9 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 52px);
  background: rgba(247, 251, 255, 0.9);
  border-bottom: 1px solid rgba(214, 220, 229, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
}

.brand img {
  width: clamp(104px, 11vw, 140px);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--rose-dark);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.language-switcher-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.language-select {
  min-height: 44px;
  padding: 0 34px 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.language-select:focus {
  outline: 2px solid rgba(66, 165, 255, 0.28);
  outline-offset: 2px;
}

.header-auth-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-auth-links a {
  transition: color 180ms ease;
}

.header-auth-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-auth-links a:hover {
  color: var(--rose-dark);
}

.header-auth-button:hover {
  color: var(--rose-dark);
}

.icon-button,
.cart-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button,
.cart-button {
  padding: 0 16px;
}

.cart-button {
  gap: 10px;
  min-width: 70px;
  white-space: nowrap;
}

.cart-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cart-count {
  font-weight: 900;
  line-height: 1;
}

.button {
  padding: 13px 22px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--rose), var(--tangerine));
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.button.secondary {
  background: #fff;
}

.button.paypal {
  background: #ffc439;
  color: #162c70;
  box-shadow: 5px 5px 0 var(--ink);
}

.button.google-pay {
  background: #fff;
  color: #1f1f1f;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  min-height: min(620px, calc(100vh - 84px));
  padding: clamp(34px, 6vw, 72px) clamp(20px, 6vw, 74px);
  max-width: 1180px;
  margin-inline: auto;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  order: 2;
  margin-top: 34px;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  align-self: start;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #a5ead7;
  box-shadow: 10px 10px 0 var(--gold), -10px -10px 0 var(--sky);
  transform: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(33, 31, 42, 0.08), transparent 45%);
}

.hero-media img {
  height: 100%;
  object-fit: contain;
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0;
  color: #373942;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.color-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.color-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.color-tabs span:nth-child(2) {
  background: #8be3ff;
}

.color-tabs span:nth-child(3) {
  background: #b4f06f;
}

.color-tabs span:nth-child(4) {
  background: #ff9eca;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  color: #30313a;
  font-weight: 700;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  content: "v";
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.intro-band,
.reviews-section,
.faq-section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 74px);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 56px);
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
}

.example-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: clamp(28px, 5vw, 44px) auto 0;
}

.example-item {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--gold);
}

.example-item:nth-child(2) {
  box-shadow: 8px 8px 0 var(--sky);
}

.example-item:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(124, 92, 255, 0.38);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: clamp(26px, 5vw, 40px) auto 0;
}

.reviews-heading {
  margin-top: clamp(26px, 5vw, 40px);
  text-align: center;
}

.reviews-pency {
  display: block;
  width: clamp(56px, 7vw, 82px);
  height: auto;
  margin: calc(clamp(42px, 6vw, 60px) + 50px) auto calc(clamp(58px, 8vw, 108px) * -0.5);
  pointer-events: none;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 10px rgba(33, 31, 42, 0.16));
}

.review-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 7px 7px 0 rgba(255, 200, 61, 0.58);
}

.review-card:nth-child(2) {
  box-shadow: 7px 7px 0 rgba(66, 165, 255, 0.48);
}

.review-card:nth-child(3) {
  box-shadow: 7px 7px 0 rgba(255, 85, 120, 0.4);
}

.review-stars {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-stars-filled {
  color: #f3b300;
}

.review-stars-empty {
  color: #c7ccd6;
}

.review-quote {
  margin: 0;
  color: #343640;
  font-size: 1rem;
}

.review-author {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.review-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: help;
}

.step,
.product-panel,
details {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
}

.step-pency {
  position: absolute;
  top: 10px;
  right: 14px;
  width: clamp(28px, 3.5vw, 41px);
  height: auto;
  pointer-events: none;
  transform: rotate(8deg);
  filter: drop-shadow(0 8px 10px rgba(33, 31, 42, 0.16));
}

.step:nth-child(1) {
  box-shadow: 7px 7px 0 var(--sky);
}

.step:nth-child(2) {
  box-shadow: 7px 7px 0 var(--gold);
}

.step:nth-child(3) {
  box-shadow: 7px 7px 0 #ff9eca;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--sky);
  color: #102636;
  font-weight: 900;
}

.step p,
.product-panel p,
details p,
.site-footer p {
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(320px, 520px);
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 74px);
  background:
    linear-gradient(135deg, rgba(139, 227, 255, 0.38), rgba(180, 240, 111, 0.36)),
    #ffffff;
  border-block: 1px solid var(--line);
}

.product-media {
  display: grid;
  align-self: start;
  gap: 18px;
}

.product-pency {
  justify-self: center;
  width: min(70%, 300px);
  height: auto;
  margin-top: clamp(18px, 5vw, 46px);
  pointer-events: none;
  filter: drop-shadow(0 18px 20px rgba(33, 31, 42, 0.16));
}

.product-image {
  min-height: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--rose);
  background: #a5ead7;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-diagram {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #ffe38b;
  box-shadow: 8px 8px 0 rgba(66, 165, 255, 0.32);
}

.product-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.product-panel {
  align-self: stretch;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 8px 8px 0 var(--grape);
}

.price {
  margin: 16px 0;
  color: var(--ink) !important;
  font-size: 1.5rem;
  font-weight: 900;
}

.product-rating {
  margin: 10px 0 0;
  color: #8a6a00 !important;
  font-size: 0.95rem;
  font-weight: 800;
}

.product-helper {
  margin-top: 10px;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.highlight-item {
  text-align: center;
}

.highlight-item h3 {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
}

.photo-guide {
  margin: 0 0 22px;
  padding: 18px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.photo-guide-title {
  margin: 0 0 8px;
  color: var(--ink) !important;
  font-weight: 900;
}

.order-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.order-form label {
  font-weight: 800;
}

.order-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.payment-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  justify-items: stretch;
  width: 100%;
}

.paypal-hosted-wrapper {
  width: 100%;
}

.paypal-hosted-wrapper > div {
  width: 100%;
}

.paypal-hosted-wrapper.button-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.paypal-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.delivery-guide {
  display: grid;
  gap: 10px;
  margin: 6px 0 4px;
}

.delivery-item {
  padding: 14px 14px 12px;
  border-top: 1px solid var(--line);
}

.delivery-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.delivery-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-inline: auto;
}

details {
  padding: 20px 24px;
  box-shadow: 6px 6px 0 rgba(66, 165, 255, 0.48);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

.site-footer {
  padding: clamp(40px, 6vw, 64px) clamp(20px, 6vw, 74px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) repeat(2, minmax(140px, 180px)) minmax(230px, 320px);
  justify-content: center;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin-inline: auto;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #4b453f;
}

.thank-you-page {
  padding: clamp(40px, 7vw, 88px) clamp(20px, 6vw, 74px);
}

.thank-you-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 38px);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--sky);
}

.thank-you-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
}

.thank-you-intro-copy {
  max-width: 680px;
  text-align: center;
}

.thank-you-intro-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-intro-copy .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-intro-copy .check-list {
  justify-items: center;
  text-align: center;
}

.thank-you-intro-copy .check-list li {
  justify-content: center;
}

.thank-you-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(20px, 3vw, 34px);
}

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

.thank-you-options .hero-actions {
  grid-column: 1 / -1;
}

.checkout-gate {
  max-width: 680px;
  margin: 0 auto;
  padding: 22px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.checkout-gate .button {
  margin-top: 16px;
}

.thank-you-media {
  justify-self: center;
  align-self: start;
  width: min(100%, 330px);
  transform: translateX(-5px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #a5ead7;
  box-shadow: 8px 8px 0 var(--gold);
}

.thank-you-media img {
  height: 100%;
  object-fit: contain;
}

.policy-page {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 74px) clamp(64px, 8vw, 100px);
}

.policy-hero {
  max-width: 900px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.policy-hero h1 {
  max-width: 14ch;
  margin-inline: auto;
  text-wrap: balance;
}

.policy-hero h1.policy-title-wide {
  max-width: 26ch;
}

.policy-hero .hero-copy {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.policy-updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 760px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  justify-content: center;
  max-width: 1120px;
  margin-inline: auto;
}

.policy-nav {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--gold);
}

.policy-nav h2 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
}

.policy-nav a {
  color: var(--ink);
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: 22px 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(66, 165, 255, 0.3);
}

.policy-section h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.2;
}

.policy-section p {
  margin: 0 0 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 0;
  padding-left: 20px;
}

.policy-list li + li {
  margin-top: 8px;
}

.contact-page {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 74px) clamp(64px, 8vw, 100px);
}

.account-page {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 74px) clamp(64px, 8vw, 100px);
}

.account-hero {
  max-width: 860px;
  margin: 0 auto clamp(28px, 5vw, 44px);
  text-align: center;
}

.account-hero h1 {
  margin-inline: auto;
  text-wrap: balance;
}

.account-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(320px, 620px);
  justify-content: center;
  gap: 0;
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.account-card {
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(255, 200, 61, 0.34);
  text-align: center;
}

.account-card h2 {
  margin-inline: auto;
  text-wrap: balance;
}

.account-form {
  display: grid;
  justify-items: stretch;
  gap: 12px;
}

.account-form label {
  font-weight: 800;
  text-align: center;
}

.account-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.account-secondary-form {
  margin-top: 16px;
}

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

.account-link-button {
  display: inline-flex;
  justify-content: center;
  margin: 14px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.account-link-button:hover {
  text-decoration: underline;
}

.account-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.account-checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
}

.account-helper {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.account-register-link {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.account-register-link a {
  color: var(--rose-dark);
  font-weight: 900;
}

.account-status {
  min-height: 1.4em;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.account-status-success {
  color: var(--leaf);
}

.account-status-error {
  color: var(--rose-dark);
}

.account-form-logged-in label,
.account-form-logged-in input,
.account-form-logged-in .account-checkbox {
  display: none;
}

.checkout-page {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 74px) clamp(64px, 8vw, 100px);
}

.checkout-hero {
  max-width: 860px;
  margin: 0 auto clamp(28px, 5vw, 44px);
  text-align: center;
}

.checkout-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 560px);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
  justify-content: center;
  max-width: 1120px;
  margin-inline: auto;
}

.checkout-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(66, 165, 255, 0.28);
}

.checkout-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.checkout-items {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.checkout-items .checkout-item {
  margin-top: 0;
}

.checkout-thumb {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #a5ead7;
}

.checkout-thumb img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.checkout-item-title {
  margin: 0 0 6px;
  color: var(--ink) !important;
  font-weight: 900;
}

.checkout-item-meta {
  margin: 0 0 6px;
  color: var(--muted) !important;
  font-size: 0.95rem;
  font-weight: 800;
}

.checkout-item-copy p:last-child {
  margin-bottom: 0;
}

.checkout-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.checkout-row strong {
  color: var(--ink);
}

.checkout-total-row {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.checkout-payment-card .payment-actions {
  margin-top: auto;
  padding-top: 26px;
  width: 100%;
}

.checkout-payment-intro,
.checkout-payment-points,
.checkout-payment-card .button.primary,
.checkout-payment-card .paypal-hosted-wrapper,
.checkout-shipping-form,
.checkout-payment-card .checkout-note {
  width: min(100%, 400px);
  margin-inline: auto;
}

.checkout-payment-card .button.primary,
.checkout-payment-card .paypal-hosted-wrapper {
  justify-self: center;
}

.checkout-payment-intro {
  max-width: 30rem;
}

.checkout-payment-intro h2 {
  max-width: 11ch;
  margin-bottom: 14px;
}

.checkout-payment-intro p {
  margin: 0;
  color: var(--muted);
}

.checkout-payment-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.checkout-payment-point {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.checkout-payment-point strong {
  font-size: 0.98rem;
}

.checkout-payment-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.checkout-form label {
  font-weight: 800;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

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

.checkout-shipping-form {
  margin-top: 22px;
  padding: 18px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.upload-form {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.upload-form input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.upload-hint {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.upload-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.thank-you-upload-form {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
  padding: 22px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.thank-you-upload-form button {
  margin-top: auto;
}

.gift-upload-form {
  border-color: rgba(255, 200, 61, 0.9);
  background: #fffaf0;
}

.checkout-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose-dark);
  font-weight: 900;
  cursor: pointer;
}

.checkout-empty {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.checkout-empty p {
  margin: 0;
  color: var(--muted);
}

.button-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.checkout-card .payment-actions,
.checkout-card .checkout-note {
  margin-top: auto;
}

.checkout-card .checkout-note {
  padding-top: 12px;
}

.contact-hero {
  max-width: 860px;
  margin: 0 auto clamp(28px, 5vw, 44px);
  text-align: center;
}

.contact-hero .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  max-width: 1120px;
  margin-inline: auto;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(124, 92, 255, 0.28);
}

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

.form-hidden {
  display: none;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1.2;
}

.direct-email-note {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-brand img {
  width: min(100%, 220px);
}

.footer-about {
  text-align: center;
}

.footer-about .brand {
  margin-inline: auto;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-copyright {
  margin: 0;
  color: #4b453f;
  font-size: 0.95rem;
  text-align: center;
}

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

  .nav-links {
    display: none;
  }

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

  .hero-media {
    order: 0;
    margin-top: 0;
    width: min(100%, 360px);
  }

  .steps,
  .product-section,
  .footer-inner,
  .thank-you-intro,
  .thank-you-options,
  .policy-layout,
  .contact-layout,
  .account-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    max-width: 520px;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .policy-nav {
    position: static;
  }

  .product-media {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .product-pency {
    width: min(58%, 220px);
    margin-top: 8px;
  }

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

  .product-image img {
    object-fit: contain;
  }

  .checkout-card,
  .contact-card,
  .account-card,
  .policy-section,
  .policy-nav {
    box-shadow: 6px 6px 0 rgba(66, 165, 255, 0.22);
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-auth-links {
    font-size: 0.88rem;
    gap: 10px;
  }

  .language-switcher {
    gap: 6px;
  }

  .language-switcher-label {
    font-size: 0.78rem;
  }

  .language-select {
    min-height: 40px;
    font-size: 0.84rem;
  }

  .hero {
    padding-inline: 18px;
  }

  .checkout-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checkout-thumb {
    width: min(100%, 180px);
    margin-inline: auto;
  }

  .checkout-item-top {
    flex-direction: column;
    align-items: center;
  }

  .checkout-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .policy-page,
  .contact-page,
  .account-page,
  .checkout-page,
  .thank-you-page {
    padding-inline: 18px;
  }
}

@media (max-width: 680px) {
  .example-gallery,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .checkout-card,
  .contact-card,
  .account-card {
    padding: 22px 18px;
  }

  .button.full,
  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    padding: 8px 16px;
  }

  .icon-button {
    display: none;
  }

  .brand img {
    width: clamp(96px, 34vw, 128px);
  }

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

  .header-auth-links {
    display: flex;
    gap: 8px;
    margin-right: 0;
    font-size: 0.82rem;
  }

  .language-switcher-label {
    display: none;
  }

  .language-select {
    min-height: 40px;
    max-width: 110px;
    font-size: 0.8rem;
    padding-right: 14px;
  }

  .cart-button {
    min-width: 58px;
    padding: 0 10px;
  }

  .header-actions .cart-button[href="index.html"] {
    display: none;
  }

  .hero-content {
    padding: 0;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

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

  .step-pency {
    width: 27px;
    right: 10px;
  }

  .reviews-pency {
    width: 54px;
  }

  .intro-band,
  .product-section,
  .faq-section,
  .site-footer,
  .policy-page,
  .contact-page,
  .account-page,
  .checkout-page,
  .thank-you-page {
    padding-inline: 18px;
  }
}
