/*
Theme Name: Blocksy Smart Weight Wellness Child
Theme URI: https://example.com/blocksy-smart-weight-wellness-child
Description: A premium Blocksy child theme inspired by the Smart Weight Wellness landing page design. Built for weight loss, women’s wellness, lead magnets, tools, affiliate product hubs, and authority blogging.
Author: Smart Weight Wellness
Template: blocksy
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-smart-weight-wellness-child
*/

/* Smart Weight Wellness design system */

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

  :root {
    --forest: #1E3A2A;
    --sage: #3A6647;
    --sage-mid: #4E8560;
    --sage-light: #7BAF8E;
    --sage-pale: #C8DDD0;
    --cream: #FAF7F2;
    --cream-warm: #F3EDE3;
    --terracotta: #C4714A;
    --terra-light: #E8B99E;
    --terra-pale: #F7EAE2;
    --gold: #C9963B;
    --gold-light: #E8C87A;
    --dark: #1A2418;
    --text: #2C3628;
    --text-mid: #5A6655;
    --text-light: #8A9985;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sage-pale);
    padding: 0 2rem;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--terracotta); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
    text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sage); }
  .nav-cta {
    background: var(--terracotta); color: var(--white);
    padding: 0.6rem 1.4rem; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600;
    text-decoration: none; letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--forest); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 68px;
    background: linear-gradient(160deg, var(--forest) 0%, var(--sage) 55%, #5A9E72 100%);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(201,150,59,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(196,113,74,0.1) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-botanical {
    position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
    opacity: 0.06; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' stroke='%23fff' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='200' r='120' stroke='%23fff' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='200' cy='200' r='60' stroke='%23fff' stroke-width='0.5' fill='none'/%3E%3Cline x1='20' y1='200' x2='380' y2='200' stroke='%23fff' stroke-width='0.5'/%3E%3Cline x1='200' y1='20' x2='200' y2='380' stroke='%23fff' stroke-width='0.5'/%3E%3Cline x1='73' y1='73' x2='327' y2='327' stroke='%23fff' stroke-width='0.5'/%3E%3Cline x1='327' y1='73' x2='73' y2='327' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 600px;
  }
  .hero-left { padding: 5rem 3rem 5rem 6rem; position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,150,59,0.2); border: 1px solid rgba(201,150,59,0.4);
    color: var(--gold-light); padding: 0.4rem 1rem;
    border-radius: 50px; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.8rem;
  }
  .hero-badge::before { content: '✦'; font-size: 0.6rem; }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic; color: var(--gold-light);
    display: block;
  }
  .hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.8);
    max-width: 480px; margin-bottom: 2.5rem;
    font-weight: 300; line-height: 1.75;
  }
  .hero-form {
    display: flex; gap: 0.75rem; max-width: 480px; flex-wrap: wrap;
  }
  .hero-form input {
    flex: 1; min-width: 220px;
    padding: 0.9rem 1.4rem;
    border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    outline: none; transition: border-color 0.2s;
  }
  .hero-form input::placeholder { color: rgba(255,255,255,0.5); }
  .hero-form input:focus { border-color: var(--gold-light); }
  .btn-primary {
    background: var(--terracotta); color: var(--white);
    padding: 0.9rem 2rem; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    border: none; cursor: pointer; letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .btn-primary:hover { background: #A85D3A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,113,74,0.4); }
  .hero-trust {
    margin-top: 2.5rem;
    display: flex; gap: 2rem; flex-wrap: wrap;
  }
  .hero-trust-item { display: flex; flex-direction: column; }
  .hero-trust-item strong {
    font-size: 1.6rem; font-weight: 600; color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
  }
  .hero-trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
  .hero-right { position: relative; z-index: 2; padding: 3rem 4rem 3rem 2rem; display: flex; align-items: center; justify-content: center; }
  .hero-card-stack { position: relative; width: 320px; height: 420px; }
  .hcard {
    position: absolute; background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; padding: 1.5rem;
    color: var(--white);
  }
  .hcard-1 { width: 280px; top: 0; left: 20px; transform: rotate(-4deg); }
  .hcard-2 { width: 300px; top: 80px; left: 0; transform: rotate(2deg); background: rgba(255,255,255,0.18); }
  .hcard-3 { width: 260px; top: 200px; left: 40px; transform: rotate(-1deg); }
  .hcard-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .hcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 0.4rem; }
  .hcard p { font-size: 0.82rem; opacity: 0.75; line-height: 1.5; }

  /* ── LOGO BAR ── */
  .trust-bar {
    background: var(--forest); color: rgba(255,255,255,0.55);
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .trust-bar-item { display: flex; align-items: center; gap: 0.5rem; }
  .trust-bar-item svg { opacity: 0.5; }

  /* ── SECTIONS SHARED ── */
  section { padding: 6rem 2rem; }
  .container { max-width: 1140px; margin: 0 auto; }
  .section-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300;
    color: var(--forest); line-height: 1.15; margin-bottom: 1.2rem;
  }
  .section-title em { font-style: italic; color: var(--sage-mid); }
  .section-sub {
    font-size: 1.05rem; color: var(--text-mid);
    max-width: 580px; line-height: 1.75; font-weight: 300;
  }

  /* ── PROBLEM ── */
  .problem-section { background: var(--cream-warm); }
  .problem-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    margin-top: 3.5rem;
  }
  .problem-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
  .problem-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.4rem;
    background: var(--white); border-radius: 14px;
    border-left: 3px solid var(--terracotta);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .problem-list li:hover { transform: translateX(4px); box-shadow: 4px 4px 20px rgba(0,0,0,0.06); }
  .problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
  .problem-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--forest); margin-bottom: 0.2rem; }
  .problem-text span { font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }
  .problem-quote {
    background: linear-gradient(135deg, var(--forest), var(--sage));
    color: var(--white); border-radius: 24px;
    padding: 3rem; position: relative; overflow: hidden;
  }
  .problem-quote::before {
    content: '"';
    position: absolute; top: -1rem; left: 1.5rem;
    font-family: 'Cormorant Garamond', serif; font-size: 8rem;
    color: rgba(255,255,255,0.1); line-height: 1;
  }
  .problem-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; font-style: italic;
    line-height: 1.6; margin-bottom: 1.5rem; position: relative;
  }
  .problem-quote cite { font-size: 0.85rem; opacity: 0.65; font-style: normal; }

  /* ── SOLUTION ── */
  .solution-section { background: var(--white); }
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
  .pillar {
    padding: 2.2rem; border-radius: 20px;
    border: 1px solid var(--sage-pale);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
  }
  .pillar::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  }
  .pillar-1::after { background: var(--sage-mid); }
  .pillar-2::after { background: var(--terracotta); }
  .pillar-3::after { background: var(--gold); }
  .pillar:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: var(--sage-pale); margin-bottom: 0.8rem; line-height: 1;
  }
  .pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--forest);
    margin-bottom: 0.8rem;
  }
  .pillar p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

  /* ── TOOLS ── */
  .tools-section { background: var(--cream-warm); }
  .tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 3.5rem; }
  .tool-card {
    background: var(--white); border-radius: 16px;
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--sage-pale);
    display: flex; flex-direction: column; gap: 0.7rem;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none; color: inherit;
  }
  .tool-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(58,102,71,0.12); border-color: var(--sage-mid); }
  .tool-emoji { font-size: 2rem; }
  .tool-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--forest); }
  .tool-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
  .tool-tag {
    display: inline-block; margin-top: auto;
    background: var(--sage-pale); color: var(--sage);
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 50px;
    width: fit-content;
  }
  .tool-tag.free { background: #E8F5EC; color: #2E7D45; }

  /* ── NICHES ── */
  .niches-section { background: var(--forest); color: var(--white); }
  .niches-section .section-title { color: var(--white); }
  .niches-section .section-title em { color: var(--gold-light); }
  .niches-section .section-sub { color: rgba(255,255,255,0.65); max-width: 600px; }
  .niches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
  .niche-card {
    border-radius: 20px; padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    transition: background 0.2s, transform 0.2s;
    cursor: default;
  }
  .niche-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
  .niche-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .niche-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; margin-bottom: 0.6rem;
    color: var(--gold-light);
  }
  .niche-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
  .niche-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
  .niche-tag {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65);
    padding: 0.2rem 0.6rem; border-radius: 50px;
    font-size: 0.72rem; letter-spacing: 0.04em;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--terra-pale); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
  .testi-card {
    background: var(--white); border-radius: 20px;
    padding: 2rem; border: 1px solid var(--terra-light);
    transition: transform 0.2s;
  }
  .testi-card:hover { transform: translateY(-4px); }
  .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .testi-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; font-weight: 300;
    color: var(--forest); line-height: 1.65;
    margin-bottom: 1.2rem;
  }
  .testi-author { display: flex; align-items: center; gap: 0.75rem; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.9rem; color: var(--white);
    flex-shrink: 0;
  }
  .av-1 { background: var(--sage); }
  .av-2 { background: var(--terracotta); }
  .av-3 { background: var(--gold); }
  .testi-author-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--forest); }
  .testi-author-info span { font-size: 0.8rem; color: var(--text-light); }
  .testi-result {
    display: inline-block; margin-top: 1rem;
    background: #E8F5EC; color: #2E7D45;
    padding: 0.25rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
  }

  /* ── FREEBIE ── */
  .freebie-section { background: var(--cream); }
  .freebie-box {
    background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
    border-radius: 28px; padding: 4rem;
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .freebie-box::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  }
  .freebie-box::after {
    content: '';
    position: absolute; bottom: -40px; right: 80px;
    width: 180px; height: 180px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
  }
  .freebie-left { position: relative; z-index: 1; }
  .freebie-left .section-label { color: var(--gold-light); }
  .freebie-left .section-title { color: var(--white); font-size: 2.5rem; }
  .freebie-left .section-title em { color: var(--gold-light); }
  .freebie-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin: 1rem 0 2rem; line-height: 1.7; }
  .freebie-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
  .freebie-perks li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; color: rgba(255,255,255,0.85);
  }
  .freebie-perks li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }
  .freebie-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .freebie-form input {
    flex: 1; min-width: 200px;
    padding: 0.85rem 1.3rem; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12); color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    outline: none;
  }
  .freebie-form input::placeholder { color: rgba(255,255,255,0.45); }
  .freebie-right { position: relative; z-index: 1; display: flex; justify-content: center; }
  .freebie-mockup {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25); border-radius: 20px;
    padding: 2rem; width: 260px; color: var(--white);
    text-align: center;
  }
  .freebie-mockup-icon { font-size: 3rem; margin-bottom: 1rem; }
  .freebie-mockup h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem;
  }
  .freebie-mockup p { font-size: 0.8rem; opacity: 0.65; margin-bottom: 1.2rem; }
  .freebie-items { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
  .freebie-item {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  .freebie-item-icon { font-size: 1rem; }

  /* ── CONTENT TOPICS ── */
  .topics-section { background: var(--white); }
  .topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 3rem; }
  .topic-pill {
    background: var(--cream-warm); border: 1px solid var(--sage-pale);
    border-radius: 12px; padding: 1rem 0.9rem;
    text-align: center; cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    text-decoration: none; color: inherit;
  }
  .topic-pill:hover { background: var(--sage-pale); border-color: var(--sage-mid); transform: translateY(-2px); }
  .topic-pill-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
  .topic-pill span { font-size: 0.82rem; font-weight: 500; color: var(--forest); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.55);
    padding: 4rem 2rem 2rem;
  }
  .footer-inner { max-width: 1140px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: block; }
  .footer-brand p { font-size: 0.875rem; line-height: 1.7; }
  .footer-col h5 {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 0.875rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--sage-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .disclaimer {
    background: rgba(255,255,255,0.04); border-radius: 8px;
    padding: 1rem 1.5rem; font-size: 0.78rem; line-height: 1.6;
    color: rgba(255,255,255,0.3); margin-bottom: 2rem;
    border-left: 2px solid rgba(255,255,255,0.1);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes float {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-8px); }
  }
  @keyframes float2 {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-5px); }
  }
  .hcard-1 { animation: float 6s ease-in-out infinite; }
  .hcard-2 { animation: float2 7s ease-in-out infinite; animation-delay: -2s; }
  .hero-left > * { animation: fadeUp 0.8s ease both; }
  .hero-badge { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.4s; }
  .hero-form { animation-delay: 0.55s; }
  .hero-trust { animation-delay: 0.7s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 3rem 2rem; }
    .problem-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .freebie-box { grid-template-columns: 1fr; padding: 2.5rem; }
    .freebie-right { display: none; }
    nav .nav-links { display: none; }
  }


/* WordPress + Blocksy compatibility refinements */
body.smart-weight-landing .site-main,
body.smart-weight-landing .ct-container-full,
body.smart-weight-landing .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
body.smart-weight-landing .entry-content > * { max-width: none; }
body.smart-weight-landing #main-container { overflow-x: hidden; }
.sww-wp-content { background: var(--cream); }
.admin-bar nav { top: 32px; }
@media (max-width: 782px) { .admin-bar nav { top: 46px; } }
@media (max-width: 600px) { .admin-bar nav { top: 0; } }
