/* ============================================
   MANJAE HEALTH & WELLNESS - Stylesheet
   Modern dark luxury wellness aesthetic
   ============================================ */

:root {
  /* Colors */
  --bg: #0a0c0f;
  --bg-alt: #0d1015;
  --panel: #12161c;
  --panel-hover: #181d25;
  --text: #f0f2f5;
  --text-muted: #9ca3b0;
  --line: #252d3a;
  --line-light: rgba(37, 45, 58, 0.6);
  
  /* Brand colors - luxe purple */
  --brand: #c4a7ff;
  --brand-dark: #9d7aed;
  --brand-glow: rgba(196, 167, 255, 0.15);
  --brand-glow-strong: rgba(196, 167, 255, 0.25);
  
  /* Accent */
  --accent: #ffd599;
  --accent-glow: rgba(255, 213, 153, 0.15);
  
  /* Success/Error */
  --success: #7dd3a8;
  --error: #ff8a8a;
  
  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --container: 1140px;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--brand);
}

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

/* ============================================
   Utilities
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 24px;
  top: 24px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Background Effects
   ============================================ */
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.bg-glow-1 {
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--brand-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.bg-glow-2 {
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(3%, 5%); }
  66% { transform: translate(-3%, 2%); }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-light);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px var(--brand-glow-strong);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
}

.brand-text span {
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.nav-toggle:hover {
  border-color: var(--brand);
  background: var(--panel-hover);
}

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

.site-nav a {
  padding: 10px 16px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.site-nav a:hover {
  color: var(--text);
  background: var(--panel);
}

.site-nav a.btn {
  color: var(--bg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: var(--bg);
  box-shadow: 0 4px 20px var(--brand-glow-strong);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--brand-glow-strong);
  color: var(--bg);
}

.btn-ghost {
  background: rgba(18, 22, 28, 0.6);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--panel);
  color: var(--text);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--brand-glow);
  border: 1px solid rgba(196, 167, 255, 0.2);
  border-radius: 100px;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.tm {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--text-muted);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.bullet {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.bullet li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 50%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.micro {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.micro a:hover {
  color: var(--brand);
}

/* Hero Card */
.hero-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(10, 12, 15, 0.5);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.stat:hover {
  border-color: var(--brand);
  background: var(--brand-glow);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: var(--radius-sm);
  color: var(--bg);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-k {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-v {
  font-weight: 600;
  color: var(--text);
}

.service-area-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 213, 153, 0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 8px;
}

.badge-icon {
  font-size: 1.125rem;
}

/* ============================================
   Sections
   ============================================ */
.section {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.inline-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ============================================
   Cards
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-glow);
  border: 1px solid rgba(196, 167, 255, 0.2);
  border-radius: var(--radius);
  color: var(--brand);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Service Grid
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--duration) var(--ease);
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 6px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.service-badge.popular {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-color: transparent;
  color: var(--bg);
}

.service h3 {
  margin-bottom: 10px;
}

.service > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  padding: 6px 12px;
  background: rgba(10, 12, 15, 0.5);
  border: 1px solid var(--line-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pill.highlight {
  background: var(--brand-glow);
  border-color: rgba(196, 167, 255, 0.2);
  color: var(--brand);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--brand);
  font-size: 0.9375rem;
}

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

/* ============================================
   Testimonials
   ============================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--duration) var(--ease);
}

.quote:hover {
  border-color: var(--brand);
}

.quote-stars {
  color: var(--accent);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.quote blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}

.quote figcaption {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.thumb:hover {
  border-color: var(--brand);
  border-style: solid;
  color: var(--text);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(157, 122, 237, 0.9), rgba(196, 167, 255, 0.9));
  color: var(--bg);
  font-weight: 700;
  opacity: 0;
  transform: scale(1.1);
  transition: all var(--duration) var(--ease);
}

.thumb:hover .thumb-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Gallery Page Specific */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.gallery-item-image {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line-light);
}

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

.gallery-item-caption {
  padding: 16px 20px;
}

.gallery-item-caption h4 {
  margin-bottom: 4px;
}

.gallery-item-caption p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 20px;
}

.required {
  color: var(--brand);
}

.hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3b0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.check input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--brand);
}

.check span {
  font-weight: 400;
  color: var(--text-muted);
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-card h3 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.contact-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--text);
}

.contact-item a:hover {
  color: var(--brand);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.fineprint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-col {
  max-width: 280px;
}

.footer-brand {
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}

.social-link:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--duration) var(--ease);
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  text-align: center;
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--line-light);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item:hover {
  border-color: rgba(196, 167, 255, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.faq-question:hover {
  background: var(--panel-hover);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ============================================
   Shop
   ============================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 40px var(--brand-glow);
}

.product-image {
  aspect-ratio: 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line-light);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
}

/* ============================================
   Content Pages (Privacy, Refund, About)
   ============================================ */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.content-page h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  color: var(--text-muted);
  line-height: 1.8;
}

.content-page ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin: 16px 0;
}

.content-page li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  
  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  
  .bullet {
    display: inline-block;
    text-align: left;
  }
  
  .cta-row {
    justify-content: center;
  }
  
  .cards,
  .service-grid,
  .quotes,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-brand-col {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  
  .site-nav.is-open {
    display: flex;
  }
  
  .site-nav a {
    padding: 14px 16px;
    text-align: center;
  }
  
  .hero {
    padding: 48px 0 40px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .cards,
  .service-grid,
  .quotes,
  .shop-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .field-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-col {
    grid-column: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  
  .btn-lg {
    padding: 14px 24px;
    width: 100%;
  }
  
  .cta-row {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Elementor starter page styles imported from original pages
   ============================================ */
.manjae-elementor-content > .page-header:first-child,
.manjae-elementor-content > .section:first-child {
  margin-top: 0;
}

/* services page style block 1 */
.service-detail {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .service-detail-badge {
      display: inline-block;
      padding: 6px 14px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    
    .service-detail-badge.popular {
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      border-color: transparent;
      color: var(--bg);
    }
    
    .service-detail h2 {
      margin-bottom: 16px;
    }
    
    .service-detail-lead {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    
    .service-detail-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 32px;
    }
    
    .feature {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }
    
    .feature h4 {
      color: var(--brand);
      margin-bottom: 16px;
    }
    
    .feature ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .feature li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    
    .feature li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 700;
    }
    
    .feature li strong {
      color: var(--text);
    }

/* shop page style block 1 */
.shop-notice {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--panel);
      border: 1px dashed var(--line);
      border-radius: var(--radius);
      margin-top: 40px;
    }
    
    .shop-notice svg {
      flex-shrink: 0;
      color: var(--text-muted);
    }
    
    .shop-notice p {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin: 0;
    }
    
    .shop-notice strong {
      color: var(--text);
    }

/* faq page style block 1 */
.info-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    
    .info-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      text-align: center;
      transition: all var(--duration) var(--ease);
    }
    
    .info-card:hover {
      transform: translateY(-4px);
      border-color: var(--brand);
    }
    
    .info-card-icon {
      font-size: 2.5rem;
      margin-bottom: 16px;
    }
    
    .info-card h3 {
      margin-bottom: 12px;
      font-size: 1.125rem;
    }
    
    .info-card p {
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    
    @media (max-width: 1024px) {
      .info-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .info-cards {
        grid-template-columns: 1fr;
      }
    }

/* about page style block 1 */
.about-content {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .about-intro {
      text-align: center;
      margin-bottom: 48px;
    }
    
    .about-intro h2 {
      margin-bottom: 20px;
    }
    
    .about-intro .lead {
      font-size: 1.25rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .about-block {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    
    .about-block h3 {
      color: var(--brand);
      margin-bottom: 12px;
    }
    
    .about-block p {
      color: var(--text-muted);
      line-height: 1.7;
    }
    
    .service-areas {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    
    .area-badge {
      padding: 12px 24px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 100px;
      font-weight: 600;
      color: var(--text);
      transition: all var(--duration) var(--ease);
    }
    
    .area-badge:hover {
      border-color: var(--brand);
      background: var(--brand-glow);
    }
    
    .area-note {
      text-align: center;
      color: var(--text-muted);
    }
    
    .area-note a {
      color: var(--brand);
    }
    
    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

/* gallery page style block 1 */
.gallery-notice {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: var(--accent-glow);
      border: 1px solid rgba(255, 213, 153, 0.2);
      border-radius: var(--radius);
      margin-bottom: 40px;
    }
    
    .gallery-notice svg {
      flex-shrink: 0;
      color: var(--accent);
    }
    
    .gallery-notice p {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin: 0;
    }
    
    .gallery-notice strong {
      color: var(--accent);
    }
    
    .gallery-placeholder-note {
      margin-top: 40px;
      padding: 20px 24px;
      background: var(--panel);
      border: 1px dashed var(--line);
      border-radius: var(--radius);
      text-align: center;
    }
    
    .gallery-placeholder-note p {
      color: var(--text-muted);
      margin: 0;
    }
    
    .gallery-placeholder-note strong {
      color: var(--text);
    }

/* contact page style block 1 */
.contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 32px;
      align-items: start;
    }
    
    .form-title {
      margin-bottom: 8px;
    }
    
    .form-subtitle {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-bottom: 24px;
    }
    
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    
    .contact-card h3 {
      margin-bottom: 16px;
    }
    
    .contact-card p {
      color: var(--text-muted);
      font-size: 0.9375rem;
      margin-bottom: 16px;
    }
    
    .hours-list {
      margin-bottom: 12px;
    }
    
    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--line-light);
      font-size: 0.9375rem;
    }
    
    .hours-row:last-child {
      border-bottom: none;
    }
    
    .hours-row span:first-child {
      color: var(--text-muted);
    }
    
    .hours-note {
      font-size: 0.8125rem;
      color: var(--text-muted);
      font-style: italic;
    }
    
    @media (max-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

/* privacy page style block 1 */
.legal-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .legal-block {
      margin-bottom: 40px;
    }
    
    .legal-block h2 {
      font-size: 1.5rem;
      color: var(--brand);
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }
    
    .legal-block p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    
    .legal-block ul {
      color: var(--text-muted);
      line-height: 1.8;
      padding-left: 24px;
      margin-bottom: 16px;
    }
    
    .legal-block li {
      margin-bottom: 8px;
    }
    
    .legal-block a {
      color: var(--brand);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    
    .legal-block a:hover {
      color: var(--brand-light);
    }

/* refund page style block 1 */
.legal-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .policy-notice {
      background: var(--brand-glow);
      border: 1px solid var(--brand);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-bottom: 40px;
    }
    
    .policy-notice p {
      color: var(--text);
      margin: 0;
      line-height: 1.7;
    }
    
    .legal-block {
      margin-bottom: 40px;
    }
    
    .legal-block h2 {
      font-size: 1.5rem;
      color: var(--brand);
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }
    
    .legal-block h3 {
      font-size: 1.125rem;
      color: var(--text);
      margin-top: 24px;
      margin-bottom: 12px;
    }
    
    .legal-block p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    
    .legal-block ul {
      color: var(--text-muted);
      line-height: 1.8;
      padding-left: 24px;
      margin-bottom: 16px;
    }
    
    .legal-block li {
      margin-bottom: 8px;
    }
    
    .legal-block a {
      color: var(--brand);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    
    .legal-block a:hover {
      color: var(--brand-light);
    }

/* men page style block 1 */
.service-detail {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .service-detail-badge {
      display: inline-block;
      padding: 6px 14px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    
    .service-detail-badge.popular {
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      border-color: transparent;
      color: var(--bg);
    }
    
    .service-detail h2 {
      margin-bottom: 16px;
    }
    
    .service-detail-lead {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    
    .service-detail-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 32px;
    }
    
    .feature {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
    }
    
    .feature h4 {
      color: var(--brand);
      margin-bottom: 16px;
    }
    
    .feature ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .feature li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    
    .feature li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 700;
    }
    
    .feature li strong {
      color: var(--text);
    }


/* ============================================
   Price list and image sections
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
}

.service-page-hero .split-section {
  text-align: left;
}

.manjae-image-frame,
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  margin: 0;
}

.manjae-image-frame img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.manjae-image-frame figcaption,
.image-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 700;
}

.service-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.price-columns.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.service-menu-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  width: 100%;
}

.service-menu-stack .pricing-table-wrap {
  width: 100%;
  overflow: visible;
}

.service-menu-stack .pricing-table {
  min-width: 0;
}

.pricing-table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow-x: auto;
}

.pricing-table-wrap h3 {
  margin-bottom: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  color: var(--brand);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table td:nth-child(2) {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
}

.service-note {
  margin: 28px 0;
  padding: 20px 24px;
  border: 1px solid rgba(255, 213, 153, 0.24);
  border-radius: var(--radius);
  background: var(--accent-glow);
  color: var(--text-muted);
}

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

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.image-card {
  aspect-ratio: 4 / 3;
}

.gender-grid.card,
.gender-grid .card {
  min-height: 100%;
}

@media (max-width: 1024px) {
  .split-section,
  .price-columns,
  .image-card-grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero .split-section {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .split-section > *,
  .price-columns > *,
  .service-menu-stack > * {
    min-width: 0;
  }

  .pricing-table-wrap {
    min-width: 0;
    max-width: 100%;
    padding: 18px;
    overflow: visible;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .pricing-table tr:last-child {
    border-bottom: 0;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(88px, 0.34fr) minmax(0, 1fr);
    gap: 12px;
    padding: 5px 0;
    border: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pricing-table td::before {
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .pricing-table td:nth-child(1)::before {
    content: "Service";
  }

  .pricing-table td:nth-child(2)::before {
    content: "Price";
  }

  .pricing-table td:nth-child(3)::before {
    content: "What's Included";
  }

  .manjae-image-frame img,
  .image-card img {
    min-height: 220px;
  }
}

/* ============================================
   MANJAE 1.7 brand and content corrections
   These rules retain the original dark luxury layout.
   ============================================ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.header-row {
  position: relative;
  max-width: 1440px;
  padding: 10px 24px;
}

.brand {
  flex: 0 0 auto;
  width: 220px;
  height: 60px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.footer-brand {
  width: 260px;
  height: 78px;
  max-width: 100%;
}

.site-nav a {
  padding: 10px 11px;
  font-size: 0.875rem;
}

.site-nav a.btn:hover,
.site-nav a.btn:focus-visible {
  color: var(--bg);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.manjae-home-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1283 / 1053;
  object-fit: contain;
  object-position: center;
}

.manjae-home-gallery .thumb {
  aspect-ratio: 4 / 5;
  min-height: 220px;
  border-style: solid;
}

.manjae-home-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manjae-creed {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.creed-inner {
  max-width: 900px;
}

.creed-inner h2 {
  margin-bottom: 24px;
}

.creed-inner p:not(.section-eyebrow) {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.85;
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.service-nav-grid .btn {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  text-align: center;
}

.services-jump-nav {
  margin-top: 32px;
}

.home-service-preview {
  margin-top: 44px;
}

.home-service-preview .service {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-service-preview .link {
  margin-top: auto;
}

.home-services-cta {
  margin-top: 36px;
}

.service-detail-content > .price-columns,
.service-detail-content > .pricing-table-wrap {
  margin-top: 28px;
}

.service-detail-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.bodies-tagline {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-grid > *,
.split-section > *,
.price-columns > * {
  min-width: 0;
}

.contact-item {
  flex-wrap: wrap;
}

.contact-item a,
.contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav a {
    padding: 12px 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .manjae-home-hero-image img {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .brand {
    width: 170px;
    height: 50px;
  }

  .service-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-nav-grid .btn {
    min-width: 0;
    min-height: 58px;
    padding: 10px 8px;
    white-space: normal;
  }
}

/* ============================================
   Google reviews on the MANJAE homepage
   ============================================ */
.manjae-google-reviews {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #050505;
}

.manjae-google-reviews-head {
  display: flex;
  justify-content: center;
  margin: 0 auto 34px;
  text-align: center;
}

.manjae-google-reviews .section-head {
  max-width: 760px;
}

.manjae-google-reviews .section-head h2 {
  color: #fff;
}

.manjae-google-reviews .section-head p:not(.section-eyebrow) {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.manjae-google-reviews-widget .manjae-google-widget-output {
  width: 100%;
  min-width: 0;
}

.manjae-google-reviews-widget .ti-widget {
  max-width: 100%;
}

.manjae-google-reviews-carousel {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.manjae-google-review {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  min-height: 194px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: #262626;
  scroll-snap-align: start;
}

.manjae-google-review-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.manjae-google-review-avatar,
.manjae-google-review-initials {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.manjae-google-review-avatar {
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
}

.manjae-google-review-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #573b9c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.manjae-google-review-author {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manjae-google-review-age {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6875rem;
}

.manjae-google-mark {
  margin-left: auto;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.manjae-google-review-stars {
  color: #ffbf00;
  font-size: 0.875rem;
  letter-spacing: 0;
}

.manjae-google-review-text {
  flex: 1;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: pre-line;
}

.manjae-google-review.is-expanded .manjae-google-review-text {
  display: block;
  overflow: visible;
}

.manjae-google-review-expand {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  font: inherit;
  font-size: 0.6875rem;
  text-align: left;
}

.manjae-google-review-expand:hover,
.manjae-google-review-expand:focus-visible {
  color: #fff;
}

.manjae-google-reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.manjae-google-reviews-track::-webkit-scrollbar {
  display: none;
}

.manjae-google-carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.manjae-google-carousel-control:hover,
.manjae-google-carousel-control:focus-visible {
  color: #fff;
}

.manjae-google-carousel-control:disabled {
  cursor: default;
  opacity: 0.22;
}

.manjae-google-link-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: #262626;
}

.manjae-google-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-glow);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.manjae-google-link-copy {
  display: grid;
  gap: 5px;
}

.manjae-google-link-copy strong {
  color: var(--text);
  font-size: 1rem;
}

.manjae-google-link-copy span {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .manjae-google-reviews {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .manjae-google-reviews-carousel {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 6px;
  }

  .manjae-google-carousel-control {
    width: 30px;
    height: 30px;
    font-size: 1.65rem;
  }

  .manjae-google-review {
    flex-basis: 88%;
    min-height: 198px;
  }

  .manjae-google-reviews-track {
    gap: 12px;
  }

  .manjae-google-link-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .manjae-google-link-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}
