:root {
	--display-font-family: Copse;
	--body-font-family: Raleway;

	--font-size: 16px

	--logo-padding: 0px;
	--logo-height: 206px;

	--header-width: 1366px;
	--header-border-position: bottom;
	--header-border-size: 10px;
	--header-bg-color: 255 255 255;
	--header-border-color: transparent;

	--brand-color: 139 47 28;
	--brand-color-inverted: 255 15 ;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 36 71 227;

	--action-color: 177 86 27;
	--action-color-inverted: 255 15 ;

	--announcement-bar-bg-color: 189 45 45;
	--announcement-bar-text-color: 61 61 61;
	--announcement-bar-link-color: 61 61 61;

	--main-navigation-bg-color: 255 255 255;
	--main-navigation-link-color: 0 0 0;
	--main-navigation-link-color-hover: 139 47 28;
	--main-navigation-link-bg-color: 66 54 38;
	--main-navigation-link-font-size: 20px;
	--main-navigation-link-alignment: center;

	--auxiliary-bg-color: transparent;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: inherit;

	--order-status-bg-color: 155 126 47;
	--order-status-color: 255 255 255;

	--store-menu-bg_color: 248 248 248;
	--store-menu-color: 119 7 ;

	--footer-bg-color: 177 86 27;
	--footer-color: 255 15 ;
	--footer-link-color: 255 15 ;
}

/*Custom Styles*/
.tw-text-theme-action-color {
  font-family: "Lora", serif;   /* or try "Open Sans", "Roboto", etc. */
  font-size: 18px;              /* adjust for size preference */
  font-weight: 600;             /* makes it stand out */
  letter-spacing: 0.5px;        /* optional – adds a little polish */
  text-transform: uppercase;    /* optional – makes all caps */
  color: #8b2f1c !important;    /* optional – your barn red accent */
}

/* Make the logo larger on mobile */ @media (max-width: 640px) { .logo__img.logo__img--style2 { max-height: 110px !important; /* adjust as needed */ width: auto; } }

/* Hide the homepage subheading on mobile */
@media (max-width: 640px) {
  .bannerWidget__subheading {
    display: none !important;
  }
}

/* Make the homepage heading smaller on mobile */
@media (max-width: 640px) {
  .bannerWidget__heading {
    font-size: 32px !important;   /* adjust up/down */
    line-height: 1.25 !important;
  }
}

/* ❄ Snow overlay only when body has class "snowing" */
body.snowing::before,
body.snowing::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;

  /* start fully visible, allow fade */
  opacity: 1;
  transition: opacity 1s ease-out;
}

/* Front flakes – larger, brighter, varied sizes */
body.snowing::before {
  background-image:
    radial-gradient(4px 4px at 20px 20px, rgba(255,255,255,0.95) 60%, transparent 61%),
    radial-gradient(6px 6px at 80px 60px, rgba(255,255,255,0.9) 60%, transparent 61%),
    radial-gradient(5px 5px at 140px 100px, rgba(255,255,255,0.85) 60%, transparent 61%),
    radial-gradient(7px 7px at 200px 40px, rgba(255,255,255,0.95) 60%, transparent 61%);
  background-size: 240px 240px;
  background-repeat: repeat;
  animation: snowFront 16s linear infinite;
}

/* Back flakes – larger but softer + more transparent for depth */
body.snowing::after {
  background-image:
    radial-gradient(5px 5px at 40px 30px, rgba(255,255,255,0.55) 60%, transparent 61%),
    radial-gradient(7px 7px at 120px 90px, rgba(255,255,255,0.5) 60%, transparent 61%),
    radial-gradient(4px 4px at 200px 50px, rgba(255,255,255,0.4) 60%, transparent 61%);
  background-size: 300px 300px;
  background-repeat: repeat;
  animation: snowBack 32s linear infinite;
}

/* Fade-out state (JS will add .snow-hidden) */
body.snowing.snow-hidden::before,
body.snowing.snow-hidden::after {
  opacity: 0;
}

/* Falling animation */
@keyframes snowFront {
  from { background-position: 0 0; }
  to   { background-position: 0 1200px; }
}

@keyframes snowBack {
  from { background-position: 0 0; }
  to   { background-position: 0 900px; }
}

@media (max-width: 700px) {
  /* Slim images ONLY inside widgets 58 and 136 */
  .photoGridWidget__listItemContainer[data-widget="58"] .photoGridWidget__listImage,
  .photoGridWidget__listItemContainer[data-widget="136"] .photoGridWidget__listImage {
    height: 140px;          /* adjust as needed */
    object-fit: cover;
    width: 100%;
    border-radius: 8px;      /* optional but looks clean */
  }

  /* Optional: tighten spacing */
  .photoGridWidget__listItemContainer[data-widget="58"],
  .photoGridWidget__listItemContainer[data-widget="136"] {
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 701px) {
  .bannerWidget {
    padding-top: 192px !important;
    padding-bottom: 192px !important;
  }
}

/* =============== TESTIMONIAL GRID LAYOUT =============== */
.testimonialsWidget--60 .testimonialsWidget__testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonialsWidget--60 .testimonialsWidget__testimonial {
  flex: 1 1 260px;          /* responsive cards */
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Let the quote area stretch, keep attribution at bottom */
.testimonialsWidget--60 .testimonial__bodyContainer {
  flex: 1;
}

.testimonialsWidget--60 .testimonial__body {
  position: relative;
  max-height: 7.5em;        /* controls “preview” height (about 4–5 lines) */
  overflow: hidden;
  line-height: 1.4;
  font-size: 1rem;
}

/* Fade-out at bottom of truncated text */
.testimonialsWidget--60 .testimonial__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.2em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}

/* Card click hint */
.testimonialsWidget--60 .testimonialsWidget__testimonial {
  cursor: pointer;
}

.testimonialsWidget--60 .testimonialsWidget__testimonial::after {
  content: "Tap to read full story";
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Make sure image + name stay together at bottom */
.testimonialsWidget--60 .testimonialAttribution {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* =============== MODAL STYLES =============== */
#jcm-testimonial-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 9998;
}

#jcm-testimonial-modal {
  position: fixed;
  inset: 10vh 1.25rem auto;
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

#jcm-testimonial-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

#jcm-testimonial-modal-photo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

#jcm-testimonial-modal-name {
  font-weight: 600;
  font-size: 0.95rem;
}

#jcm-testimonial-modal-body {
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-wrap;  /* keep line breaks from your text */
}

#jcm-testimonial-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Slightly tighter on phones */
@media (max-width: 700px) {
  #jcm-testimonial-modal {
    inset: 8vh 0.75rem auto;
    padding: 1rem 1.1rem 1.2rem;
  }
}
