/******************************************
  🌸 Miz Helena Books – Unified Styles
  Keeps all shop & button styling neat,
  pastel, and consistent site-wide
******************************************/

/* GENERAL LAYOUT ---------------------------------- */
body {
  background-color: #ffeef5; /* soft pastel pink */
  color: #000000;            /* readable black text */
  font-family: "Poppins", "Nunito Sans", system-ui, sans-serif;
}

/* BUTTONS ----------------------------------------- */
button,
.button,
.wp-block-button__link,
.add_to_cart_button,
.wc-forward,
.checkout-button {
  background-color: #65727b;   /* blue-grey */
  color: #ffffff;              /* white text */
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.25s ease;
}

button:hover,
.button:hover,
.wp-block-button__link:hover,
.add_to_cart_button:hover,
.wc-forward:hover,
.checkout-button:hover {
  background-color: #4f5b63;   /* darker hover */
  transform: translateY(-2px);
}

/* VIEW CART BUTTON (Shop Page) -------------------- */
.view-cart-button {
  display: inline-block;
  margin: 15px auto 25px;
  text-align: center;
}

/* PAYMENT BUTTON ALIGNMENT ------------------------ */
.wc_payment_methods .wc_payment_method {
  margin-bottom: 12px !important;
}

.wc_payment_methods img,
.wc_payment_methods label {
  display: inline-block;
  vertical-align: middle;
}

/* “BACK TO SHOP” LINK ----------------------------- */
.woocommerce-breadcrumb a:first-child {
  content: "Shop";
  color: #65727b;
  text-decoration: none;
}
.woocommerce-breadcrumb a:first-child:hover {
  color: #4f5b63;
  text-decoration: underline;
}

/* PRODUCT GRID TIDY ------------------------------- */
ul.products li.product {
  width: 22%;
  margin: 1.5%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 15px;
}
ul.products li.product img {
  border-radius: 6px;
  transition: transform 0.25s ease;
}
ul.products li.product img:hover {
  transform: scale(1.03);
}
ul.products li.product .woocommerce-loop-product__title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}

/* CART PAGE --------------------------------------- */
.woocommerce-cart table.shop_table {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

/* FOOTER ------------------------------------------ */
.site-footer {
  background-color: #65727b;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
.site-footer a {
  color: #ffeef5;
}
.site-footer a:hover {
  color: #ffffff;
}
.paypal-button {
  display: block;
  text-align: right;
  padding-right: 60px;
}
/* 🌈 Pause carousel on hover */
#book-carousel .carousel-track {
  animation: slide 35s linear infinite;
}

#book-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* 🌸 Yiayia & Sienna Colouring Intro Section (Astra version) */

#colouring-intro {
  background: linear-gradient(135deg, #ffeaf5 0%, #e6f4ff 50%, #fff5fb 100%) !important;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* keeps the gradient visible full-width even inside Astra container */
#colouring-intro .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* 🌿 floating white card */
#colouring-intro .intro-container {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 6px 25px rgba(255, 182, 193, 0.3);
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  color: #444;
  line-height: 1.7;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

/* gentle hover lift */
#colouring-intro .intro-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(255, 182, 193, 0.4);
}

/* highlight */
#colouring-intro .welcome-text strong {
  color: #fcb900;
}

#colouring-intro .encouragement {
  margin-top: 25px;
  color: #555;
}

/* 📱 mobile responsive */
@media (max-width: 600px) {
  #colouring-intro {
    padding: 70px 15px;
  }
  #colouring-intro .intro-container {
    max-width: 90%;
    padding: 40px 25px;
    font-size: 1rem;
  }
}
/* 🌸 Force mobile padding fix for hero section */
@media (max-width: 768px) {
  /* target the hero section directly */
  #colouring-hero {
    padding-top: 40px !important;   /* was 100px */
    padding-bottom: 60px !important; /* keep bottom balanced */
  }

  /* optional: slightly tighten the card padding inside */
  #colouring-hero .hero-content {
    padding: 35px 20px !important;
  }
}
/* 🌸 Miz Helena Books - Jetpack Contact Form Styling */
#contact-form-section,
.wp-block-jetpack-contact-form {
  background: linear-gradient(135deg, #fbeaff, #d8f5ff, #ffe9f1);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 650px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', 'Helvetica', sans-serif;
}

.wp-block-jetpack-contact-form label {
  display: block;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: #fff;
  font-size: 1em;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wp-block-jetpack-contact-form input:focus,
.wp-block-jetpack-contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 185, 0, 0.4);
}

.wp-block-jetpack-contact-form .wp-block-jetpack-button button,
.wp-block-jetpack-contact-form button[type="submit"] {
  background: linear-gradient(135deg, #ffb6c1, #ffd700);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 15px;
}

.wp-block-jetpack-contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* 🌈 Optional: add a centered top image */
.wp-block-image.size-full img {
  max-width: 150px;
  margin: 0 auto 20px;
  display: block;
}

.wp-block-jetpack-contact-form p {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}
/* 🌼 Miz Helena Books - Orange Contact Button */
.wp-block-jetpack-contact-form .wp-block-jetpack-button button,
.wp-block-jetpack-contact-form button[type="submit"] {
  background-color: #FCB900; /* orange */
  color: #000; /* black text */
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hover effect */
.wp-block-jetpack-contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  background-color: #e5a800; /* slightly darker orange on hover */
  color: #000;
}
/* 🌸 Center Contact Button */
.wp-block-jetpack-contact-form .wp-block-jetpack-button,
.wp-block-jetpack-contact-form button[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
  text-align: center;
}
/* 🌸 Fix footer button alignment */
#mizhelena-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#mizhelena-footer .footer-links a {
  display: inline-block !important;
  margin: 0 !important;
}
/* 🌸 Miz Helena Books Footer Styling */
#miz-footer {
  width: 100%;
  background: linear-gradient(135deg,#fbeaff,#d8f5ff,#ffe9f1);
  text-align: center;
  padding: 40px 20px;
  border-top: 3px solid rgba(252,185,0,0.3);
  font-family: 'Poppins','Helvetica',sans-serif;
}

#miz-footer .tagline {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 25px;
}

#miz-footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

#miz-footer .links a {
  background: #FCB900;
  color: #000;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}
#miz-footer .links a:hover {
  background: #e5a800;
  transform: translateY(-2px);
}

#miz-footer .copy {
  color: #555;
  font-size: 0.9em;
  border-top: 1px dashed rgba(0,0,0,0.1);
  padding-top: 15px;
}

/* Ensure Astra row uses full width */
.ast-footer-row {
  max-width: 100% !important;
  width: 100% !important;
}
/* 🌸 Miz Helena Books – Footer Fix */
.ast-footer-row-container {
  max-width: 100% !important;
  width: 100% !important;
}

#miz-footer {
  background: linear-gradient(135deg, #fbeaff, #d8f5ff, #ffe9f1);
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins','Helvetica',sans-serif;
  border-top: 3px solid rgba(252,185,0,0.3);
}

#miz-footer .tagline {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 25px;
}

#miz-footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

#miz-footer .links a {
  background: #FCB900;
  color: #000;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

#miz-footer .links a:hover {
  background: #e5a800;
  transform: translateY(-2px);
}

#miz-footer .copy {
  color: #555;
  font-size: 0.9em;
  border-top: 1px dashed rgba(0,0,0,0.1);
  padding-top: 15px;
  margin-top: 20px;
}
/* 🌸 Miz Helena Books – Footer Styling */
#miz-footer {
  background: linear-gradient(135deg, #fbeaff, #d8f5ff, #ffe9f1);
  text-align: center;
  padding: 40px 20px;
  border-top: 3px solid rgba(252,185,0,0.3);
  font-family: 'Poppins','Helvetica',sans-serif;
}

#miz-footer .copy {
  color: #444;
  font-size: 1em;
  margin-bottom: 10px;
}

#miz-footer .footer-links {
  margin-bottom: 20px;
  font-size: 0.95em;
}

#miz-footer .footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#miz-footer .footer-links a:hover {
  color: #e5a800;
}

#miz-footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

#miz-footer .social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#miz-footer .social-icons img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/* 🌸 Miz Helena Footer Styling – WordPress.com Premium compatible */
.mizhelena-footer {
  background: linear-gradient(135deg, #fbeaff, #d8f5ff, #ffe9f1);
  padding: 50px 20px;
  text-align: center;
  border-top: 3px solid rgba(252,185,0,0.3);
  font-family: 'Poppins', 'Helvetica', sans-serif;
}

.mizhelena-footer p {
  margin: 0 0 15px 0;
  color: #444;
  font-size: 1em;
}

.mizhelena-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mizhelena-footer a:hover {
  color: #FCB900;
}

.mizhelena-footer .wp-block-social-links {
  justify-content: center;
  margin-top: 15px;
}

.mizhelena-footer .wp-block-social-link {
  background-color: #FCB900 !important;
  color: #000 !important;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mizhelena-footer .wp-block-social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/* 🌸 Miz Helena Books – Footer Styling */
.mizhelena-footer {
  background: linear-gradient(135deg, #fbeaff, #d8f5ff, #ffe9f1);
  padding: 50px 20px;
  text-align: center;
  border-top: 3px solid rgba(252,185,0,0.3);
  font-family: 'Poppins', 'Helvetica', sans-serif;
}

.mizhelena-footer p {
  margin: 0 0 15px 0;
  color: #444;
  font-size: 1em;
}

.mizhelena-footer a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mizhelena-footer a:hover {
  color: #FCB900;
}

.mizhelena-footer .wp-block-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

.mizhelena-footer .wp-block-social-link {
  background-color: #FCB900 !important;
  color: #000 !important;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mizhelena-footer .wp-block-social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
/* 🌸 Cloud Wave Divider Above Footer */
.mizhelena-footer {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.mizhelena-footer::before {
  content: "";
  position: absolute;
  top: -100px; /* move up more if needed */
  left: 0;
  width: 100%;
  height: 120px;
  background: url('/* 🌸 Cloud Wave Divider Above Footer */
.mizhelena-footer {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.mizhelena-footer::before {
  content: "";
  position: absolute;
  top: -100px; /* move up more if needed */
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://mizhelenabooks.com.au/wp-content/uploads/2025/10/clouds.png') no-repeat center top;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}
') no-repeat center top;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}


/* Ensure the footer positions correctly */
.mizhelena-footer {
  position: relative;
  overflow: hidden;
}
/* 🌸 Force visible social icons in footer */
.mizhelena-footer .wp-block-social-links,
.mizhelena-footer .wp-social-link,
.mizhelena-footer .wp-block-social-link,
.mizhelena-footer .wp-block-social-links svg {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  fill: #000 !important; /* makes the icons black */
  color: #000 !important;
  z-index: 10 !important;
}

.mizhelena-footer .wp-block-social-links {
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 15px !important;
  position: relative !important;
}

.mizhelena-footer .wp-block-social-link {
  background-color: #FCB900 !important;
  border-radius: 50% !important;
  padding: 6px !important;
  width: 32px !important;
  height: 32px !important;
  align-items: center !important;
  justify-content: center !important;
}
/* 🌸 Miz Helena Books – Light Airy Block Spacing Fix */

/* Gently reduce vertical gaps between boxes */
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Prevent paragraphs inside blocks from adding extra hidden space */
.wp-block-group p:last-child,
.wp-block-cover p:last-child {
  margin-bottom: 0 !important;
}

/* Keep the pastel floating card feel */
.wp-block-group.has-background {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  background: #fff;
}
/* 🌿 Center PayPal buttons on all devices */
form[action*="paypal"], 
.paypal-button, 
.paypal-button-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
}

/* 📱 Fine-tune for mobile */
@media (max-width: 768px) {
  form[action*="paypal"],
  .paypal-button,
  .paypal-button-container {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
/* 🌸 Restore Back to Home Button */
#review-button-container {
  text-align: center !important;
}

#review-button-container .review-button {
  display: inline-block !important;
  background-color: #FCB900 !important;
  color: #000000 !important;
  padding: 12px 28px !important;
  border-radius: 30px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
}

#review-button-container .review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* 🌿 Style the Site Reviews “Submit” button */
form.glsr-form input[type="submit"],
.glsr-review-form input[type="submit"],
.glsr-form button[type="submit"],
.glsr-review-form button[type="submit"] {
  background-color: #FCB900 !important;   /* orange background */
  color: #000000 !important;              /* black text */
  border: none !important;
  border-radius: 30px !important;
  padding: 12px 28px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 25px auto !important; /* centred */
  width: auto !important;
  cursor: pointer;
}

form.glsr-form input[type="submit"]:hover,
.glsr-review-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
html, body {
  overflow-x: hidden !important;
}
/* 🛍️ Product Grid Uniformity */
.merch-card img {
  width: 100%;
  height: 300px;            /* force equal display height */
  object-fit: contain;      /* ensures full product fits inside */
  display: block;
  margin: 0 auto;
}

/* 🩷 Card Styling */
.merch-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 30px 20px;
  margin: 30px auto;
  max-width: 400px;
}

/* 🛒 Button Polishing */
.merch-card .buy-button {
  background: #FFC300; /* your pastel yellow */
  border-radius: 50px;
  padding: 10px 24px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.merch-card .buy-button:hover {
  background: #FFD84D;
  transform: scale(1.05);
}
/* --- Stop Astra cropping the featured image --- */
.ast-page-featured-section img,
.ast-archive-featured-img img,
.ast-single-post-featured-img img {
  object-fit: contain !important;  /* show full image */
  object-position: center center !important; /* center image */
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  background-color: #fff; /* optional clean background */
}
.resource-thumb {
  flex: 0 0 140px;
  max-width: 140px;
}

.resource-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
/* Limit the form width and center it */
.dream-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Make fields soft + airy */
.dream-form-wrapper input,
.dream-form-wrapper select,
.dream-form-wrapper textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  border: 1px solid #e2d7cc !important;
  background: #fffdf8 !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
}

/* Radio buttons */
.dream-form-wrapper input[type="radio"] {
  width: auto !important;
}

/* Submit button */
.dream-form-wrapper .button {
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  background: #c48a7a !important;
  color: white !important;
  border: none !important;
}
.mini-mag-thankyou {
    max-width: 750px;
    margin: 60px auto;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    border: 1px solid #e8e2da;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
    font-family: "Georgia", serif;
    color: #3a2e2e;
    line-height: 1.7;
}

.mini-mag-thankyou h1 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2f2626;
}

.mini-mag-thankyou h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #4a3f3f;
}

.mini-mag-thankyou p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.mini-mag-thankyou ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.mini-mag-thankyou hr {
    border: none;
    border-top: 1px solid #e8e2da;
    margin: 35px 0;
    opacity: 0.6;
}
.magical-button {
    display: inline-block;
    padding: 14px 28px;
    background: #7a5c58;
    color: #ffffff;
    font-family: "Georgia", serif;
    font-size: 1.15rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

.magical-button:hover {
    background: #5f4744;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.16);
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f8f5ff 0%, #f1ecfa 40%, #eaf4ff 100%);
    font-family: "Georgia", serif;
    color: #3a2e2e;
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px 140px;
    position: relative;
}

h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #2f2626;
    letter-spacing: 0.5px;
}

p.subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #5a4d4d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blurb-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 35px 45px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e2da;
    margin-bottom: 60px;
    backdrop-filter: blur(6px);
}

.blurb-box p {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #4a3f3f;
    text-align: center;
}

.form-wrapper {
    background: #ffffff;
    padding: 45px 55px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e2da;
    max-width: 600px;
    margin: 0 auto;
}

#mc_embed_signup {
    background: transparent !important;
    font-family: inherit !important;
    width: 100% !important;
}

.mc-field-group label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
    color: #4a3f3f;
}

.mc-field-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #d8cfc5;
    background: #fdfbf8;
    font-size: 1rem;
    margin-bottom: 18px;
}

#mc-embedded-subscribe {
    background: #7a5c58;
    color: white;
    padding: 14px 20px;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}

#mc-embedded-subscribe:hover {
    background: #5f4744;
}
@media (max-width: 781px) {

  /* Widen the INNER card only */
  .bush-adventure-card
  .wp-block-column > .wp-block-group {
    max-width: 100% !important;
    width: 100% !important;
  }

}

@media (max-width: 781px) {

  .bush-adventure-card
  .wp-block-column > .wp-block-group {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

}
.bush-adventure-card { outline: 4px solid red !important; }
@media (max-width: 781px) {
  .bush-adventure-card .wp-block-group.is-layout-constrained > * {
    max-width: 100% !important;
  }
}
@media (max-width: 781px) {

  /* Make the main card use more of the screen */
  .bush-adventure-card .wp-block-columns {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  /* Remove the big image side margins on mobile */
  .bush-adventure-card figure.wp-block-image {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 781px) {

  /* Make THIS inner card use more screen width */
  .bush-adventure-card .inner-wide-card{
    width: calc(100vw - 24px) !important;  /* leaves a small gutter */
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

}
@media (max-width: 781px) {

  /* Widen JUST the inner card panel */
  .bush-adventure-card .bush-inner-card{
    width: calc(100vw - 16px) !important;   /* small gutter */
    max-width: calc(100vw - 16px) !important;
    margin-left: calc(50% - 50vw + 8px) !important;
    margin-right: calc(50% - 50vw + 8px) !important;
    box-sizing: border-box !important;
  }

}

@media (max-width: 781px) {

  /* 1) Let the inner “card” column span the available width */
  .bush-adventure-card .wp-block-columns.bush-adventure-card {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* 2) BREAK the constrained content width inside the inner card */
  .bush-adventure-card .inner-wide-card.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100% !important;
  }

  /* 3) Also widen the inner group that holds the content */
  .bush-adventure-card .inner-wide-card .bush-inner-card.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100% !important;
  }

}
@media (max-width: 781px) {

  .bush-adventure-card .inner-wide-card,
  .bush-adventure-card .bush-inner-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .bush-adventure-card .inner-wide-card.is-layout-constrained > *,
  .bush-adventure-card .bush-inner-card.is-layout-constrained > * {
    max-width: 100% !important;
    width: 100% !important;
  }

}
/* Miz Helena – Bush Adventure (mobile-first, no Columns block) */
.mh-bush-feature{
  padding: 22px 14px;
}

.mh-bush-wrap{
  max-width: 980px;
  margin: 0 auto;
}

/* Main card */
.mh-bush-card{
  background: var(--ast-global-color-4);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--wp--preset--shadow--deep);
}

.mh-bush-card h3{
  margin: 0 0 10px;
  text-align: center;
  color: var(--wp--preset--color--vivid-red);
  line-height: 1.25;
}

.mh-bush-blurb{
  margin: 0 0 14px;
  text-align: center;
  line-height: 1.6;
}

.mh-bush-media{
  background: var(--ast-global-color-5);
  border-radius: 22px;
  padding: 12px;
  overflow: hidden;
}

.mh-bush-media a{ display:block; }
.mh-bush-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.mh-bush-cta{
  margin-top: 14px;
}

.mh-bush-cta a{
  display: block;
  width: 100%;
  text-align: center;
  background: var(--wp--preset--color--luminous-vivid-amber);
  color: var(--ast-global-color-2);
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--wp--preset--shadow--natural);
}

/* Two supporting cards: stack on mobile */
.mh-bush-two{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mh-mini-card{
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--wp--preset--shadow--deep);
}

.mh-mini-card h4{
  margin: 0 0 10px;
  text-align: center;
  color: var(--wp--preset--color--vivid-red);
  line-height: 1.25;
}

.mh-mini-card p{
  margin: 0 0 14px;
  text-align: center;
  line-height: 1.6;
}

.mh-mini-card a{
  color: inherit;
}

.mh-mini-cta a{
  display: block;
  width: 100%;
  text-align: center;
  background: var(--wp--preset--color--luminous-vivid-amber);
  color: var(--ast-global-color-2);
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--wp--preset--shadow--natural);
}

/* Desktop: make the two cards sit side-by-side */
@media (min-width: 782px){
  .mh-bush-feature{ padding: 34px 18px; }

  .mh-bush-card{
    padding: 22px;
  }

  .mh-bush-blurb{
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .mh-bush-media{
    max-width: 560px;
    margin: 0 auto;
  }

  .mh-bush-cta a{
    max-width: 520px;
    margin: 0 auto;
  }

  .mh-bush-two{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.mh-bush-feature { outline: 4px solid red !important; }

/* Style the faux placeholder */
.contact-form textarea {
    color: #999;
}

/* When user focuses the field, clear the faux placeholder look */
.contact-form textarea:focus {
    color: #333;
}
.contact-form textarea:focus {
    color: #333;
}

.contact-form textarea:focus-visible {
    color: #333;
}
.contact-form input[type="submit"] {
    display: block;
    margin: 1.2em auto 0 auto;
    padding: 10px 22px;
    background-color: #c7b4ff;   /* soft lavender */
    color: #fff;
    border: none;
    border-radius: 8px;          /* rounded corners */
    font-size: 15px;
    cursor: pointer;
}

/* Soft hover */
.contact-form input[type="submit"]:hover {
    background-color: #b7a3f5;
}
/* Make the submit row a flex container and centre its contents */
.wp-block-jetpack-contact-form .contact-submit,
.contact-form .contact-submit {
    display: flex !important;
    justify-content: center !important;
}


.sg-curved-header {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}

.sleepy-category-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 1rem 1rem 2rem;
}

.sleepy-category-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a4a4a;
}

.sleepy-category-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #4a4a4a;
}

.sleepy-stars {
  font-size: 1.3rem;
  color: #7bb7c9; /* dream-dust blue */
  opacity: 0.55;
  letter-spacing: 0.3rem;
  margin: 2rem 0;
}

.mh-blog-links {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #e6d8e3;
  font-size: .95rem;
  line-height: 1.7;
}

.mh-blog-links p {
  margin: 0 0 .6rem;
}

.mh-blog-links a {
  text-decoration: none;
  font-weight: 600;
  color: #7bb7c9; /* dream-dust blue */
}

.mh-blog-links a:hover {
  text-decoration: underline;
}

.sg-story-box {
  max-width: 520px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 2px solid #f3e8ff;
}

/* Floral corner images */
.sg-story-box:before,
.sg-story-box:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("https://i.imgur.com/0yqYp8G.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.sg-story-box:before {
  top: -18px;
  left: -18px;
}

.sg-story-box:after {
  bottom: -18px;
  right: -18px;
}

.sg-story-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}