html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(247, 181, 0, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(229, 57, 53, 0.08), transparent 15%),
    #fffaf2;
}

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

a,
a:hover,
a:focus-visible {
  color: inherit;
  text-decoration: none;
}

.gradient-text {
  background: linear-gradient(135deg, #f7b500 0%, #ff7b54 42%, #e53935 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: relative;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(201, 144, 18, 0.12);
}

.site-header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.brand-logo {
  width: 108px;
  height: 54px;
  object-fit: contain;
}

.nav-link {
  transition: color 0.25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 2vw, 1.8rem);
  color: #514a42;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: #d63d1f;
}

.ticker {
  overflow: hidden;
  background: #c65b42;
  color: #fff8ed;
  padding: 0.82rem 0;
}

.ticker-track,
.ticker-group {
  display: flex;
  align-items: center;
}

.ticker-track {
  width: max-content;
  animation: ticker-scroll 52s linear infinite;
}

.ticker-group {
  flex: 0 0 auto;
  gap: 2rem;
  padding-right: 2rem;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.95rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-group i {
  color: #f5c6aa;
  font-style: normal;
}

@keyframes ticker-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.primary-btn,
.secondary-btn,
.shop-btn,
.promo-btn {
  transition: all 0.25s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f7b500 0%, #e53935 100%);
  color: #fff;
  padding: 0.7rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 35px rgba(229, 57, 53, 0.22);
}

.primary-btn:hover,
.secondary-btn:hover,
.shop-btn:hover,
.promo-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(255, 255, 255, 0.7);
  color: #0f172a;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

.orb-left {
  left: -80px;
  top: 90px;
  width: 240px;
  height: 240px;
  background: rgba(247, 181, 0, 0.26);
}

.orb-right {
  right: -30px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  background: rgba(229, 57, 53, 0.18);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 9999px;
  border: 1px solid rgba(231, 70, 35, 0.18);
  background: rgba(255, 244, 205, 0.9);
  color: #8c3d00;
  padding: 0.7rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.16);
}

.main-card {
  right: 20px;
  top: 30px;
  width: min(100%, 560px);
  height: 560px;
}

.main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.tag-left {
  left: 0;
  top: 50px;
  padding: 1rem 1.1rem;
}

.tag-right {
  right: 12px;
  bottom: 24px;
  padding: 1rem 1.2rem;
}

.floating-tag span,
.panel-kicker,
.product-type,
.eyebrow,
.footer-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

.floating-tag strong,
.footer-title,
.product-name,
.stat-value,
.section-title,
.testimonial h4 {
  color: #111827;
}

.floating-tag span {
  color: #64748b;
}

.floating-tag strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.floating-tag em {
  font-size: 0.8rem;
  color: #f97316;
  font-style: normal;
  font-weight: 800;
}

.feature-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1.8rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.04);
  padding: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.2rem;
  background: rgba(248, 250, 252, 0.8);
  padding: 1rem 1.2rem;
}

.feature-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #f97316;
  font-size: 1.3rem;
}

.feature-item h3 {
  font-weight: 800;
  color: #0f172a;
}

.feature-item p {
  color: #64748b;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.eyebrow {
  color: #f97316;
}

.section-title {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 900;
  font-family: 'Times New Roman', Times, serif;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.stat-card {
  min-width: 0;
  border-left: 2px solid rgba(229, 57, 53, 0.35);
  padding-left: 0.8rem;
}

.stat-value {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.stat-label {
  margin-top: 0.3rem;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.4;
}

h1 {
  font-family: 'Times New Roman', Times, serif;
}

.hero-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn,
.gallery-btn {
  transition: all 0.25s ease;
}

.filter-btn {
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #334155;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #f7b500 0%, #e53935 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(229, 57, 53, 0.22);
}

.product-card {
  position: relative;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-link {
  display: block;
  min-width: 0;
  color: inherit;
}

.product-card-link .product-card {
  height: 100%;
}

.product-card-link:hover .product-card {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.detail-link {
  color: #a44732;
  font-size: 0.77rem;
  font-weight: 800;
}

.detail-main,
.policy-main {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
}

.detail-main {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: #71685f;
  font-size: 0.82rem;
}

.breadcrumb span {
  color: #b6a99d;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.detail-image-frame {
  overflow: hidden;
  aspect-ratio: 0.92;
  border: 1px solid rgba(112, 91, 72, 0.12);
  border-radius: 0.5rem;
  background: #eee8df;
}

.detail-main-image,
.detail-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-main-video[hidden],
.detail-main-image[hidden] {
  display: none;
}

.detail-main-image {
  display: block;
}

.detail-gallery-controls {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.detail-thumbnails {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.4rem;
  scrollbar-width: thin;
}

.gallery-thumbnail {
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  background: #eee8df;
  cursor: pointer;
}

.gallery-thumbnail.is-selected {
  border-color: #c65b42;
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-choice {
  justify-self: start;
  border: 1px solid #c65b42;
  border-radius: 0.3rem;
  background: #fffaf2;
  color: #9c432f;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.video-choice:disabled {
  border-color: #d8d0c7;
  color: #82796f;
  cursor: not-allowed;
}

.image-caption {
  margin-top: 0.75rem;
  color: #71685f;
  font-size: 0.8rem;
}

.detail-copy {
  padding-top: 1rem;
}

.detail-title {
  margin-top: 0.75rem;
  color: #211d19;
  font-family: 'Times New Roman', Times, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
}

.detail-price {
  margin-top: 1rem;
  color: #9c432f;
  font-size: 1.6rem;
  font-weight: 800;
}

.detail-lead {
  margin-top: 1rem;
  color: #514a42;
  font-size: 1rem;
  line-height: 1.8;
}

.color-selector {
  margin-top: 1.5rem;
  border: 0;
  padding: 0;
}

.color-selector legend {
  margin-bottom: 0.75rem;
  color: #342f29;
  font-size: 0.88rem;
  font-weight: 700;
}

.selected-color {
  color: #71685f;
  font-weight: 400;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.55rem;
  border: 1px solid #ddd4c9;
  border-radius: 9999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.68);
  color: #403a34;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.color-option.is-selected,
.color-option:focus-visible {
  border-color: #9c432f;
  outline: 2px solid rgba(156, 67, 47, 0.16);
  outline-offset: 2px;
}

.color-dot {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: var(--swatch-color);
}

.detail-marketplaces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.detail-marketplaces a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.6rem;
  border: 1px solid #ddd4c9;
  border-radius: 0.35rem;
  background: #fff;
  color: #403a34;
  font-size: 0.83rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.detail-marketplaces a:hover {
  border-color: #a44732;
  color: #923e2c;
}

.marketplace-name {
  line-height: 1.2;
}

.marketplace-note {
  color: #756c63;
  font-size: 0.65rem;
  font-weight: 500;
}

.detail-information {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  border-top: 1px solid #ddd4c9;
  padding-top: 2.5rem;
}

.detail-information > div:first-child > p {
  max-width: 48rem;
  margin-top: 0.8rem;
  color: #62594f;
  line-height: 1.7;
}

.description-panel {
  border: 1px solid #ddd4c9;
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.45);
}

.description-table {
  width: 100%;
  border-collapse: collapse;
}

.description-table caption {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  text-align: left;
}

.description-table td {
  padding: 0;
  color: #514a42;
  line-height: 1.8;
}

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

.spec-section h3,
.product-notes h3 {
  margin-bottom: 0.8rem;
  color: #332d27;
  font-size: 1rem;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.2rem;
  color: #514a42;
  line-height: 1.65;
}

.size-list {
  display: grid;
}

.size-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e6dfd6;
  padding: 0.65rem 0;
  color: #514a42;
  font-size: 0.9rem;
}

.size-list dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.product-notes {
  border-left: 3px solid #c65b42;
  padding-left: 1rem;
}

.simple-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 2rem;
  background: #1d1b18;
  padding: 1.5rem max(calc((100vw - 80rem) / 2), 1.25rem);
  color: #ddd5c8;
  font-size: 0.8rem;
}

.simple-footer a:first-child {
  color: #fff8ed;
  font-weight: 800;
}

.simple-footer a:hover {
  color: #f3c4a4;
}

.policy-main {
  min-height: calc(100vh - 150px);
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.policy-content {
  max-width: 54rem;
  padding: 1.5rem 0 2rem;
}

.policy-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
  padding-left: 1.35rem;
  color: #514a42;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-statement {
  margin-top: 1.5rem;
  color: #514a42;
  font-size: 1.05rem;
  line-height: 1.9;
}

.policy-thanks {
  margin-top: 1.5rem;
  color: #514a42;
  line-height: 1.7;
}

.policy-back {
  margin-top: 1.5rem;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.product-card.hidden {
  display: none;
}

.product-image-wrap {
  overflow: hidden;
  border-radius: 1.4rem;
}

.product-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-type {
  color: #64748b;
}

.product-name {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.3;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-badge.hot { background: #fff4d6; color: #b75d00; }
.product-badge.new { background: #fff1f2; color: #be123c; }
.product-badge.trend { background: #fff6d9; color: #ca8a04; }
.product-badge.fresh { background: #fff0dc; color: #b45309; }
.product-badge.limited { background: #fff1f2; color: #e53935; }
.product-badge.popular { background: #fffaf0; color: #b45309; }

.price {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

.meta {
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.85rem;
}

.shop-btn {
  border: none;
  border-radius: 9999px;
  background: #111827;
  color: white;
  padding: 0.78rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.marketplace-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.5rem 0.72rem;
  color: #334155;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.marketplace-links a:hover {
  border-color: #d47b00;
  background: #fff8df;
  color: #8d3d00;
}

.marketplace-links a.recommended {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.marketplace-links a.recommended:hover {
  background: #334155;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 440px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.02);
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide-caption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.slide-caption p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.25rem;
}

.gallery-btn:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(251, 146, 60, 0.5);
}

.feature-panel,
.testimonial {
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.feature-panel {
  padding: 1.5rem;
}

.feature-panel ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-panel li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.feature-panel li::before {
  content: '✦';
  color: #fbbf24;
  font-size: 0.8rem;
  line-height: 1.8;
}

.promo-panel {
  border-radius: 1.8rem;
  background: linear-gradient(135deg, #f7b500 0%, #e53935 100%);
  padding: 1.7rem 1.5rem;
  color: white;
  box-shadow: 0 24px 46px rgba(229, 57, 53, 0.25);
}

.promo-panel p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.promo-panel h3 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
}

.promo-panel span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.promo-btn {
  display: inline-flex;
  margin-top: 1.4rem;
  border-radius: 9999px;
  background: white;
  color: #111827;
  padding: 0.8rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
}

.testimonial p {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #c2410c;
  font-weight: 900;
}

.testimonial h4 {
  font-weight: 800;
}

.testimonial span {
  color: #64748b;
  font-size: 0.82rem;
}

.footer-logo {
  width: 170px;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.footer-title {
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-list {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: #ddd5c8;
  font-size: 0.95rem;
  line-height: 1.5;
  list-style: none;
}

.footer-list a {
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-list a:hover {
  color: #f3c4a4;
}

footer {
  color: #ddd5c8;
}

.footer-description {
  color: #c3b9ab;
}

.landing-footer-grid {
  grid-template-columns: minmax(12rem, 1.35fr) minmax(8rem, 0.7fr) minmax(10rem, 0.9fr) minmax(15rem, 1.2fr);
}

.landing-footer-grid > div {
  min-width: 0;
}

.footer-contact-list li {
  display: grid;
  gap: 0.2rem;
  overflow-wrap: anywhere;
}

.footer-contact-list li > span:first-child {
  color: #f3c4a4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal {
  color: #a99f92;
}

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

footer a:hover {
  color: #f3c4a4;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-visual {
    min-height: 520px;
  }

  .main-card {
    width: min(100%, 480px);
    height: 500px;
  }
}

@media (max-width: 768px) {
  .brand-logo {
    width: 92px;
    height: 46px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .detail-image-frame {
    aspect-ratio: 1.1;
  }

  .main-card {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(100%, 440px);
    height: 420px;
  }

  .tag-left {
    left: 14px;
    top: 18px;
  }

  .tag-right {
    right: 18px;
    bottom: 10px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 80px;
    height: 40px;
  }

  .site-header-inner {
    min-height: 56px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.9rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 0.45rem 1rem;
    font-size: 0.62rem;
  }

  .detail-main,
  .policy-main {
    width: min(100% - 1.5rem, 80rem);
  }

  .detail-title {
    font-size: 2.35rem;
  }

  .gallery-thumbnail {
    flex-basis: 3.8rem;
    width: 3.8rem;
    height: 3.8rem;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-marketplaces {
    gap: 0.5rem;
  }

  .simple-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem 1rem;
  }

  .header-cta {
    padding: 0.55rem 0.85rem;
    font-size: 0.62rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .product-image-wrap img {
    height: 360px;
  }

  .hero-badge {
    letter-spacing: 0.12em;
    font-size: 0.62rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .main-card {
    height: 330px;
  }

  .tag-left,
  .tag-right {
    padding: 0.8rem 0.85rem;
  }

  .floating-tag strong {
    font-size: 1rem;
  }

  .slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Static utility styles keep the layout available without a runtime CSS CDN. */
* { box-sizing: border-box; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xs { max-width: 20rem; }
.w-full { width: 100%; }
.h-2\.5 { height: 0.625rem; }
.w-2\.5 { width: 0.625rem; }
.h-\[440px\] { height: 440px; }
.object-cover { object-fit: cover; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-6 { padding-top: 1.5rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.text-4xl { font-size: 2.25rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-white { color: #fff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-brand-200 { color: #ffe379; }
.text-brand-500 { color: #f7b500; }
.bg-brand-500 { background-color: #f7b500; }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-\[\#f7f4f1\] { background-color: #f7f4f1; }
.bg-\[\#17181b\] { background-color: #17181b; }
.bg-\[\#0e0f12\] { background-color: #0e0f12; }
.border { border: 1px solid #e2e8f0; }
.border-t { border-top: 1px solid; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-800 { border-color: #1e293b; }
.rounded-full { border-radius: 9999px; }
.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.antialiased { -webkit-font-smoothing: antialiased; }
.transition { transition: all 0.25s ease; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.05\] { line-height: 1.05; }
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[-0\.06em\] { letter-spacing: -0.06em; }
.text-\[0\.68rem\] { font-size: 0.68rem; }
.text-\[0\.74rem\] { font-size: 0.74rem; }
.hover\:border-brand-300:hover { border-color: #ffd24a; }
.hover\:text-brand-600:hover { color: #e89a00; }

.hero-title.font-extrabold { font-weight: 700; }

.theme-controls {
  position: relative;
  display: flex;
  flex: 0 0 auto;
}

.theme-toggle {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 67, 47, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: #633a2d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: #fff;
}

.theme-toggle:focus-visible,
.theme-toast-close:focus-visible {
  outline: 2px solid #c65b42;
  outline-offset: 3px;
}

.theme-toast {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 0.5rem);
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 15rem;
  max-width: calc(100vw - 5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  background: #1d1b18;
  color: #fff8ed;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  font-size: 0.85rem;
  line-height: 1.5;
  animation: toast-appear 0.3s ease-out both;
}

.theme-toast[hidden] { display: none; }

:root[data-theme="light"] {
  color-scheme: light;
}

.theme-toast-close {
  flex: 0 0 auto;
  border: 0;
  padding: 0.1rem 0.35rem;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

@keyframes toast-appear {
  from { opacity: 0; translate: 0 0.5rem; }
  to { opacity: 1; translate: 0 0; }
}

:root[data-theme="dark"] {
  color-scheme: dark;

  & body,
  & body.text-slate-800 {
    background-color: #17181b;
    background-image:
      radial-gradient(circle at top left, rgba(247, 181, 0, 0.08), transparent 22%),
      radial-gradient(circle at bottom right, rgba(229, 57, 53, 0.08), transparent 15%);
    color: #e7e5e4;
  }

  & .site-header {
    background: rgba(23, 24, 27, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  & .site-nav,
  & .secondary-btn,
  & .detail-title,
  & .detail-price,
  & .floating-tag strong,
  & .section-title,
  & .testimonial h4,
  & .testimonial p,
  & .feature-item h3,
  & .color-selector legend,
  & .selected-color,
  & .spec-section h3,
  & .product-notes h3 {
    color: #f5f1eb;
  }

  & .nav-link,
  & .breadcrumb,
  & .floating-tag span,
  & .feature-item p,
  & .stat-label,
  & .product-type,
  & .image-caption,
  & .detail-lead,
  & .detail-information > div:first-child > p,
  & .detail-list,
  & .size-list > div,
  & .policy-list,
  & .policy-statement,
  & .policy-thanks {
    color: #c4beb5;
  }

  & .hero-title.text-slate-900,
  & .product-name,
  & .price,
  & .text-slate-800,
  & .text-slate-900 {
    color: #f5f1eb;
  }

  & .hero-badge {
    background: rgba(70, 50, 24, 0.8);
    color: #f6d18a;
  }

  & .theme-toggle {
    border-color: rgba(255, 255, 255, 0.18);
    background: #25262a;
    color: #f5d58a;
  }

  & .theme-toggle:hover {
    background: #35363b;
  }

  & .secondary-btn,
  & .floating-tag,
  & .feature-band,
  & .feature-item,
  & .product-card,
  & .testimonial,
  & .detail-image-frame,
  & .gallery-thumbnail,
  & .color-option,
  & .detail-marketplaces a,
  & .description-panel {
    border-color: rgba(255, 255, 255, 0.13);
    background-color: rgba(37, 38, 42, 0.88);
    color: #e7e5e4;
  }

  & .detail-information {
    border-top-color: rgba(255, 255, 255, 0.15);
  }

  & .size-list > div {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  & .description-panel .section-title {
    color: #f5f1eb;
  }

  & .description-table caption {
    color: #f5f1eb;
  }

  & .description-table td {
    color: #c4beb5;
  }

  & .text-slate-500,
  & .text-slate-600,
  & .text-slate-700 {
    color: #c4beb5;
  }

  & .detail-link {
    color: #f0a181;
  }

  & .bg-\[\#f7f4f1\] {
    background-color: #17181b;
  }
}

@media (max-width: 640px) {
  .theme-toast {
    top: calc(100% + 0.5rem);
    left: 0;
    right: auto;
    width: min(15rem, calc(100vw - 11rem));
    max-width: calc(100vw - 5rem);
  }
}

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:text-lg { font-size: 1.125rem; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:inline-flex { display: inline-flex; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
  .lg\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:text-\[4\.3rem\] { font-size: 4.3rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
