/*
 Theme Name:   Kadence Child - Lilac Willow
 Theme URI:    https://example.com/
 Description:  Child theme for Kadence, customized for Lilac Willow LLC.
 Author:       Dallas & Rebecca Stump
 Author URI:   https://example.com/
 Template:     kadence
 Version:      1.1.0
*/

/* 
   We keep this file light so Kadence can do the heavy lifting.
   These rules mainly style the custom "Lilac Willow Home" template.
*/

/* ---- Global tweaks ---- */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #F5F3F9;
  color: #32293F;
}

/* Utility container within our custom template */
.lilac-home .container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* Section spacing */
.lilac-home section {
  padding-block: clamp(3rem, 6vw, 4rem);
}

/* ---- Buttons ---- */

.lilac-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.lilac-home .btn-primary {
  background-color: #C3B4E3;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(101, 76, 160, 0.40);
}

.lilac-home .btn-primary:hover,
.lilac-home .btn-primary:focus {
  background-color: #B09DD9;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(101, 76, 160, 0.50);
}

.lilac-home .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.lilac-home .btn-secondary:hover,
.lilac-home .btn-secondary:focus {
  background-color: rgba(255, 255, 255, 0.12);
}

/* ---- HERO ---- */

.lilac-home .hero {
  position: relative;
  width: 100%;
  min-height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Lilac overlay for the homepage hero */
.lilac-home .hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top/right/bottom/left: 0 */
  background: rgba(92, 54, 133, 0.55); /* lilac with 0.45 opacity */
}

/* Make sure content is above the overlay */
.lilac-home .hero-overlay,
.lilac-home .hero-content {
  position: relative;
  z-index: 1;
}

.lilac-home .hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(2rem, 4vw, 3rem); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.lilac-home .hero-content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.lilac-home .hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85); /* slightly softer white */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.lilac-home .hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.lilac-home .hero-subtitle {
  font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: #ffffff;                /* pure white */
  opacity: 1;                    /* fully opaque */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45); /* stronger contrast */
  z-index: 1;
}
/* Make hero text brighter/solid white */
.lilac-home .hero-kicker,
.lilac-home .hero-subtitle {
  opacity: .5;
  color: ghostwhite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); /* optional but helps readability */
}

/* Force hero subtitle + kicker to be bright, solid, and readable */
.lilac-home header.hero .hero-kicker {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.lilac-home header.hero .hero-subtitle {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.lilac-home .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* ---- Mission / About ---- */

.lilac-home .mission {
  background-color: #F5F3F9;
}

.lilac-home .mission-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.lilac-home .mission-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lilac-home .mission-text p {
  color: #5C516A;
  font-size: 0.98rem;
}

.lilac-home .mission-values-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #4A3F55;
}

.lilac-home .value-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
}

.lilac-home .value-list li {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 18px rgba(159, 141, 191, 0.22);
  font-size: 0.9rem;
}

/* ---- Green Living Hub ---- */

.lilac-home .green-hub {
  background-color: #ffffff;
}

.lilac-home .green-hub h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.lilac-home .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.lilac-home .card {
  background-color: #F9F7FF;
  border-radius: 1.1rem;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 12px 28px rgba(123, 98, 177, 0.12);
}

.lilac-home .card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.lilac-home .card p {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  color: #5C516A;
}

.lilac-home .btn-card {
  background: transparent;
  border-radius: 999px;
  border: 1px solid #C3B4E3;
  color: #5C516A;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
}

.lilac-home .btn-card:hover {
  background-color: #E2DAF5;
}

/* ---- Value / Quality ---- */

.lilac-home .value-props {
  background-color: #F5F3F9;
}

.lilac-home .value-props h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.lilac-home .value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.lilac-home .value-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: 0 8px 20px rgba(112, 94, 160, 0.15);
}

.lilac-home .value-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.lilac-home .value-card p {
  font-size: 0.95rem;
  color: #5C516A;
}

/* ---- Featured Products ---- */

.lilac-home .featured-products {
  background-color: #ffffff;
}

.lilac-home .featured-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.lilac-home .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}

.lilac-home .product-card {
  background-color: #F9F7FF;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(123, 98, 177, 0.12);
  display: flex;
  flex-direction: column;
}

.lilac-home .product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lilac-home .product-info {
  padding: 1.3rem 1.4rem 1.4rem;
}

.lilac-home .product-info h3 {
  margin-bottom: 0.5rem;
}

.lilac-home .product-info p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #5C516A;
}

/* ---- Our Story ---- */

.lilac-home .our-story {
  background-color: #F5F3F9;
}

.lilac-home .our-story .story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 2.3rem;
  align-items: center;
}

.lilac-home .story-image img {
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
  box-shadow: 0 18px 40px rgba(88, 68, 140, 0.35);
}

.lilac-home .story-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lilac-home .story-text p + p {
  margin-top: 0.8rem;
  color: #5C516A;
}

/* ---- CTA / Amway Portal ---- */

.lilac-home .cta-shop {
  background: radial-gradient(circle at top left, #FDFBFF, #E0D7F4);
  text-align: center;
  padding-block: clamp(2.8rem, 5vw, 3.4rem);
}

.lilac-home .cta-shop .btn-primary {
  font-size: 1.02rem;
  padding-inline: 2.2rem;
}

.lilac-home .cta-shop .disclosure {
  margin-top: 1rem;
  font-size: 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
  color: #5C516A;
}

/* ---- Responsive tweaks ---- */

@media (max-width: 960px) {
  .lilac-home .mission-inner,
  .lilac-home .our-story .story-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .lilac-home .hero-content h1 {
    font-size: 2.1rem;
  }

  .lilac-home .hero-subtitle {
    font-size: 0.94rem;
  }

  .lilac-home .cards,
  .lilac-home .value-cards,
  .lilac-home .product-cards {
    gap: 1.2rem;
  }
}
/* ================================
   GREEN LIVING HUB PAGE STYLES
   ================================ */

.green-hub-page {
  background-color: #F5F3F9;
  color: #32293F;
}

/* Shared container spacing */
.green-hub-page .container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* Section spacing */
.green-hub-page .green-hub-section {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

/* --- Hero / Intro --- */

.green-hub-page .green-hub-hero {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(159, 141, 191, 0.25);
  overflow: hidden;
}

/* Lilac overlay over the background image */
.green-hub-page .green-hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(92, 54, 133, 0.55);  /* lilac overlay */
}

/* Make sure content sits above the overlay */
.green-hub-page .green-hub-hero .container {
  position: relative;
  z-index: 1;
}
.green-hub-page .green-hub-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.green-hub-page .hero-subtitle {
  font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: #ffffff;                /* pure white */
  opacity: 1;                    /* fully opaque */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45); /* stronger contrast */
  z-index: 1;
}

/* --- Section headings --- */

.green-hub-page h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.green-hub-page h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

/* --- Columns for "Why Green Living Matters" --- */

.green-hub-page .green-hub-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.green-hub-page .green-hub-column {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 20px rgba(112, 94, 160, 0.12);
}

.green-hub-page .green-hub-column ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

/* --- Core principles list --- */

.green-hub-page .green-hub-principles {
  list-style: none;
  padding: 0;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.green-hub-page .green-hub-principles li {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(112, 94, 160, 0.12);
}

/* --- Pillar category cards grid --- */

.green-hub-page .green-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.green-hub-page .green-hub-card {
  background-color: #F9F7FF;
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 24px rgba(123, 98, 177, 0.12);
}

.green-hub-page .green-hub-card h3 {
  margin-bottom: 0.4rem;
}

.green-hub-page .green-hub-card p {
  font-size: 0.95rem;
  color: #5C516A;
}

/* --- Lists in later sections --- */

.green-hub-page .green-hub-section ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

.green-hub-page .green-hub-section li {
  margin-bottom: 0.25rem;
}

/* --- Last section (Next Steps) spacing --- */
.green-hub-page #next-steps ul {
  margin-top: 0.6rem;
}
/* ================================
   PRODUCTS HUB PAGE STYLES
   ================================ */

.products-page {
  background-color: #F5F3F9;
  color: #32293F;
}

.products-page .container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* ---- HERO ---- */

/* ---- PRODUCTS HERO WITH LILAC OVERLAY ---- */

.products-hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4rem);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; /* keeps overlay tidy */
}

/* Lilac overlay over the header background image */
.products-page .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(92, 54, 133, 0.55); /* lilac overlay */
}

/* Make sure the title/tagline sit above the overlay */
.products-page .products-hero .container {
  position: relative;
  z-index: 1;
}

/* White text so it reads well on the image + overlay */
.products-page .products-hero h1,
.products-page .products-hero .products-tagline {
  color: #ffffff;
}


.products-kicker {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  color: ghostwhite;
  opacity: 0.95;
}

.products-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.products-hero .hero-subtitle {
  font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: #ffffff;                /* pure white */
  opacity: 1;                    /* fully opaque */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45); /* stronger contrast */
  z-index: 1;
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* ---- SECTIONS ---- */

.products-section {
  padding-block: clamp(2.8rem, 5vw, 3.6rem);
}

.products-section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.products-section:nth-of-type(even) {
  background-color: #F5F3F9;
}

.products-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

.products-section p {
  font-size: 0.98rem;
  color: #514663;
}

/* ---- HOW IT WORKS STEPS ---- */

.products-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.products-step {
  background-color: #FFFFFF;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 24px rgba(112, 94, 160, 0.12);
}

.products-step .step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  background-color: #C3B4E3;
  color: #FFFFFF;
}

/* ---- CATEGORY GRID ---- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.products-card {
  background-color: #F9F7FF;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 28px rgba(123, 98, 177, 0.14);
}

.products-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.products-card p {
  margin-bottom: 0.8rem;
}

.products-card-list {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: #5C516A;
}

.products-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.text-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #5E4D91;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.text-link.external::after {
  content: " ↗";
  font-size: 0.85em;
}

/* ---- INGREDIENT HUB ---- */

.products-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.ingredients-card {
  background-color: #FFFFFF;
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 22px rgba(112, 94, 160, 0.12);
}

.products-ingredients-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #6B607D;
}

/* ---- CTA / DISCLOSURE ---- */

.products-cta {
  text-align: center;
}

.products-cta .btn-primary {
  margin-top: 1rem;
}

.products-disclosure {
  margin-top: 1rem;
  font-size: 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
  color: #5C516A;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2.1rem;
  }

  .products-tagline {
    font-size: 0.95rem;
  }
}

/*===========================================*/
.lilac-contact-form-wrapper {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 10px 26px rgba(123, 98, 177, 0.12);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.lilac-contact-form-message {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
}

.lilac-contact-form-message.lilac-success {
  background-color: #E3F6EC;
  color: #24553A;
}

.lilac-contact-form-message.lilac-error {
  background-color: #FDE6E6;
  color: #7A1C1C;
}

.lilac-contact-form .lilac-field-group {
  margin-bottom: 1rem;
}

.lilac-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.lilac-contact-form input[type="text"],
.lilac-contact-form input[type="email"],
.lilac-contact-form select,
.lilac-contact-form textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #D2C8E8;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.lilac-contact-form textarea {
  resize: vertical;
}

.lilac-contact-form .lilac-checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 500;
}

.lilac-contact-form .lilac-checkbox-group input[type="checkbox"] {
  margin-top: 0.23rem;
}

.lilac-contact-form .lilac-help-text {
  font-size: 0.82rem;
  color: #6B607D;
  margin-top: 0.2rem;
}
/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-page {
  background-color: #F5F3F9;
  color: #32293F;
}

.contact-page .container {
  width: min(1200px, 90%);
  margin-inline: auto;
}
/* Contact page disclaimer alignment */
 .lw-product-disclaimer {
  background-color: #ffffff;        /* matches the band you already have */
  padding: 2rem 0 3rem;             /* top/bottom spacing */
}

 .lw-product-disclaimer-inner {
  max-width: 760px;                 /* match your form card width */
  margin: 0 auto;                   /* center horizontally */
  padding: 0 1.5rem;                /* same side padding as the form */
  text-align: center;               /* or left, if you prefer */
  color: #5C516A;
  font-size: 0.95rem;
}

 .lw-product-disclaimer-inner h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #32293F;
}


/* HERO WITH IMAGE BACKGROUND + LILAC OVERLAY */
.contact-page .contact-hero {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(159, 141, 191, 0.25);
  overflow: hidden;
}

/* Lilac overlay over the background image */
.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(92, 54, 133, 0.55); /* adjust alpha for lighter/darker */
}

/* Make sure text sits above the overlay */
.contact-page .contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-page .contact-hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.contact-page .hero-subtitle {
 font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: #ffffff;                /* pure white */
  opacity: 1;                    /* fully opaque */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45); /* stronger contrast */
  z-index: 1;
}

/* Contact form section below the header */
.contact-page .contact-section {
  padding-block: clamp(2.8rem, 5vw, 3.6rem);
}

/* ================================
   GLOBAL DISCLAIMER MODAL
   ================================ */

#lw-disclaimer-modal.lw-modal {
  position: fixed;
  inset: 0;
  display: none;             /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lw-disclaimer-modal.lw-modal.is-open {
  display: flex;             /* show when active */
}

/* Backdrop */
#lw-disclaimer-modal .lw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Dialog */
#lw-disclaimer-modal .lw-modal-dialog {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  border-radius: 1rem;
  width: min(600px, 92%);
  padding: 1.8rem 2rem 1.6rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  font-family: inherit;
}

/* Close button */
#lw-disclaimer-modal .lw-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #6B607D;
}

#lw-disclaimer-modal .lw-modal-close:hover,
#lw-disclaimer-modal .lw-modal-close:focus {
  color: #463A63;
}

/* Heading + body text */
#lw-disclaimer-modal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: #32293F;
}

#lw-disclaimer-modal .lw-modal-body {
  margin: 0;
  font-size: 0.95rem;
  color: #514663;
}

/* Small tweak for mobile */
@media (max-width: 480px) {
  #lw-disclaimer-modal .lw-modal-dialog {
    padding: 1.4rem 1.3rem 1.3rem;
  }

  #lw-disclaimer-modal h2 {
    font-size: 1.2rem;
  }
}
