@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #eef6ff;
  --bg-elevated: #e3f0ff;
  --bg-card: #ffffff;
  --border: rgba(59, 130, 246, 0.14);
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-glow: rgba(37, 99, 235, 0.18);
  --gradient-hero: linear-gradient(135deg, #dbeafe 0%, #eef6ff 45%, #e0f2fe 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  --container: 1140px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Promo bar */
.promo-bar {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  color: #fff;
  font-size: 0.85rem;
  padding: 7px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.promo-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-link:hover {
  opacity: 0.9;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 246, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header--merged {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.hero-shell {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-shell .header-inner,
.hero-shell .hero-inner,
.hero-shell .page-hero .container {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo--brand {
  gap: 0;
  flex-shrink: 0;
  min-width: 196px;
  height: 58px;
}

.logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  height: 100%;
}

.logo-line-top {
  display: inline-flex;
  align-items: center;
}

.logo-icon {
  width: 46px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: -6px;
}

.logo-name {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: #e31824;
  letter-spacing: -0.03em;
  line-height: 0.92;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.logo-line-bottom {
  align-self: stretch;
  margin-left: 12px;
  padding: 3px 18px 4px;
  font-size: 0.86rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
  background: #101010;
  border: 3px solid #fff;
  border-radius: 4px;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.nav-dropdown-btn {
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -3px;
  flex-shrink: 0;
  opacity: 0.75;
}

.nav-dropdown.open .nav-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.site-nav > a:hover,
.nav-dropdown-btn:hover {
  color: var(--text);
  background: rgba(37, 99, 235, 0.08);
}

.site-nav > a.active,
.nav-dropdown-btn.active,
.nav-dropdown-menu a.active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.1);
}

.btn-nav-signup {
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.btn-nav-signup:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

.nav-discord {
  color: #7289da !important;
}

.nav-dropdown-menu--wide {
  min-width: 180px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(37, 99, 235, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Inner page hero */
.page-hero {
  padding: 8px 0 56px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 24px;
}

.page-hero-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--accent-hover);
}

.section-action {
  text-align: center;
  margin-top: 8px;
}

.guides-preview .section-action {
  margin-top: 6px;
  margin-bottom: 0;
}

.content-block {
  max-width: 760px;
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content-block p strong {
  color: var(--text);
}

.contact-section {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.category-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

/* Hero */
.hero {
  padding: 0 0 8px;
  position: relative;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.hero-tag,
.hero-badge {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 24px 0 18px;
  flex-wrap: wrap;
}

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

.hero-stat-num {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.hero-stat-num--count {
  min-width: 5.5ch;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
}

.trust-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(90deg, #6d28d9, #9333ea, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Categories */
.categories {
  background: var(--bg-elevated);
}

.hero-shell + main > .section.categories {
  padding-top: 12px;
}

.categories--home-sheet {
  padding-bottom: 20px;
}

.section-divider {
  height: 2px;
  margin: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(147, 197, 253, 0.15) 8%,
    rgba(147, 197, 253, 0.45) 50%,
    rgba(147, 197, 253, 0.15) 92%,
    transparent 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.section-divider + .guides-preview {
  padding-top: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.category-grid-main {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.categories--home-sheet .section-title {
  margin-bottom: 14px;
}

.category-sheet-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.category-sheet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 108px;
  padding: 12px 8px 10px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-sheet-card:hover,
.category-sheet-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  outline: none;
}

.category-sheet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff9800;
  font-size: 1.45rem;
  line-height: 1;
}

.category-sheet-icon img {
  display: block;
  width: 2rem;
  height: 2rem;
}

.category-sheet-icon.category-icon-img {
  background: #ff9800;
  padding: 10px;
  box-sizing: border-box;
}

.category-sheet-icon.category-icon-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-sheet-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.2;
}

.category-card-lg {
  padding: 36px 20px;
}

.category-card-lg .category-icon {
  font-size: 2.5rem;
}

.category-icon {
  font-size: 2rem;
  line-height: 1;
}

.category-icon-img img,
.page-hero-icon img {
  display: block;
  width: 2rem;
  height: 2rem;
}

.page-hero-icon img {
  width: 2.5rem;
  height: 2.5rem;
}

.page-hero-icon.category-icon-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  font-size: 0;
}

.page-hero-icon.category-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.category-card:hover .category-name {
  color: var(--text);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.section-title-left {
  text-align: left;
  margin-bottom: 24px;
}

.about-content .section-title-left {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-content p strong {
  color: var(--text);
}

.check-list {
  margin: 20px 0 24px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.about-content .btn {
  margin-top: 8px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.feature-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* How to */
.how-to {
  background: var(--bg-elevated);
}

.steps-accordion {
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.accordion-item[open] {
  border-color: rgba(59, 130, 246, 0.35);
}

.accordion-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
}

.accordion-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.accordion-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s, border-color 0.2s;
  margin-right: 4px;
}

.accordion-item[open] .accordion-chevron {
  transform: rotate(-135deg);
  border-color: var(--accent);
  margin-top: 4px;
}

.accordion-panel {
  padding: 0 20px 20px 68px;
}

.accordion-panel p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.note-box {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.note-box strong {
  color: var(--accent);
}

/* CTA */
.cta {
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Guides */
.guides-preview {
  background: var(--bg-elevated);
  padding-bottom: 4px;
}

.guides-preview .section-subtitle {
  margin-bottom: 24px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.guides-preview .guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guides-preview .guide-card {
  padding: 20px;
}

.guide-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
}

.guide-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.guide-card-img,
.guide-hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.guide-hero-img {
  max-width: 520px;
  margin-bottom: 20px;
}

.guide-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.guide-image-wrap--shipping {
  background: #1a2740;
}

.guide-image-wrap--oopbuy {
  background: #eceef1;
}

.guide-image-wrap--oopbuy .guide-card-img,
.guide-image-wrap--oopbuy .guide-hero-img {
  max-width: none;
  aspect-ratio: 288 / 170;
  object-fit: contain;
  background: transparent;
}

.guide-image-wrap--coupons {
  background: #f5f5f5;
}

.guide-image-wrap--coupons .guide-card-img,
.guide-image-wrap--coupons .guide-hero-img {
  max-width: none;
  aspect-ratio: 288 / 170;
  object-fit: contain;
  background: transparent;
}

.guide-image-photo {
  position: relative;
  display: block;
  line-height: 0;
  container-type: inline-size;
}

.guide-image-wrap .guide-card-img,
.guide-image-wrap .guide-hero-img {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

.guide-image-wrap .guide-card-img {
  aspect-ratio: 288 / 170;
  object-fit: contain;
  background: transparent;
}

.guide-image-wrap:not(.guide-image-wrap--shipping) .guide-card-img {
  background: #c8ccd4;
}

.guide-image-wrap--shipping .guide-card-img,
.guide-image-wrap--shipping .guide-hero-img {
  max-width: none;
  aspect-ratio: 288 / 170;
  object-fit: contain;
  background: transparent;
}

.guide-image-desk-label {
  position: absolute;
  left: 47%;
  top: 83%;
  width: 48%;
  height: 17%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1px 2px;
  box-sizing: border-box;
  background: #f6bca1;
  text-align: center;
  overflow: visible;
}

.guide-image-desk-label span {
  display: block;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  color: #3a2f24;
  letter-spacing: 0;
  font-size: clamp(5px, 2.6cqw, 10px);
}

.guide-image-desk-label span:last-child {
  font-size: clamp(4.5px, 2.3cqw, 9px);
  color: #3a2f24;
  font-weight: 800;
}

.guide-image-shipping-label {
  position: absolute;
  left: 5%;
  top: 68%;
  width: 90%;
  height: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 2px 6px;
  box-sizing: border-box;
  background: transparent;
  text-align: center;
  overflow: visible;
}

.guide-image-shipping-label span {
  display: block;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
  font-size: clamp(7px, 3.8cqw, 13px);
}

.guide-image-shipping-label span:last-child {
  font-size: clamp(6.5px, 3.3cqw, 11px);
  color: #fff;
  font-weight: 800;
}

.guide-image-oopbuy-label {
  position: absolute;
  left: 41%;
  top: 19%;
  width: 20%;
  height: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.guide-image-oopbuy-label span {
  display: block;
  font-family: "Pacifico", "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
  font-size: clamp(14px, 8.2cqw, 32px);
  line-height: 1;
  color: #dc2626;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.guide-image-coupons-label {
  position: absolute;
  left: 58%;
  top: 1%;
  width: 38%;
  height: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
}

.guide-image-coupons-label span {
  display: block;
  width: 100%;
  font-family: "Pacifico", "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
  font-size: clamp(10px, 5.8cqw, 22px);
  line-height: 1.15;
  color: #dc2626;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}

.guide-card--featured {
  grid-column: span 1;
}

.guide-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.guide-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* Signup CTA */
.signup-cta {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  padding-top: 14px;
  padding-bottom: 28px;
}

.signup-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.signup-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 6px;
  line-height: 1.2;
}

.signup-content > p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.signup-steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.signup-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.signup-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px !important;
}

/* SEO block */
.about-seo {
  background: var(--bg-elevated);
}

.section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.seo-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 800px;
}

.seo-content p strong {
  color: var(--text);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(59, 130, 246, 0.35);
}

.faq-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

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

.faq-question {
  flex: 1;
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg);
  border-color: var(--accent);
  margin-top: 4px;
}

.faq-panel {
  padding: 0 20px 18px;
}

.faq-panel p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Spreadsheet / Products */
.page-hero-compact {
  padding: 8px 0 40px;
}

.spreadsheet-section {
  padding-top: 40px;
}

.spreadsheet-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.search-input,
.filter-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}

.search-input {
  flex: 1;
  min-width: 200px;
}

.filter-select {
  min-width: 160px;
}

.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
}

.product-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  background: var(--bg-elevated);
}

.product-body {
  padding: 16px;
}

.product-options {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.compare-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.compare-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
}

.compare-card h3 {
  margin-bottom: 10px;
}

.compare-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.compare-table th {
  background: var(--bg-card);
  font-weight: 600;
}

.compare-table td {
  color: var(--text-muted);
}

/* Deals */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.deal-card-featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
}

.deal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.deal-card h3 {
  margin-bottom: 10px;
}

.deal-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.check-list-minus li::before {
  content: "−";
  color: #f87171;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  opacity: 0.8;
}

.footer-disclaimer a {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    flex-direction: row;
    position: static;
  }

  .stat-card {
    flex: 1;
  }

  .category-sheet-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-shell .site-nav.open {
    background: rgba(238, 246, 255, 0.98);
    backdrop-filter: blur(12px);
  }

  .site-header--merged {
    position: relative;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(37, 99, 235, 0.05);
    margin-top: 4px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .hero {
    padding: 8px 0 64px;
  }

  .section {
    padding: 56px 0;
  }

  .about-visual {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .signup-steps {
    gap: 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spreadsheet-toolbar {
    flex-direction: column;
  }

  .search-input,
  .filter-select {
    width: 100%;
  }

  .accordion-trigger {
    padding: 16px;
    gap: 12px;
  }

  .accordion-title {
    font-size: 0.92rem;
  }

  .accordion-panel {
    padding: 0 16px 16px 16px;
  }

  .category-sheet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .category-sheet-card {
    min-height: 96px;
    padding: 10px 6px 8px;
  }

  .category-sheet-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .category-sheet-name {
    font-size: 0.72rem;
  }

  .guides-preview .guide-grid {
    grid-template-columns: 1fr;
  }
}
