: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; }
}
