:root {
  --bg: #FAF8F3;
  --paper: #FFFFFF;
  --soft: #F8F5EF;
  --ink: #102033;
  --muted: #66716F;
  --green: #0F2A24;
  --green-2: #173B33;
  --gold: #B89A5E;
  --line: rgba(16, 32, 51, 0.09);
  --shadow: 0 18px 42px rgba(15, 42, 36, 0.08);
  --radius: 10px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Noto Sans TC, PingFang TC, Hiragino Sans, system-ui, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

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

.page-frame {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(16, 32, 51, 0.04), 0 30px 80px rgba(16, 32, 51, 0.08);
  overflow-x: hidden;
}

.mobile-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: max(8px, env(safe-area-inset-top)) 18px 8px;
  background: rgba(250, 248, 243, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-logo-mobile {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

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

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg,
.return-row svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:active,
.button:active,
.qty-stepper button:active {
  transform: translateY(1px);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a:active {
  background: var(--soft);
}

main {
  display: block;
}

.hero-section {
  padding: 34px 20px 30px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.hero-copy {
  text-align: center;
}

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

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

h1,
h2 {
  font-family: Noto Serif TC, Noto Sans TC, PingFang TC, serif;
}

.hero-copy h1 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 750;
  letter-spacing: 0;
}

.hero-lead {
  margin: 0 auto;
  max-width: 340px;
  color: #3A4644;
  font-size: 15px;
  line-height: 1.85;
}

.hero-product-cluster {
  position: relative;
  width: min(100%, 342px);
  min-height: 292px;
  margin: 0 auto;
}

.hero-product-cluster img {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(15, 42, 36, 0.13);
}

.cluster-main {
  width: 46%;
  left: 27%;
  top: 13px;
  z-index: 4;
}

.cluster-item {
  width: 33%;
  opacity: 0.96;
}

.cluster-a {
  left: 1%;
  top: 40px;
  z-index: 2;
  transform: rotate(-3deg);
}

.cluster-b {
  right: 2%;
  top: 48px;
  z-index: 2;
  transform: rotate(3deg);
}

.cluster-c {
  left: 14%;
  bottom: 0;
  z-index: 3;
  transform: rotate(2deg);
}

.cluster-d {
  right: 14%;
  bottom: 2px;
  z-index: 3;
  transform: rotate(-2deg);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 120ms ease;
}

.button-primary {
  background: var(--green);
  color: #FFFFFF;
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  border-color: rgba(15, 42, 36, 0.35);
}

.button.small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 14px;
  white-space: nowrap;
}

.button.full {
  width: 100%;
}

.content-section {
  padding: 34px 20px;
  border-top: 1px solid rgba(16, 32, 51, 0.06);
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: 0;
}

.section-text,
.section-note {
  margin-bottom: 18px;
  color: #4C5856;
  font-size: 15px;
  line-height: 1.85;
}

.trust-grid,
.direction-grid {
  display: grid;
  gap: 10px;
}

.trust-grid.three {
  grid-template-columns: 1fr;
}

.mini-card,
.direction-card,
.feature-card,
.buy-panel,
.product-card,
.related-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 42, 36, 0.045);
}

.mini-card {
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
}

.mini-card::before,
.direction-card::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--gold);
  vertical-align: 2px;
}

.product-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(248, 245, 239, 0.4));
}

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

.product-card {
  overflow: hidden;
}

.product-image-link {
  display: block;
  padding: 14px 14px 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
}

.product-copy {
  padding: 16px;
}

.product-copy h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 760;
}

.jp-name {
  margin-bottom: 10px;
  color: #76807D;
  font-size: 12px;
  line-height: 1.55;
}

.product-copy p:not(.jp-name) {
  display: -webkit-box;
  min-height: 48px;
  margin-bottom: 16px;
  overflow: hidden;
  color: #4C5856;
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta strong,
.detail-price,
.sticky-buybar strong {
  color: var(--green);
  font-family: Noto Sans TC, PingFang TC, Hiragino Sans, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.product-meta strong {
  font-size: 21px;
}

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

.direction-card {
  min-height: 154px;
  padding: 16px;
  color: var(--ink);
}

.direction-card::before {
  margin-bottom: 18px;
}

.direction-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 760;
}

.direction-card p {
  margin-bottom: 0;
  color: #53605E;
  font-size: 13px;
  line-height: 1.65;
}

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

.quality-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  color: #33403E;
  font-size: 15px;
  font-weight: 650;
}

.quality-list span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 99px;
}

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

.faq-card {
  padding: 17px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 42, 36, 0.045);
}

.faq-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 760;
}

.faq-card p {
  margin-bottom: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.78;
}

.site-footer {
  padding: 32px 20px 38px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.88);
}

.footer-brand {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.footer-brand strong {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.35;
}

.footer-brand span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.legal-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.75;
}

.return-row {
  padding: 14px 18px 0;
}

.return-row a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #43504D;
  font-size: 14px;
  font-weight: 650;
}

.product-page {
  padding-bottom: 112px;
}

.product-hero-detail {
  padding: 14px 20px 24px;
}

.detail-image-wrap {
  padding: 14px;
  margin-bottom: 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.detail-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
}

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

.gallery-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 94, 0.18);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #FFFFFF;
}

.detail-summary h1 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 780;
}

.detail-lead {
  margin-bottom: 16px;
  color: #4C5856;
  font-size: 15px;
  line-height: 1.8;
}

.detail-price {
  display: block;
  font-size: 27px;
}

.buy-panel {
  margin: 0 20px 12px;
  padding: 16px;
}

.commerce-panel {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.qty-stepper {
  display: inline-grid;
  grid-template-columns: 42px 46px 42px;
  height: 42px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 9px;
  overflow: hidden;
  background: #FFFFFF;
}

.qty-stepper button {
  border: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.qty-stepper output {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(16, 32, 51, 0.1);
  border-left: 1px solid rgba(16, 32, 51, 0.1);
  font-family: Noto Sans TC, PingFang TC, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.commerce-note {
  margin-top: 0;
}

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

.feature-card {
  padding: 17px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Noto Sans TC, PingFang TC, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-card p {
  margin-bottom: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.75;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.accordion-item button span::before,
.accordion-item button span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
}

.accordion-item button span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.accordion-item.is-open button span::after {
  transform: rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.8;
}

.accordion-item.is-open .accordion-panel p {
  padding-bottom: 18px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.related-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
}

.related-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.35;
}

.related-card p {
  margin-bottom: 0;
  color: var(--green);
  font-weight: 800;
}

.compact-footer {
  padding-bottom: 32px;
}

.sticky-buybar {
  position: fixed;
  right: max(0px, calc((100vw - 480px) / 2));
  bottom: 0;
  left: max(0px, calc((100vw - 480px) / 2));
  z-index: 45;
  max-width: 480px;
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 12px;
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 36px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.sticky-buybar strong {
  font-size: 22px;
}

.sticky-buybar .button {
  min-height: 48px;
}

@media (max-width: 374px) {
  .mobile-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-logo-mobile {
    font-size: 18px;
    letter-spacing: 0.06em;
  }

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


  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-section,
  .content-section,
  .product-hero-detail {
    padding-right: 16px;
    padding-left: 16px;
  }

  .buy-panel {
    margin-right: 16px;
    margin-left: 16px;
  }
}

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

  .page-frame {
    border-radius: 18px;
  }

  .mobile-header {
    border-radius: 18px 18px 0 0;
  }
}

.is-hidden {
  display: none !important;
}

.featured-card {
  position: relative;
  border-color: rgba(184, 154, 94, 0.42);
  box-shadow: 0 18px 36px rgba(15, 42, 36, 0.08);
}

.card-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 42, 36, 0.92);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
}

.product-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(15, 42, 36, 0.12);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.78);
  color: #3F4C49;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
}

.quality-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.quality-item span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border: 2px solid var(--gold);
  border-radius: 99px;
}

.quality-item h3 {
  margin-bottom: 4px;
  color: #33403E;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
}

.quality-item p {
  margin-bottom: 0;
  color: #53605E;
  font-size: 13px;
  line-height: 1.7;
}

.company-info {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
}

.company-info div {
  display: grid;
  grid-template-columns: minmax(88px, 34%) 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.company-info dt,
.company-info dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.company-info dt {
  color: #66716F;
  font-weight: 700;
}

.company-info dd {
  color: #33403E;
  font-weight: 650;
}

.company-info a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--bg);
}

.legal-hero {
  padding: 34px 20px 24px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 780;
}

.legal-hero p:not(.eyebrow) {
  margin: 0;
  color: #4C5856;
  font-size: 15px;
  line-height: 1.85;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-family: Noto Serif TC, Noto Sans TC, PingFang TC, serif;
  font-size: 21px;
  line-height: 1.35;
}

.legal-content p {
  margin-bottom: 18px;
  color: #4C5856;
  font-size: 14px;
  line-height: 1.85;
}

.contact-panel .company-info {
  margin-bottom: 18px;
}
.quality-item div {
  display: block;
  padding: 0;
  border-bottom: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}


.price-note {
  margin: 8px 0 0;
  color: #66716F;
  font-size: 12px;
  line-height: 1.65;
}

.product-price-note {
  margin-top: 10px;
}
.commerce-panel .buy-actions {
  grid-template-columns: 1fr;
}


.cart-page .content-section:first-child {
  border-top: 0;
}

.cart-section .section-heading h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 780;
}

.cart-empty,
.cart-item,
.order-summary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 42, 36, 0.045);
}

.cart-empty {
  padding: 20px;
}

.cart-empty h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.cart-empty p {
  margin: 0 0 16px;
  color: #53605E;
  font-size: 14px;
  line-height: 1.75;
}

.cart-layout {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 14px;
}

.cart-item-image {
  width: 108px;
  aspect-ratio: 1 / 1.2;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
}

.cart-item-body {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.cart-item-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.cart-unit,
.cart-subtotal {
  margin: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.5;
}

.cart-unit strong,
.cart-subtotal strong {
  color: var(--ink);
}

.cart-qty {
  align-items: center;
}

.cart-remove {
  width: fit-content;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: #66716F;
  font-size: 13px;
  cursor: pointer;
}

.order-summary {
  padding: 16px;
}

.order-summary h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.summary-list {
  margin: 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  color: #53605E;
  font-size: 14px;
}

.summary-list dt,
.summary-list dd {
  margin: 0;
}

.summary-list dd {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.summary-list .summary-total {
  border-bottom: 0;
  font-size: 16px;
  font-weight: 800;
}

.summary-list .summary-total dt,
.summary-list .summary-total dd {
  color: var(--ink);
}

.summary-note {
  margin: 12px 0 14px;
  color: #66716F;
  font-size: 13px;
  line-height: 1.65;
}

.cart-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 374px) {
  .cart-item {
    grid-template-columns: 92px 1fr;
  }

  .cart-item-image {
    width: 92px;
  }
}
.checkout-page .content-section:first-child,
.order-complete-page .content-section:first-child {
  border-top: 0;
}

.checkout-section .section-heading h1,
.complete-section h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 780;
}

.checkout-layout {
  display: grid;
  gap: 14px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-card,
.checkout-summary,
.success-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 42, 36, 0.045);
}

.checkout-card {
  padding: 16px;
}

.checkout-card h2,
.checkout-summary h2,
.complete-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-control {
  display: grid;
  gap: 7px;
  color: #33403E;
  font-size: 14px;
  font-weight: 700;
}

.field-control input,
.field-control textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

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

.field-control input:focus,
.field-control textarea:focus {
  border-color: rgba(22, 111, 91, 0.65);
  box-shadow: 0 0 0 3px rgba(22, 111, 91, 0.12);
}

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

.option-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.option-card input {
  margin-top: 3px;
  accent-color: var(--green);
}

.option-card strong,
.option-card small {
  display: block;
}

.option-card small,
.checkout-note {
  color: #66716F;
  font-size: 13px;
  line-height: 1.6;
}

.checkout-note {
  margin: 12px 0 0;
}

.checkout-summary {
  padding: 16px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.checkout-item-image {
  width: 88px;
  aspect-ratio: 1 / 1.2;
  object-fit: contain;
  border-radius: 8px;
  background: #FFFFFF;
}

.checkout-item h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.35;
}

.checkout-item p {
  margin: 3px 0;
  color: #53605E;
  font-size: 13px;
  line-height: 1.45;
}

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

.checkout-actions,
.complete-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.success-panel {
  padding: 22px 18px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(22, 111, 91, 0.12);
  color: var(--green);
}

.success-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-number {
  display: grid;
  gap: 5px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(245, 242, 232, 0.78);
  text-align: left;
}

.order-number span {
  color: #66716F;
  font-size: 13px;
  font-weight: 700;
}

.order-number strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.complete-card {
  margin-top: 14px;
  text-align: left;
}

.complete-card .checkout-item {
  border-bottom: 0;
  padding-bottom: 0;
}

.complete-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  text-align: left;
}

.complete-info-grid p {
  margin: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.75;
}

@media (min-width: 760px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
  }

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

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

  .checkout-summary {
    position: sticky;
    top: 18px;
  }
}

.cart-link {
  flex: 0 0 40px;
}

.cart-link svg {
  width: 22px;
  height: 22px;
}

.contact-form {
  margin: 16px 0 18px;
}

.field-control select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.field-control select:focus {
  border-color: rgba(22, 111, 91, 0.65);
  box-shadow: 0 0 0 3px rgba(22, 111, 91, 0.12);
}


.brand-quality-home {
  background: #FFFFFF;
}

.brand-credit-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}

.brand-credit-card,
.product-brand-note,
.quality-info-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 42, 36, 0.04);
}

.brand-credit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(184, 154, 94, 0.14);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.brand-credit-card h3,
.product-brand-note h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.brand-credit-card p,
.product-brand-note p {
  margin: 0;
  color: #53605E;
  font-size: 14px;
  line-height: 1.75;
}

.product-brand-note a,
.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-hero-actions,
.brand-link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.brand-quality-content .company-info {
  margin-bottom: 18px;
}

.quality-info-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.quality-info-list div {
  display: grid;
  gap: 6px;
}

.quality-info-list strong {
  color: var(--ink);
  font-size: 15px;
}

.quality-info-list span {
  color: #53605E;
  font-size: 14px;
  line-height: 1.65;
}

.brand-disclaimer {
  margin-top: 18px;
}
