/* ===========================
   BASE & RESET
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f5f0eb;
  --dark: #0a0a0a;
  --gray: #888;
  --amazon-orange: #ff9900;
  --amazon-dark: #232f3e;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }


/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 40%, rgba(0,0,0,0.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(180,60,100,0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 2;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-sub strong {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-btn i { animation: bounce 1.5s ease infinite; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}


/* ===========================
   BRAND NAV
=========================== */
.brand-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 1rem;
  justify-content: center;
}

.nav-inner::-webkit-scrollbar { display: none; }

.nav-item {
  display: block;
  padding: 0.9rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ===========================
   WHY SECTION
=========================== */
.why-section {
  padding: 7rem 2rem;
  background: #080808;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.section-lead {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.025);
  position: relative;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  user-select: none;
}

.why-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.why-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  font-weight: 300;
}

.why-card p strong {
  color: var(--gold-light);
  font-weight: 500;
}


/* ===========================
   BRAND SECTIONS
=========================== */
.brand-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  z-index: 1;
  pointer-events: none;
}

.brand-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-section.reverse .brand-container {
  direction: rtl;
}

.brand-section.reverse .brand-info,
.brand-section.reverse .brand-media {
  direction: ltr;
}


/* ===========================
   MODEL IMAGES
=========================== */
.brand-media {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.model-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(201,168,76,0.2);
  background: #111;
}

.model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  display: block;
}

.brand-section:hover .model-img {
  transform: scale(1.04);
}

.model-frame-deco {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%),
    linear-gradient(to right, rgba(201,168,76,0.08) 0%, transparent 30%);
  pointer-events: none;
}

.brand-logo-badge {
  padding: 1.2rem 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.brand-logo-badge.luxury {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
}

.logo-badge-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.ck-logo { max-height: 32px; }

.luxury-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.pj-logo-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
}

.vs-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}


/* ===========================
   BRAND INFO
=========================== */
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.brand-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  margin-bottom: -0.8rem;
}

.brand-origin {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
}

.brand-tagline {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}

.brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.95;
  font-weight: 300;
}

.brand-desc strong {
  color: var(--gold-light);
  font-weight: 500;
}


/* ===========================
   SOUVENIR RECOMMEND
=========================== */
.souv-recommend {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
}

.souv-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.souv-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.souv-item {
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.04em;
  background: rgba(201,168,76,0.05);
}


/* ===========================
   PRICE & FLAGS
=========================== */
.brand-price-range {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.035);
  border-left: 3px solid rgba(201,168,76,0.4);
  flex-wrap: wrap;
}

.price-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-text {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
  margin-left: auto;
}

.affili-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.65rem;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.affili-tag.affili-mid {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
}

.affili-tag.affili-top {
  background: rgba(255,215,0,0.15);
  color: #ffd700;
  border-color: rgba(255,215,0,0.4);
}

/* 国フラグ */
.country-flags {
  padding: 0.8rem 0;
}

.flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flag-item {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 2px;
}

.flag-item.hot {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.8);
}

.flag-item em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
}


/* ===========================
   AMAZON BUTTON
=========================== */
.amazon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: var(--amazon-orange);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.amazon-btn:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.35);
}

.amazon-btn.gold {
  background: var(--gold);
}

.amazon-btn.gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.amazon-btn i { font-size: 1.1rem; }


/* ===========================
   SCENE SECTION
=========================== */
.scene-section {
  padding: 7rem 2rem;
  background: #060606;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.scene-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.scene-card {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}

.scene-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.scene-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
}

.scene-emoji {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.scene-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.scene-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.scene-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.scene-brand.vs   { background: rgba(180,20,80,0.25); color: #ff7eb3; border: 1px solid rgba(180,20,80,0.4); }
.scene-brand.ck   { background: rgba(200,200,200,0.1); color: #ddd; border: 1px solid rgba(200,200,200,0.25); }
.scene-brand.triumph { background: rgba(180,100,20,0.2); color: #e8a84c; border: 1px solid rgba(180,100,20,0.35); }
.scene-brand.wacoal { background: rgba(20,80,180,0.2); color: #7ab0ff; border: 1px solid rgba(20,80,180,0.35); }
.scene-brand.lp   { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.35); }
.scene-brand.chantelle { background: rgba(120,20,180,0.2); color: #c87aff; border: 1px solid rgba(120,20,180,0.35); }
.scene-brand.pj   { background: rgba(255,100,150,0.15); color: #ff8cb3; border: 1px solid rgba(255,100,150,0.3); }

.scene-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  font-weight: 300;
}


/* ===========================
   COMPARISON TABLE
=========================== */
.comparison-section {
  background: #0a0a0a;
  padding: 7rem 2rem;
}

.comparison-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 750px;
}

.comparison-table thead {
  background: rgba(201,168,76,0.08);
}

.comparison-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.comparison-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  vertical-align: middle;
}

.comparison-table tbody tr:hover {
  background: rgba(201,168,76,0.04);
}

.comparison-table td:first-child { color: var(--white); font-weight: 500; }

.stars { color: var(--gold); letter-spacing: 0.05em; font-size: 0.75rem; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.badge.gift    { background: rgba(180,20,80,0.2); color: #ff7eb3; border: 1px solid rgba(180,20,80,0.35); }
.badge.safe    { background: rgba(200,200,200,0.1); color: #ccc; border: 1px solid rgba(200,200,200,0.2); }
.badge.practical { background: rgba(180,100,20,0.2); color: #e8a84c; border: 1px solid rgba(180,100,20,0.3); }
.badge.japan   { background: rgba(20,80,180,0.2); color: #7ab0ff; border: 1px solid rgba(20,80,180,0.3); }
.badge.luxury  { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.35); }
.badge.rare    { background: rgba(120,20,180,0.2); color: #c87aff; border: 1px solid rgba(120,20,180,0.3); }
.badge.kawaii  { background: rgba(255,100,150,0.15); color: #ff8cb3; border: 1px solid rgba(255,100,150,0.25); }

.affili.high     { color: #e8c97a; font-weight: 600; }
.affili.veryhigh { color: #ffd700; font-weight: 700; }
.affili.mid      { color: rgba(255,255,255,0.5); }


/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #040404;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem 2rem;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 0.5rem;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
}


/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* スクロールアニメーション用 */
.brand-info,
.brand-media {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.brand-info.visible,
.brand-media.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-media { transition-delay: 0.1s; }

.brand-section.reverse .brand-media { transition-delay: 0s; }
.brand-section.reverse .brand-info  { transition-delay: 0.1s; }


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .brand-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .brand-section.reverse .brand-container { direction: ltr; }

  .model-image-frame { aspect-ratio: 16/9; }
  .model-img { object-position: center 20%; }
}

@media (max-width: 640px) {
  .why-grid   { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }

  .nav-inner { justify-content: flex-start; padding: 0 0.3rem; }
  .nav-item  { padding: 0.8rem 0.8rem; font-size: 0.62rem; }

  .brand-container { padding: 3rem 1rem; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }

  .amazon-btn {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }
}

.brand-section + .brand-section {
  border-top: 1px solid rgba(201,168,76,0.06);
}
