/* ============================================================
   Hair Trail — Premium Beauty Homepage Stylesheet
   Floral Pink Palette | EEAT-Optimized | AdSense-Ready
   Auto-installs as homepage on theme activation — no setup needed
   ============================================================ */

:root {
  --ht-pink:        #F7649A;
  --ht-pink-deep:   #D4276F;
  --ht-dark:        #2D0A1E;
  --ht-cream:       #FFF5F9;
  --ht-blush:       #FFE0EF;
  --ht-muted:       #F4A8C8;
  --ht-text:        #1E0A14;
  --ht-text-light:  #7A3D5A;
  --ht-white:       #FFFFFF;
  --ht-border:      #FFCCE3;
  --ht-shadow:      rgba(212,39,111,0.10);
  --ht-font-head:   'Playfair Display', 'Georgia', serif;
  --ht-font-body:   'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --ht-radius:      14px;
  --ht-radius-sm:   8px;
  --ht-transition:  0.3s ease;
  --ht-max:         1200px;
}

.ht-homepage * { box-sizing: border-box; }
.ht-homepage { font-family: var(--ht-font-body); color: var(--ht-text); background: var(--ht-cream); }
.ht-homepage img { max-width: 100%; height: auto; display: block; }
.ht-homepage a { text-decoration: none; color: inherit; }
.ht-homepage ul { list-style: none; margin: 0; padding: 0; }

.ht-container { max-width: var(--ht-max); margin: 0 auto; padding: 0 24px; }
.ht-section    { padding: 60px 0; }
.ht-section-sm { padding: 40px 0; }

.ht-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ht-pink-deep); margin-bottom: 10px;
}

/* ── Logo ── */
.ht-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: transform 0.2s ease; }
.ht-logo:hover { transform: scale(1.02); }
.ht-logo-name    { font-family: var(--ht-font-head); font-size: 22px; font-weight: 700; color: var(--ht-pink-deep); letter-spacing: -0.5px; line-height: 1.1; display: block; }
.ht-logo-tagline { font-size: 9px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: #8B7B8C; line-height: 1; display: block; }

/* ── Topbar ── */
.ht-topbar { background: var(--ht-dark); color: var(--ht-white); text-align: center; padding: 8px 24px; font-size: 12px; font-weight: 500; letter-spacing: 0.4px; }
.ht-topbar a { color: var(--ht-pink); font-weight: 700; text-decoration: underline; }

/* ── Navbar ── */
.ht-navbar { background: var(--ht-white); border-bottom: 1px solid var(--ht-border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(212,39,111,0.08); backdrop-filter: blur(10px); }
.ht-navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; padding: 0 32px; max-width: 1400px; margin: 0 auto; }
.ht-nav-links { display: flex; gap: 36px; font-size: 14px; font-weight: 600; margin-left: auto; }
.ht-nav-links a { 
  position: relative;
  color: #2D1B2E; 
  transition: color var(--ht-transition); 
  padding: 8px 0;
  letter-spacing: -0.2px;
}
.ht-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F7649A, #D4276F);
  transition: width 0.3s ease;
}
.ht-nav-links a:hover { 
  color: #D4276F; 
}
.ht-nav-links a:hover::after {
  width: 100%;
}

/* ── Buttons ── */
.ht-btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all var(--ht-transition); cursor: pointer; border: 2px solid transparent; letter-spacing: 0.3px; }
.ht-btn-primary { background: linear-gradient(135deg, #F7649A, #D4276F); color: var(--ht-white); box-shadow: 0 4px 16px rgba(212,39,111,0.3); }
.ht-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,39,111,0.4); background: linear-gradient(135deg, #FF74A8, #E03880); }
.ht-btn-outline { background: transparent; color: #D4276F; border-color: #D4276F; font-weight: 600; }
.ht-btn-outline:hover { background: #D4276F; color: var(--ht-white); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(212,39,111,0.2); }
.ht-btn-newsletter { background: linear-gradient(135deg, var(--ht-pink), var(--ht-pink-deep)); color: var(--ht-white); border: none; padding: 10px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 16px rgba(212,39,111,0.3); transition: all var(--ht-transition); }
.ht-btn-newsletter:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,39,111,0.45); }

/* ── Hero ── */
.ht-hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #FFF9FC 0%, #FFF5F9 50%, #FFE8F3 100%); padding: 50px 0; }
.ht-hero-bg { display: none; }
.ht-hero:hover .ht-hero-bg { display: none; }
.ht-hero-overlay { display: none; }
.ht-hero-glow-1 { display: none; }
.ht-hero-glow-2 { display: none; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-30px); } }
.ht-hero .ht-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; min-height: 380px; }
.ht-hero-content { position: relative; z-index: 2; max-width: 100%; padding: 0; }
.ht-hero-label { display: inline-block; background: transparent; color: #F7649A; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0; margin-bottom: 14px; box-shadow: none; }
.ht-hero h1 { font-family: var(--ht-font-head); font-size: clamp(32px, 4.5vw, 48px); font-weight: 700; line-height: 1.2; color: #2D1B2E; margin: 0 0 14px; letter-spacing: -0.8px; text-align: left; }
.ht-hero h1 em { font-style: normal; background: linear-gradient(135deg, #F7649A 0%, #E8578C 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.ht-hero p { font-size: 15px; line-height: 1.65; color: #6B5B6C; margin: 0 0 22px; max-width: 100%; font-weight: 400; text-align: left; }
.ht-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
.ht-hero-stats { display: flex; gap: 28px; margin-top: 28px; padding-top: 0; border-top: none; }
.ht-hero-stat-num { display: block; font-family: var(--ht-font-head); font-size: 15px; font-weight: 700; background: linear-gradient(135deg, #F7649A, #D4276F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.ht-hero-stat-lbl { display: block; font-size: 10px; color: #8B7B8C; margin-top: 4px; letter-spacing: 0.3px; font-weight: 500; text-transform: uppercase; }
.ht-hero-image-panel { position: relative; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; z-index: 2; }
.ht-hero-collage-main { grid-column: 1; grid-row: 1 / 3; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 24px rgba(212,39,111,0.1); background: white; border: 2px solid white; }
.ht-hero-collage-main img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }
.ht-hero-collage-small { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(212,39,111,0.08); background: white; border: 2px solid white; position: relative; }
.ht-hero-collage-small img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 140px; }
.ht-hero-collage-small:first-of-type { grid-column: 2; grid-row: 1; }
.ht-hero-collage-small:last-of-type { grid-column: 2; grid-row: 2; }
.ht-hero-collage-badge { position: absolute; bottom: 10px; left: 10px; right: 10px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 10px; padding: 10px 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.ht-hero-collage-badge-content { display: flex; align-items: center; gap: 8px; }
.ht-hero-collage-badge-icon { width: 28px; height: 28px; background: linear-gradient(135deg, #FFE0EF, #FFB8DD); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.ht-hero-collage-badge strong { display: block; font-size: 12px; font-weight: 700; color: #2D1B2E; line-height: 1.2; }
.ht-hero-collage-badge span { font-size: 9px; color: #8B7B8C; display: block; margin-top: 2px; font-weight: 500; }
/* Hide old card styles */
.ht-hero-img-card { display: none; }
.ht-hero-img-badge { display: none; }

/* Decorative floral elements */
.ht-hero::before { content: ''; position: absolute; top: 30px; left: 5%; width: 120px; height: 120px; background: radial-gradient(circle, rgba(255,184,221,0.4) 0%, transparent 70%); border-radius: 50%; filter: blur(20px); z-index: 1; }
.ht-hero::after { content: ''; position: absolute; bottom: 50px; right: 5%; width: 100px; height: 100px; background: radial-gradient(circle, rgba(247,100,154,0.3) 0%, transparent 70%); border-radius: 50%; filter: blur(20px); z-index: 1; }

/* ── Trust Bar ── */
.ht-trustbar { background: var(--ht-white); border-top: 1px solid var(--ht-border); border-bottom: 1px solid var(--ht-border); padding: 18px 0; }
.ht-trustbar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.ht-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ht-text-light); }
.ht-trust-icon { width: 32px; height: 32px; background: var(--ht-blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ht-trust-icon svg { stroke: var(--ht-pink-deep); }

/* ── Topic Cards ── */
.ht-topics { background: var(--ht-cream); }
.ht-topics-header { text-align: center; margin-bottom: 36px; }
.ht-topics-header h2 { font-family: var(--ht-font-head); font-size: clamp(26px,3.8vw,38px); font-weight: 700; color: var(--ht-text); margin: 6px 0 10px; }
.ht-topics-header p  { font-size: 15px; color: var(--ht-text-light); max-width: 480px; margin: 0 auto; line-height: 1.55; }
.ht-topics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ht-topic-card { background: var(--ht-white); border-radius: var(--ht-radius); overflow: hidden; box-shadow: 0 4px 20px var(--ht-shadow); transition: all var(--ht-transition); cursor: pointer; border: 1px solid var(--ht-border); }
.ht-topic-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(212,39,111,0.16); }
.ht-topic-card-img { height: 160px; background: linear-gradient(135deg,var(--ht-blush),var(--ht-muted)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.ht-topic-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ht-topic-card-img svg { position: relative; z-index: 2; stroke: var(--ht-pink-deep); opacity: 0.9; }
.ht-topic-card-body { padding: 16px; }
.ht-topic-card-tag { display: inline-block; background: var(--ht-blush); color: var(--ht-pink-deep); font-size: 9px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; margin-bottom: 6px; }
.ht-topic-card h3 { font-family: var(--ht-font-head); font-size: 18px; font-weight: 700; color: var(--ht-text); margin: 0 0 6px; line-height: 1.3; }
.ht-topic-card p  { font-size: 12px; color: var(--ht-text-light); line-height: 1.5; margin: 0 0 12px; }
.ht-topic-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--ht-pink-deep); transition: gap var(--ht-transition); }
.ht-topic-card:hover .ht-topic-link { gap: 8px; }

/* ── Articles ── */
.ht-posts { background: var(--ht-blush); }
.ht-posts-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.ht-posts-header h2 { font-family: var(--ht-font-head); font-size: clamp(24px,3.2vw,36px); font-weight: 700; color: var(--ht-text); margin: 6px 0 0; }
.ht-view-all { display: inline-flex; align-items: center; gap: 5px; background: var(--ht-white); color: var(--ht-dark); border: 2px solid var(--ht-border); padding: 9px 20px; border-radius: 50px; font-weight: 700; font-size: 12px; transition: all var(--ht-transition); white-space: nowrap; }
.ht-view-all:hover { background: var(--ht-pink-deep); border-color: var(--ht-pink-deep); color: var(--ht-white); }
.ht-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ht-article-card { background: var(--ht-white); border-radius: var(--ht-radius); overflow: hidden; box-shadow: 0 4px 16px var(--ht-shadow); transition: all var(--ht-transition); display: flex; flex-direction: column; border: 1px solid var(--ht-border); }
.ht-article-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(212,39,111,0.16); }
.ht-article-img { overflow: hidden; flex-shrink: 0; height: 180px; }
.ht-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ht-article-card:hover .ht-article-img img { transform: scale(1.05); }
.ht-article-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,var(--ht-blush),var(--ht-muted)); display: flex; align-items: center; justify-content: center; }
.ht-article-img-placeholder svg { stroke: var(--ht-pink-deep); opacity: 0.5; }
.ht-article-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.ht-article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.ht-article-cat { display: inline-block; background: var(--ht-blush); color: var(--ht-pink-deep); font-size: 9px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; }
.ht-article-date { font-size: 11px; color: var(--ht-text-light); }
.ht-read-time    { font-size: 11px; color: var(--ht-text-light); margin-left: auto; }
.ht-article-card h3 { font-family: var(--ht-font-head); font-weight: 700; color: var(--ht-text); line-height: 1.35; margin: 0 0 auto; font-size: 16px; transition: color var(--ht-transition); }
.ht-article-card:hover h3 { color: var(--ht-pink-deep); }
.ht-article-excerpt { font-size: 13px; color: var(--ht-text-light); line-height: 1.6; margin: 0 0 14px; flex: 1; }
.ht-article-footer { display: flex; align-items: center; gap: 10px; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--ht-border); margin-top: auto; }
.ht-author-info { display: flex; align-items: center; gap: 8px; flex: 1; }
.ht-author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--ht-blush); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ht-author-avatar svg { stroke: var(--ht-pink-deep); width: 14px; height: 14px; }
.ht-author-details { display: flex; flex-direction: column; gap: 2px; }
.ht-author-name { font-size: 12px; font-weight: 600; color: var(--ht-text); line-height: 1.2; }
.ht-author-credentials { font-size: 10px; color: var(--ht-text-light); line-height: 1.2; }
.ht-read-link { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--ht-pink-deep); display: flex; align-items: center; gap: 3px; transition: gap var(--ht-transition); }
.ht-article-card:hover .ht-read-link { gap: 6px; }

/* ── EEAT ── */
.ht-eeat { background: var(--ht-white); }
.ht-eeat-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: center; }
.ht-eeat-image-wrap { position: relative; }
.ht-eeat-img { width: 100%; height: 380px; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg,var(--ht-blush),var(--ht-muted)); }
.ht-eeat-img img { width: 100%; height: 100%; object-fit: cover; }
.ht-eeat-badge { position: absolute; bottom: -16px; right: -16px; background: linear-gradient(135deg,var(--ht-pink),var(--ht-pink-deep)); color: var(--ht-white); border-radius: var(--ht-radius); padding: 16px 20px; text-align: center; box-shadow: 0 10px 28px rgba(212,39,111,0.32); }
.ht-eeat-badge strong { display: block; font-size: 24px; font-weight: 800; line-height: 1; }
.ht-eeat-badge span   { font-size: 11px; opacity: 0.9; margin-top: 3px; display: block; }
.ht-eeat-content h2 { font-family: var(--ht-font-head); font-size: clamp(26px,3.2vw,38px); font-weight: 700; color: var(--ht-text); margin: 6px 0 12px; line-height: 1.2; }
.ht-eeat-content > p { font-size: 15px; line-height: 1.7; color: var(--ht-text-light); margin: 0 0 24px; }
.ht-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.ht-credential-item { background: var(--ht-cream); border: 1px solid var(--ht-border); border-radius: var(--ht-radius-sm); padding: 14px; display: flex; gap: 10px; align-items: flex-start; }
.ht-credential-icon  { flex-shrink: 0; margin-top: 2px; }
.ht-credential-icon svg { stroke: var(--ht-pink-deep); }
.ht-credential-title { font-size: 12px; font-weight: 700; color: var(--ht-text); display: block; }
.ht-credential-desc  { font-size: 11px; color: var(--ht-text-light); display: block; margin-top: 2px; }
.ht-eeat-sources { margin-top: 20px; padding: 14px 16px; background: var(--ht-cream); border-radius: var(--ht-radius-sm); border-left: 4px solid var(--ht-pink); }
.ht-eeat-sources p { font-size: 12px; color: var(--ht-text-light); margin: 0; line-height: 1.55; }
.ht-eeat-sources strong { color: var(--ht-text); }

/* ── Process ── */
.ht-process { background: linear-gradient(135deg, #FFF9F5 0%, #FFF5F0 50%, #FFF0EB 100%); position: relative; overflow: hidden; padding: 50px 0; }
.ht-process::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,39,111,0.15) 50%, transparent); }
.ht-process-header { text-align: center; margin-bottom: 40px; max-width: 880px; margin-left: auto; margin-right: auto; }
.ht-process-header .ht-label { color: #D4276F; font-size: 10px; letter-spacing: 2.5px; margin-bottom: 8px; }
.ht-process-header h2 { font-family: var(--ht-font-head); font-size: clamp(26px,3.5vw,36px); font-weight: 700; color: #2D1B2E; margin: 8px 0 16px; letter-spacing: -0.5px; }
.ht-process-header p  { font-size: 16px; color: #6B5B6C; max-width: 520px; margin: 0 auto; line-height: 1.6; }
.ht-process-about { font-size: 14px !important; color: #5A4A5B !important; max-width: 820px !important; margin: 0 auto !important; line-height: 1.7 !important; text-align: left !important; background: white; padding: 20px 24px; border-radius: 12px; border: 1px solid rgba(212,39,111,0.12); margin-bottom: 36px !important; box-shadow: 0 2px 8px rgba(212,39,111,0.06); }
.ht-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.ht-process-steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background: linear-gradient(90deg, transparent, rgba(212,39,111,0.15) 20%, rgba(212,39,111,0.15) 80%, transparent); z-index:0; }
.ht-process-step { text-align: center; position: relative; z-index: 1; background: white; border: 1px solid rgba(212,39,111,0.12); border-radius: 12px; padding: 24px 16px; transition: all var(--ht-transition); box-shadow: 0 2px 8px rgba(212,39,111,0.05); }
.ht-process-step:hover { background: #FFFBF9; border-color: rgba(212,39,111,0.25); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,39,111,0.12); }
.ht-step-num { width:56px; height:56px; border-radius:50%; background: linear-gradient(135deg, #FFE0EF, #FFD0E5); border:2px solid #F7649A; display:flex; align-items:center; justify-content:center; font-family:var(--ht-font-head); font-size:22px; font-weight:700; color:#D4276F; margin:0 auto 16px; position: relative; box-shadow: 0 0 0 6px rgba(247,100,154,0.08), 0 3px 10px rgba(247,100,154,0.15); transition: all var(--ht-transition); }
.ht-process-step:hover .ht-step-num { box-shadow: 0 0 0 8px rgba(247,100,154,0.12), 0 4px 14px rgba(247,100,154,0.25); border-color: #D4276F; }
.ht-process-step h3 { font-size:16px; font-weight:700; color: #2D1B2E; margin:0 0 8px; letter-spacing: -0.2px; }
.ht-process-step p  { font-size:13px; color: #6B5B6C; line-height:1.55; margin:0; }

/* ── Newsletter ── */
.ht-newsletter { background: linear-gradient(135deg, #F7649A 0%, #E8578C 50%, #D4276F 100%); position: relative; overflow: hidden; }
.ht-newsletter::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; }
.ht-newsletter::after { content: ''; position: absolute; bottom: -40%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.ht-newsletter-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.ht-newsletter-content { }
.ht-newsletter-label { color: rgba(255,255,255,0.85); font-size: 11px; letter-spacing: 3px; margin-bottom: 12px; }
.ht-newsletter h2 { font-family: var(--ht-font-head); font-size: clamp(28px,3.8vw,44px); font-weight: 700; color: var(--ht-white); margin: 0 0 14px; letter-spacing: -0.6px; line-height: 1.2; }
.ht-newsletter p  { font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.65; margin: 0 0 32px; max-width: 540px; }
.ht-newsletter-form { display: flex; gap: 12px; margin-bottom: 16px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); padding: 8px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.ht-newsletter-form input[type="email"] { flex:1; padding:14px 24px; border-radius:50px; border:none; background:rgba(255,255,255,0.95); color:#2D0A1E; font-size:15px; outline:none; font-weight: 500; transition: all var(--ht-transition); }
.ht-newsletter-form input[type="email"]:focus { background: white; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.ht-newsletter-form input[type="email"]::placeholder { color:rgba(45,10,30,0.5); }
.ht-newsletter-form button { background: linear-gradient(135deg, #2D0A1E, #4A1130); color:var(--ht-white); border:none; padding:14px 32px; border-radius:50px; font-weight:700; font-size:15px; cursor:pointer; white-space:nowrap; transition: all var(--ht-transition); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.ht-newsletter-form button:hover { background: linear-gradient(135deg, #1A0612, #2D0A1E); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.ht-newsletter-disclaimer { font-size:12px; color:rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.ht-newsletter-disclaimer svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.7); flex-shrink: 0; }
.ht-newsletter-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ht-newsletter-perk { background:rgba(255,255,255,0.12); backdrop-filter: blur(10px); border:1px solid rgba(255,255,255,0.18); border-radius: 14px; padding:20px; transition: all var(--ht-transition); }
.ht-newsletter-perk:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.ht-newsletter-perk-icon { margin-bottom:12px; width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ht-newsletter-perk-icon svg { stroke: white; }
.ht-newsletter-perk h4 { font-size:15px; font-weight:700; color:var(--ht-white); margin:0 0 6px; letter-spacing: -0.2px; }
.ht-newsletter-perk p  { font-size:13px; color:rgba(255,255,255,0.8); margin:0; line-height: 1.5; }

/* ── FAQ ── */
.ht-faq { background: var(--ht-white); }
.ht-faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.ht-faq-left h2 { font-family:var(--ht-font-head); font-size:clamp(26px,3.8vw,38px); font-weight:700; color:var(--ht-text); margin:6px 0 12px; }
.ht-faq-left p  { font-size:15px; color:var(--ht-text-light); line-height:1.65; margin:0 0 22px; }
.ht-faq-contact { background:var(--ht-cream); border-radius:var(--ht-radius); padding:20px; border:1px solid var(--ht-border); }
.ht-faq-contact h4 { font-size:15px; font-weight:700; color:var(--ht-text); margin:0 0 6px; }
.ht-faq-contact p  { font-size:13px; color:var(--ht-text-light); margin:0 0 12px; }
.ht-faq-contact a  { display:inline-flex; align-items:center; gap:5px; font-size:13px; font-weight:700; color:var(--ht-pink-deep); }
.ht-faq-list { display:flex; flex-direction:column; }
.ht-faq-item { border-bottom:1px solid var(--ht-border); overflow:hidden; }
.ht-faq-item:first-child { border-top:1px solid var(--ht-border); }
.ht-faq-q { width:100%; background:none; border:none; text-align:left; padding:18px 0; display:flex; align-items:center; justify-content:space-between; gap:14px; cursor:pointer; font-family:var(--ht-font-body); font-size:15px; font-weight:600; color:var(--ht-text); transition:color var(--ht-transition); }
.ht-faq-q:hover, .ht-faq-q.active { color:var(--ht-pink-deep); }
.ht-faq-icon { width:26px; height:26px; border-radius:50%; background:var(--ht-blush); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; color:var(--ht-pink-deep); transition:all var(--ht-transition); }
.ht-faq-q.active .ht-faq-icon { background:var(--ht-pink); color:var(--ht-white); transform:rotate(45deg); }
.ht-faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.ht-faq-a.open { max-height:500px; }
.ht-faq-a-inner { padding:0 0 18px; font-size:14px; color:var(--ht-text-light); line-height:1.7; }
.ht-faq-a-inner strong { color:var(--ht-text); }

/* ── Footer ── */
.ht-footer { background: linear-gradient(135deg, #2D1B2E 0%, #3D2534 100%); color: var(--ht-white); padding:56px 0 0; border-top: 3px solid var(--ht-pink); }
.ht-footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.ht-footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.ht-footer-brand .ht-logo-name { font-size:20px; color:#F7649A; }
.ht-footer-brand p  { font-size:13px; line-height:1.7; color:rgba(255,255,255,0.7); margin:0 0 20px; max-width:260px; }
.ht-social-links { display:flex; gap:8px; }
.ht-social-link { width:36px; height:36px; border-radius:50%; background:rgba(247,100,154,0.12); border:1px solid rgba(247,100,154,0.25); display:flex; align-items:center; justify-content:center; transition:all var(--ht-transition); }
.ht-social-link:hover { background:#F7649A; border-color:#F7649A; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(247,100,154,0.3); }
.ht-social-link svg { stroke: rgba(247,100,154,0.9); transition: all var(--ht-transition); }
.ht-social-link:hover svg { stroke: white; }
.ht-footer-col h4 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#F7649A; margin:0 0 16px; }
.ht-footer-col ul li + li { margin-top:8px; }
.ht-footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.75); transition:color var(--ht-transition); display:inline-block; }
.ht-footer-col ul li a:hover { color:#F7649A; text-decoration: underline; }
.ht-footer-bottom { border-top:1px solid rgba(247,100,154,0.15); padding:20px 0; text-align: center; }
.ht-footer-bottom p { font-size:12px; color:rgba(255,255,255,0.6); margin:0; }
.ht-footer-legal { display:flex; gap:16px; flex-wrap:wrap; }
.ht-footer-legal a { font-size:12px; color:rgba(255,255,255,0.6); transition:color var(--ht-transition); }
.ht-footer-legal a:hover { color:#F7649A; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width:1024px){
  .ht-topics-grid{ grid-template-columns:repeat(2,1fr); }
  .ht-articles-grid{ grid-template-columns:repeat(2,1fr); }
  .ht-article-card.ht-featured{ grid-column:1/-1; grid-row:auto; }
  .ht-article-card.ht-featured .ht-article-img{ height:220px; }
  .ht-eeat-inner{ grid-template-columns:1fr; }
  .ht-eeat-img{ height:320px; }
  .ht-eeat-badge{ bottom:-14px; right:14px; }
  .ht-newsletter-inner{ grid-template-columns:1fr; gap: 40px; }
  .ht-newsletter-perks{ grid-template-columns:repeat(2,1fr); }
  .ht-faq-inner{ grid-template-columns:1fr; }
  .ht-footer-grid{ grid-template-columns:1fr 1fr; }
  .ht-process-steps{ grid-template-columns:repeat(2,1fr); gap: 24px; }
  .ht-process-steps::before{ display:none; }
  .ht-navbar-inner { padding: 0 24px; height: 65px; }
  .ht-nav-links { gap: 24px; font-size: 13px; }
  .ht-hero .ht-container{ grid-template-columns:1fr; gap:28px; }
  .ht-hero-image-panel{ grid-template-columns:1fr 1fr; }
  .ht-hero-collage-main{ grid-row:1/3; }
  .ht-nav-links{ display:none; }
}

/* Mobile Optimizations - Pinterest Audience Focus */
@media (max-width:768px){
  /* Better touch targets for mobile */
  .ht-container{ padding: 0 20px; }
  .ht-section{ padding:45px 0; }
  
  /* Hero - Mobile First */
  .ht-hero{ min-height:auto; padding:35px 0; }
  .ht-hero .ht-container{ grid-template-columns:1fr; gap:24px; min-height:auto; }
  .ht-hero-content{ text-align:center; }
  .ht-hero h1{ text-align:center; font-size: 32px; letter-spacing: -0.6px; }
  .ht-hero p{ text-align:center; margin-left:auto; margin-right:auto; max-width:100%; font-size: 14px; }
  .ht-hero-actions{ justify-content:center; width:100%; flex-direction: column; }
  .ht-hero-actions .ht-btn{ width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
  .ht-hero-stats{ justify-content:center; flex-wrap:wrap; gap:16px; margin-top:24px; padding-top:20px; border-top:1px solid rgba(212,39,111,0.15); }
  .ht-hero-image-panel{ width:100%; max-width:100%; margin:0 auto; }
  .ht-hero-collage-main img{ min-height:240px; }
  .ht-hero-collage-small img{ min-height:100px; }
  .ht-hero-collage-badge{ padding: 8px 10px; bottom: 8px; left: 8px; right: 8px; }
  .ht-hero-collage-badge strong{ font-size: 11px; }
  .ht-hero-collage-badge span{ font-size: 8px; }
  
  /* Navbar - Mobile Friendly */
  .ht-navbar-inner{ padding: 0 20px; height: 60px; }
  .ht-logo-name{ font-size: 19px; }
  .ht-logo-tagline{ font-size: 8px; }
  
  /* Trust Bar - Scrollable on small screens */
  .ht-trustbar-inner{ gap:20px; justify-content:flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .ht-trust-item{ flex-shrink: 0; font-size: 11px; }
  
  /* Topics - Single Column */
  .ht-topics-grid{ grid-template-columns:1fr; gap: 18px; }
  .ht-topic-card-img{ height: 180px; }
  .ht-topic-card-body{ padding: 18px; }
  .ht-topic-card h3{ font-size: 19px; }
  
  /* Articles - Mobile Stack */
  .ht-articles-grid{ grid-template-columns:1fr; gap: 20px; }
  .ht-article-img{ height: 200px; }
  .ht-article-body{ padding: 20px; }
  
  /* EEAT Section */
  .ht-eeat-inner{ grid-template-columns:1fr; gap: 32px; }
  .ht-eeat-img{ height:280px; }
  .ht-eeat-badge{ bottom:-12px; right:12px; padding: 14px 18px; }
  .ht-credentials{ grid-template-columns:1fr; gap: 12px; }
  
  /* Process Steps */
  .ht-process-steps{ grid-template-columns:1fr; gap: 16px; }
  .ht-process-steps::before{ display:none; }
  .ht-process-step{ padding: 20px 16px; }
  .ht-process-about{ padding: 18px 20px; font-size: 13px !important; margin-bottom: 28px !important; }
  
  /* Newsletter - Mobile Form */
  .ht-newsletter-inner{ grid-template-columns:1fr; gap: 32px; }
  .ht-newsletter h2{ font-size: 28px; margin-bottom: 12px; }
  .ht-newsletter p{ font-size: 15px; margin-bottom: 24px; }
  .ht-newsletter-perks{ grid-template-columns:1fr; gap: 12px; }
  .ht-newsletter-perk{ padding: 18px; }
  .ht-newsletter-form{ flex-direction:column; padding: 10px; gap: 8px; }
  .ht-newsletter-form input[type="email"]{ padding: 16px 20px; font-size: 14px; }
  .ht-newsletter-form button{ padding: 16px 24px; font-size: 14px; }
  
  /* FAQ - Mobile Stack */
  .ht-faq-inner{ grid-template-columns:1fr; gap: 32px; }
  .ht-faq-q{ padding: 16px 0; font-size: 14px; }
  .ht-faq-a-inner{ font-size: 13px; }
  
  /* Footer - Mobile Stack */
  .ht-footer{ padding: 48px 0 0; }
  .ht-footer-grid{ grid-template-columns:1fr; gap:28px; }
  .ht-footer-bottom{ text-align: center; padding: 18px 0; }
  
  /* Section Headers */
  .ht-topics-header{ margin-bottom:28px; }
  .ht-posts-header{ margin-bottom:28px; flex-direction:column; align-items:flex-start; }
  .ht-process-header{ margin-bottom:32px; }
  .ht-view-all{ width: 100%; justify-content: center; }
}

/* Small Mobile - Pinterest Primary Audience (375px - iPhone SE, etc) */
@media (max-width:480px){
  /* Even more compact for small screens */
  .ht-container{ padding: 0 16px; }
  .ht-section{ padding:40px 0; }
  
  /* Hero - Ultra Compact */
  .ht-hero{ padding:30px 0; }
  .ht-hero h1{ font-size: 28px; line-height: 1.25; margin-bottom: 12px; }
  .ht-hero p{ font-size: 13px; line-height: 1.6; }
  .ht-hero-label{ font-size: 9px; letter-spacing: 1.8px; margin-bottom: 10px; }
  .ht-hero-actions .ht-btn{ padding: 13px 20px; font-size: 14px; }
  .ht-hero-stats{ gap: 12px; margin-top: 20px; }
  .ht-hero-stat-num{ font-size: 14px; }
  .ht-hero-stat-lbl{ font-size: 9px; }
  .ht-hero-image-panel{ gap: 8px; }
  .ht-hero-collage-main img{ min-height: 220px; }
  .ht-hero-collage-small img{ min-height: 90px; }
  
  /* Navbar - Minimal */
  .ht-navbar-inner{ padding: 0 16px; height: 56px; }
  .ht-logo svg{ width: 30px; height: 30px; }
  .ht-logo-name{ font-size: 17px; }
  .ht-logo-tagline{ font-size: 7px; letter-spacing: 1.8px; }
  
  /* Trust Bar - Compact */
  .ht-trustbar{ padding: 14px 0; }
  .ht-trust-item{ font-size: 10px; }
  .ht-trust-icon{ width: 28px; height: 28px; }
  
  /* Typography Adjustments */
  .ht-topics-header h2,
  .ht-posts-header h2,
  .ht-eeat-content h2,
  .ht-process-header h2,
  .ht-faq-left h2{ font-size: 26px; }
  
  .ht-label{ font-size: 9px; letter-spacing: 2px; }
  
  /* Topic Cards */
  .ht-topic-card-img{ height: 160px; }
  .ht-topic-card-body{ padding: 16px; }
  .ht-topic-card h3{ font-size: 17px; }
  .ht-topic-card p{ font-size: 11px; }
  
  /* Article Cards */
  .ht-article-img{ height: 180px; }
  .ht-article-body{ padding: 16px; }
  .ht-article-card h3{ font-size: 15px; }
  .ht-article-meta{ gap: 8px; }
  .ht-article-footer{ padding-top: 12px; }
  
  /* Process */
  .ht-process{ padding: 40px 0; }
  .ht-process-about{ padding: 16px 18px; font-size: 12px !important; line-height: 1.65 !important; }
  .ht-step-num{ width: 50px; height: 50px; font-size: 20px; }
  .ht-process-step h3{ font-size: 15px; }
  .ht-process-step p{ font-size: 12px; }
  
  /* Newsletter */
  .ht-newsletter{ padding: 40px 0; }
  .ht-newsletter h2{ font-size: 26px; line-height: 1.25; }
  .ht-newsletter p{ font-size: 14px; }
  .ht-newsletter-form input[type="email"]{ padding: 15px 18px; font-size: 13px; }
  .ht-newsletter-form button{ padding: 15px 20px; font-size: 13px; }
  .ht-newsletter-perk{ padding: 16px; }
  .ht-newsletter-perk h4{ font-size: 14px; }
  .ht-newsletter-perk p{ font-size: 12px; }
  
  /* FAQ */
  .ht-faq{ padding: 40px 0; }
  .ht-faq-q{ font-size: 13px; padding: 14px 0; }
  .ht-faq-icon{ width: 24px; height: 24px; font-size: 14px; }
  
  /* Footer */
  .ht-footer{ padding: 40px 0 0; }
  .ht-footer-brand p{ font-size: 12px; max-width: 100%; }
  .ht-footer-col h4{ font-size: 10px; margin-bottom: 12px; }
  .ht-footer-col ul li a{ font-size: 12px; }
  .ht-footer-bottom{ padding: 16px 0; }
  .ht-footer-bottom p{ font-size: 11px; }
  
  /* Better Touch Targets */
  .ht-btn{ min-height: 48px; }
  .ht-faq-q{ min-height: 52px; }
  .ht-social-link{ width: 40px; height: 40px; }
}

/* Extra Small - Very Small Phones (320px) */
@media (max-width:360px){
  .ht-container{ padding: 0 14px; }
  .ht-hero h1{ font-size: 26px; }
  .ht-hero p{ font-size: 12px; }
  .ht-hero-actions{ gap: 8px; }
  .ht-hero-stats{ flex-direction: column; gap: 10px; text-align: center; }
  .ht-navbar-inner{ padding: 0 14px; }
  .ht-trustbar-inner{ gap: 16px; }
  .ht-newsletter h2{ font-size: 24px; }
  .ht-topics-header h2,
  .ht-posts-header h2{ font-size: 24px; }
}

/* Landscape Mobile - Pinterest Feed View */
@media (max-width:768px) and (orientation: landscape){
  .ht-hero{ padding: 30px 0; }
  .ht-hero .ht-container{ gap: 20px; }
  .ht-hero h1{ font-size: 28px; }
  .ht-section{ padding: 40px 0; }
} !important; padding: 18px 20px !important; margin-bottom: 30px !important; text-align: center !important; }
  .ht-process-steps{ grid-template-columns:1fr; gap: 16px; }
  .ht-process-step{ padding: 22px 18px; }
}
@media (max-width:480px){
  .ht-section{ padding:40px 0; }
  .ht-hero{ padding:32px 0; }
  .ht-hero h1{ font-size:26px; }
  .ht-hero p{ font-size:14px; }
  .ht-hero-stats{ flex-direction:row; gap:16px; margin-top:24px; }
  .ht-hero-stat-num{ font-size:12px; }
  .ht-hero-stat-lbl{ font-size:9px; }
  .ht-hero-actions{ flex-direction:column; width:100%; }
  .ht-btn{ width:100%; justify-content:center; }
  .ht-hero-image-panel{ max-width:100%; }
  .ht-hero-collage-main img{ min-height:220px; }
  .ht-hero-collage-small img{ min-height:90px; }
  .ht-footer-legal{ flex-direction:column; gap:6px; }
  .ht-footer-bottom{ text-align: center; }
  .ht-container{ padding:0 16px; }
  .ht-topics-header h2{ font-size:24px; }
  .ht-posts-header h2{ font-size:22px; }
  .ht-eeat-content h2{ font-size:24px; }
  .ht-process-header h2{ font-size:24px; }
  .ht-process-about{ font-size: 12px !important; padding: 16px !important; line-height: 1.65 !important; }
  .ht-newsletter h2{ font-size:26px; }
  .ht-faq-left h2{ font-size:24px; }
  .ht-newsletter-perks{ grid-template-columns:1fr; }
  .ht-process-step{ padding: 20px 14px; }
  .ht-step-num{ width: 52px; height: 52px; font-size: 20px; }
}

/* ── Neve override ── */
.page-template-template-homepage-beauty .neve-main     { padding:0 !important; }
.page-template-template-homepage-beauty .container      { max-width:none !important; padding:0 !important; }
.page-template-template-homepage-beauty .nv-content-wrap{ padding:0 !important; }
.page-template-template-homepage-beauty article.page    { margin:0; padding:0; }
