/* Luxury Dark & Gold Design System - Royal Honey Reviews */
:root {
  --bg-dark: #0a0c10;
  --bg-card: #131722;
  --bg-card-hover: #1c2232;
  --bg-elevated: #181e2e;
  --border-gold: rgba(245, 158, 11, 0.25);
  --border-gold-bright: rgba(245, 158, 11, 0.6);
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --gold-glow: 0 0 25px rgba(245, 158, 11, 0.35);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  --star-gold: #f59e0b;
  --green-trust: #00b67a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

/* Strict Zero Mobile Horizontal Overflow Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #ffffff;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Announcement Bar */
.top-announcement {
  background: var(--gold-gradient);
  color: #000000;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.top-announcement a {
  color: #000000;
  text-decoration: underline;
}

/* Modular Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--gold-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #000000 !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--gold-glow);
  transition: var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.55);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.12) 0%, rgba(10, 12, 16, 1) 70%);
  text-align: center;
  position: relative;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 182, 122, 0.12);
  border: 1px solid rgba(0, 182, 122, 0.3);
  color: #00b67a;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--bg-card);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
}

.stars {
  color: var(--star-gold);
  letter-spacing: 2px;
}

/* Call to Action Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #000000 !important;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.6);
  color: #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-light) !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.05rem 2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: #ffffff !important;
  border-color: var(--gold-primary);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Sections & Cards */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--bg-elevated);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-title span {
  color: var(--gold-primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

/* Luxury Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Trustpilot Review Cards */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green-trust);
  font-size: 0.8rem;
  font-weight: 600;
}

.review-body {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
}

/* Content Box & Tables */
.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.content-box h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
}

.content-box h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
}

.content-box p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content-box ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-box ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.content-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-weight: 900;
}

/* Custom Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.custom-table th {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-gold);
}

.custom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 0.95rem;
}

.custom-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ Accordion UI */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Sticky Bottom CTA for High Conversions */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 12, 16, 0.96);
  border-top: 1px solid var(--border-gold-bright);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(10px);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold-light);
}

.sticky-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 6px;
}

/* Footer Styling */
.site-footer {
  background: #06080b;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.8rem;
  color: #8892b0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Mobile Responsive Adjustments & Overflow Safeguard */
@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
  }
  .main-nav.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sticky-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .sticky-bottom-cta {
    padding: 0.6rem 0.8rem;
  }
}
