/* ============================================
   MySock — Main Stylesheet
   Mobile-first, no auth, clean layout
   ============================================ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f2a5e;
  --navy-dark:  #091d42;
  --blue:       #1a4fa0;
  --blue-light: #2563c4;
  --accent:     #e8a020;
  --text:       #1a1a2e;
  --text-mid:   #444455;
  --text-light: #6b7280;
  --border:     #dde2ec;
  --bg-light:   #f4f6fb;
  --bg-white:   #ffffff;
  --radius:     6px;
  --radius-md:  10px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
  --font-body:  'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;
  --max-w:      1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.bg-white { background: var(--bg-white); }
.bg-light  { background: var(--bg-light); }
.bg-navy   { background: var(--navy); }

/* ── Typography ───────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.intro-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--blue);
  padding-left: 10px;
  margin-bottom: 14px;
}
.intro-label.light { color: #a8c4f0; border-color: #a8c4f0; }

.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .intro-label { border-left: none; padding-left: 0; }
.section-header-center .intro-label::before,
.section-header-center .intro-label::after { content: '—'; margin: 0 8px; opacity: 0.5; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); }

.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: #f0f4ff; }

/* ── Top Bar ──────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-links { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar-links a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.topbar-links a:hover { color: #fff; }
.topbar-sep { opacity: 0.3; }

/* ── Header ───────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: #eef3fc; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    url('assets/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, #0f2a5e 0%, #1a4fa0 60%, #2563c4 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,29,66,0.92) 0%, rgba(9,29,66,0.65) 60%, rgba(9,29,66,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  width: 100%;
}
.hero-text { max-width: 600px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* ── Introduction ─────────────────────────── */
.intro-inner { max-width: 900px; margin: 0 auto; }
.intro-inner .section-title { margin-bottom: 24px; }
.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.intro-columns p { font-size: 0.975rem; color: var(--text-mid); line-height: 1.8; }

.intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat { flex: 1; text-align: center; padding: 24px 16px; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; }

/* ── About ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--border);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  background: linear-gradient(135deg, #dde2ec, #c8d0e4);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder::after {
  content: 'MySock Team';
  font-size: 0.9rem; color: var(--text-light); font-weight: 500;
}
.about-text p { font-size: 0.975rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.about-list { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative; }
.about-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; background: var(--blue);
}

/* ── Vision & Mission ─────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.vm-card--accent { background: var(--navy); border-color: var(--navy); color: #fff; }
.vm-icon {
  width: 52px; height: 52px;
  background: rgba(26,79,160,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vm-card--accent .vm-icon { background: rgba(255,255,255,0.1); }
.vm-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.vm-card--accent h3 { color: #fff; }
.vm-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.vm-card--accent p { color: rgba(255,255,255,0.8); }
.vm-list { display: flex; flex-direction: column; gap: 10px; }
.vm-list li { font-size: 0.875rem; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.5; }
.vm-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; font-size: 0.8rem; }
.vm-card--accent .vm-list li { color: rgba(255,255,255,0.75); }
.vm-card--accent .vm-list li::before { color: #a8c4f0; }

/* ── Strengths ────────────────────────────── */
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strength-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.strength-card:hover { box-shadow: var(--shadow-md); border-color: #b8c8e8; transform: translateY(-3px); }
.strength-icon {
  width: 48px; height: 48px;
  background: #eef3fc;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.strength-card h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.strength-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; }

/* ── Services Teaser ──────────────────────── */
.services-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.services-teaser-text { max-width: 580px; flex: 1; }
.services-teaser-text .section-title { color: #fff; margin-bottom: 12px; }
.services-teaser-text p { font-size: 0.975rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.services-teaser-action { flex-shrink: 0; }

/* ── Work / Gallery ───────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.work-img { height: 160px; background: var(--bg-light); overflow: hidden; }
.work-img--1 { background: linear-gradient(135deg, #c8d8f0, #a0b8e0); }
.work-img--2 { background: linear-gradient(135deg, #d0e8d0, #a0c8a0); }
.work-img--3 { background: linear-gradient(135deg, #e8d0c8, #d0a898); }
.work-img--4 { background: linear-gradient(135deg, #d8d0e8, #b8a8d0); }
.work-img--5 { background: linear-gradient(135deg, #e8e0c8, #d0c090); }
.work-img--6 { background: linear-gradient(135deg, #c8e8e8, #90c8c8); }
.work-info { padding: 18px 20px; }
.work-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: #eef3fc;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.work-info h4 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.work-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.work-cta { text-align: center; }

/* ── Testimonials ─────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.testimonial-quote { font-family: var(--font-serif); font-size: 3rem; color: var(--blue); opacity: 0.15; line-height: 1; margin-bottom: -10px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.testimonial-author span { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ── Final CTA ────────────────────────────── */
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.final-cta-text h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.final-cta-text p { font-size: 0.975rem; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 500px; }
.final-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; flex-shrink: 0; }

/* ── Footer ───────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 14px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Scroll Reveal ────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Toast ────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  font-size: 0.875rem; font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
.toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { background: #1a6b3a; }
.toast--error   { background: #b91c1c; }

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .intro-columns { grid-template-columns: 1fr; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .vm-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-teaser-inner { flex-direction: column; align-items: flex-start; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }
  .container { padding: 0 18px; }

  /* Topbar */
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }

  /* Header */
  .header-inner { height: 64px; gap: 12px; }
  .logo-tagline { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav drawer */
  .nav.open {
    display: block;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 12px 0 20px;
    z-index: 99;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav.open .nav-list { flex-direction: column; gap: 0; }
  .nav.open .nav-link {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-light);
  }

  /* Hero */
  .hero { min-height: 420px; }
  .hero-content { padding: 52px 0; }
  .hero-headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .intro-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }

  /* Grids */
  .strengths-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  /* CTA sections */
  .services-teaser-inner { flex-direction: column; align-items: stretch; }
  .services-teaser-action { width: 100%; }
  .services-teaser-action .btn { width: 100%; justify-content: center; }
  .final-cta-inner { flex-direction: column; align-items: stretch; }
  .final-cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-pad { padding: 40px 0; }
  .hero-content { padding: 40px 0; }
  .btn { font-size: 0.875rem; padding: 11px 18px; }
  .topbar { font-size: 0.72rem; }
  .footer-legal { justify-content: center; }
  .logo-name { font-size: 1rem; }
}

/* ── Utility ──────────────────────────────── */
.btn-mt { margin-top: 24px; }

/* ── Nav User Chip (injected by auth.js) ──── */
#navUserSlot { margin-left: 8px; flex-shrink: 0; }

.nav-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px 4px 4px;
}

.nav-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-user-initials {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-user-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.18s;
  white-space: nowrap;
}
.nav-logout-btn:hover { color: #b91c1c; }

/* Hide chip on very small screens — logout still accessible via menu */
@media (max-width: 360px) {
  .nav-user-name { display: none; }
}

/* ── Calendly Widget ──────────────────────── */
.calendly-inline-widget {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .calendly-inline-widget {
    height: 600px !important;
  }
}
