/* ═══════════════════════════════════════════════════════════════
   BareByKristen — Main Stylesheet
   Mobile-first, responsive, warm neutral palette
   ═══════════════════════════════════════════════════════════════ */

/* ─── FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'The Seasons';
  src: url('../assets/fonts/the-seasons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FFFDF7;
  --warm-white: #F7F5F0;
  --warm-gray: #7A7A72;
  --warm-gray-light: #8A8A82;
  --charcoal: #403C3B;
  --dark: #2A2625;
  --dark-btn: #333130;
  --taupe: #BAB2A9;
  --light-gray: #CFCDC8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Antic', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Antic', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Dancing Script', cursive;
  --max-width: 1200px;
  --nav-height: 85px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #2A2625;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: 2.2rem; margin-bottom: 16px; }
h2 { font-size: 1.8rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.accent-text {
  color: var(--charcoal);
}

.subheading {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--dark-btn);
  color: #fff;
}

.btn-primary:hover {
  background: var(--warm-gray);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(42, 38, 37, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: none;
  transition: background 0.3s;
  height: auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1003;
}

.nav-logo-icon {
  height: 65px;
  width: auto;
  margin-right: 6px;
}

.nav-logo-text {
  height: 22px;
  width: auto;
}

@media (max-width: 1023px) {
  .nav-logo-icon {
    height: 38px;
    margin-right: 5px;
  }
  .nav-logo-text {
    height: 18px;
  }
}


.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-book {
  font-size: 0.85rem !important;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-book:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.nav-book::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1003;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero-video-desktop {
    display: none;
  }
  .hero-video-mobile {
    display: block;
  }
}
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(42, 38, 37, 0.3) 0%,
    rgba(42, 38, 37, 0.5) 100%
  );
  z-index: 1;
}

/* Fallback if no video */
.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5A5650 0%, #3A3632 40%, #2A2625 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  padding-top: 60px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 5.5rem;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.hero-content .btn-primary {
  font-size: 0.95rem;
  padding: 16px 40px;
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
section {
  padding: 80px 0;
}

.page-banner + section {
  padding-top: 30px;
}

.section-gray + section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-light {
  background: var(--cream);
}

.section-warm {
  background: var(--warm-white);
}

.section-gray {
  background: var(--dark);
  color: #fff;
  padding: 20px 0;
}

.page-banner {
  background: rgba(42, 38, 37, 0.85);
  color: #fff;
  padding-top: 95px;
  padding-bottom: 25px;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0;
}

.section-gray h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-gray h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.section-gray h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.section-gray p {
  color: rgba(255, 255, 255, 0.75);
}

.section-gray .section-header {
  margin-bottom: 0;
  text-align: center;
}

.section-dark {
  background: var(--dark);
  color: #fff;
  padding: 50px 0;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

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

/* ─── INTRO ─────────────────────────────────────────────────── */
.intro {
  text-align: center;
}

.intro p {
  max-width: 650px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
}

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card-img {
  height: 220px;
  background: var(--taupe);
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.service-card-body .tagline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: italic;
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}

.service-card-meta .price {
  font-weight: 600;
  color: var(--dark-btn);
  font-size: 1.05rem;
}

.service-card-meta .duration {
  color: var(--taupe);
  font-size: 0.85rem;
}

/* ─── WIDE SERVICE CARD (Consultation) ───────────────────────── */
.service-card-wide {
  width: 100%;
}

.service-card-wide-inner {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

@media (min-width: 768px) {
  .service-card-wide-inner {
    grid-template-columns: 1fr 2fr;
  }
}

/* ─── SERVICES PAGE — FULL LIST ─────────────────────────────── */
.service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.service-item-header h3 {
  font-size: 1.4rem;
}

.service-item-meta {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.service-item-meta .price {
  font-weight: 600;
  color: var(--dark-btn);
  font-size: 1.1rem;
}

.service-item-meta .duration {
  color: var(--taupe);
  font-size: 0.9rem;
}

.service-item .tagline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-style: italic;
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-item p {
  max-width: 700px;
  font-size: 0.95rem;
}

.service-item .best-for {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--taupe);
}

.service-item .best-for strong {
  color: var(--charcoal);
}

/* ─── PHILOSOPHY ────────────────────────────────────────────── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.philosophy-img {
  height: 400px;
  background: var(--taupe);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

/* ─── TESTIMONIAL ───────────────────────────────────────────── */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── TESTIMONIAL CAROUSEL ──────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--charcoal);
}

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo {
  height: 450px;
  background: var(--taupe);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.about-intro h1 {
  margin-bottom: 8px;
}

.about-intro .subheading {
  margin-bottom: 24px;
}

.about-story {
  max-width: 750px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials {
  max-width: 750px;
  margin: 0 auto;
}

.credentials ul {
  list-style: none;
}

.credentials li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.credentials li:last-child {
  border-bottom: none;
}

/* ─── PRODUCTS PAGE ─────────────────────────────────────────── */
.products-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.product-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.product-category {
  background: #fff;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-category h3 {
  margin-bottom: 8px;
}

/* ─── BOOKING PAGE ──────────────────────────────────────────── */
.booking-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.location-card {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.location-card:hover,
.location-card.active {
  border-color: var(--dark-btn);
}

.location-card h3 {
  margin-bottom: 8px;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--taupe);
}

.booking-embed {
  min-height: 500px;
  background: #fff;
  border-radius: 4px;
  padding: 20px;
}

.booking-policies {
  max-width: 600px;
  margin: 40px auto 0;
}

.booking-policies h3 {
  margin-bottom: 16px;
}

.booking-policies li {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--light-gray);
}

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info .info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  background: #fff;
  color: var(--charcoal);
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark-btn);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  height: 300px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer h4 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-social a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 35px 20px;
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ─── RESPONSIVE — TABLET (768px+) ──────────────────────────── */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .container { padding: 0 40px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr 1fr;
  }

  .booking-locations {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── RESPONSIVE — DESKTOP (1024px+) ────────────────────────── */
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }

  .hero-content h1 {
    font-size: 5.5rem;
  }

  section {
    padding: 100px 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-toggle {
    display: none !important;
  }
}

/* ─── RESPONSIVE — MOBILE HERO TEXT ─────────────────────────── */
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 3.2rem;
    padding: 0 15px;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .page-banner {
    padding-top: 68px;
    padding-bottom: 18px;
  }

  .section-gray {
    padding: 10px 0;
  }

  .section-gray + section {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .section-dark {
    padding: 30px 0;
  }

  .cta-section {
    padding: 25px 20px;
  }

  .page-banner + section {
    padding-top: 20px;
  }
}

/* ─── RESPONSIVE — MOBILE NAV ───────────────────────────────── */
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 28, 27, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 30px;
    z-index: 1001;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: #fff;
  }

  .nav-book {
    margin-top: 16px;
    text-align: center;
    padding: 14px 32px;
  }
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ─── FADE IN ANIMATION ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── EMAIL POPUP ──────────────────────────────────────────── */
.email-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 38, 37, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.email-popup-overlay.active {
  display: flex;
}

.email-popup {
  background: var(--cream);
  max-width: 440px;
  width: 90%;
  padding: 40px 32px;
  position: relative;
  text-align: center;
}

.email-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
}

.email-popup h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.email-popup p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.email-popup form {
  display: flex;
  gap: 6px;
}

.email-popup input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--taupe);
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.email-popup button[type="submit"] {
  padding: 10px 20px;
  background: var(--dark);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
}

.email-popup .popup-note {
  font-size: 0.75rem;
  color: var(--taupe);
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .email-popup {
    padding: 32px 24px;
  }
  .email-popup form {
    flex-direction: column;
  }
  .email-popup button[type="submit"] {
    width: 100%;
  }
}
