/** Shopify CDN: Minification failed

Line 348:0 Unexpected "}"

**/

/* ##### All fonts redefined #### */

h1 {
  font-family: 'euphorigenic', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
}
h2{
  font-family: 'euphorigenic', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 36px;
  
}
h3{
  font-family: 'euphorigenic', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 28px;
  
}
h4{
  font-family: 'D-DIN BOLD', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 26px;
}
h5{
  font-family: 'D-DIN BOLD', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 18px;
}

h6{
  font-family: 'D-DIN BOLD', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 16px;
}

p{
  font-family: 'D-DIN', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  font-size: 17px;
}



/* Announcement bar image */
.section-background {
  background-image: url("https://cdn.shopify.com/s/files/1/0927/1672/8593/files/announcementBar.png?v=1751039294");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* adjust text color if needed */
}
.orange-text{
  font-family: 'D-DIN-Bold', sans-serif !important;
  font-size: 18px;
}

.blue-text{
  font-family: 'D-DIN-Bold', sans-serif !important;
  font-size: 18px;
}


p.announcement-bar__text {
  font-family: 'D-DIN-Bold', sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  color: #fff; 
}

/* Menu bar */

.header__row--top{
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.49) 0%,
    rgba(7, 125, 202, 0.49) 50%,
    rgba(0, 0, 0, 0.49) 100%
  );
  /* Optional: for contrast */
}



.header-menu__inner .menu-list__list {
  display: flex;    /* ensure it’s a flex container */
  gap: 15px;        /* ← adjust to your desired space */
}





 /* Menu cart icon */
.menu-list__link-icon {
  width: 24px !important;
  height: 24px !important;
  display: inline-block !important;
  vertical-align: middle !important;

}

 /* submenu */
.menu-list__list-item {
  position: relative;
}

.simple-menu__item {
  position: relative;
  list-style: none;
}

.simple-menu__link {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: var(--color-foreground);
}

/* Dropdown container */

/* 1) Make sure header row allows overflow */
.header__row--top {
  overflow: visible !important;
  z-index: 100; /* keep submenu above other content */
}

/* 2) Position & style the dropdown container */
.menu-list__list-item {
  position: relative;
}

.menu-list__list-item > .menu-list__submenu {
  display: flex !important;           /* stack items vertically */
  flex-direction: column !important;  
  align-items: flex-start !important; /* left-align labels */

  position: absolute;
  top: 100%;      /* immediately below parent menu item */
  left: 0;        
  margin: 0;
  padding: 0.25em 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.49) 0%,
    rgba(7, 125, 202, 0.49) 50%,
    rgba(0, 0, 0, 0.49) 100%
  ) !important;

  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  min-width: max-content;  /* only as wide as the content */
  z-index: 1000;

  /* fade + slide in */
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* 3) Reveal on hover or keyboard focus */
.menu-list__list-item:hover > .menu-list__submenu,
.menu-list__list-item:focus-within > .menu-list__submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* 4) Reset list styling inside the dropdown */
.menu-list__list-item > .menu-list__submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list__list-item > .menu-list__submenu li {
  margin: 0;
  padding: 0;
}

/* 5) Style the links inside */
.menu-list__list-item > .menu-list__submenu a {
  display: block;
  padding: 0.5em 1em;
  white-space: nowrap;
  color: var(--color-foreground);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-list__list-item > .menu-list__submenu a:hover {
  background: var(--color-primary);
  color: #fff;
}





/* ###### HEADER  ####*/

.header__columns.spacing-style {
    transition: transform .3s ease;
    transition: height .3s ease;
    margin-right: 45px !important;
    margin-left: 45px !important;
}

/* hero custom for mobile 
@media (max-width: 768px) {
  .group-block-content {
    text-align: center; 
    padding-top: 20px;
    padding-bottom: 12px;
  }
  h1,
  p {
    text-align: center;
  }
  h1 {
    line-height: 1.4;
  }
}*/


/* hero custom for mobile 
@media (max-width: 768px) {
  .group-block-content {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
  }
  h1,
  h2,
  p,
  h5,
  strong {
    text-align: center !important; 
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px !important;
    padding: 30px 0px !important;
    margin: 0px !important;
  }
  p {
    font-size: 16px !important;
  }
}


@media (max-width: 768px) {
  .group-block-content {
    text-align: center; 
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 12px;
    margin-left: 10px;
  }
  h1,
  h2,
  p,
  h5,
  strong {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 40px !important;
  }
  p {
    font-size: 18px !important;
  }
}*/


/* ————————————————————————————————
   Collapse excess vertical space on mobile
   ———————————————————————————————— */
@media (max-width: 768px) {
  .group-block,
  .group-block-content {
    margin: 20px 0px !important;
    padding: 0 !important;
    text-align:center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    
      /* fall back color if image fails 
  background-color: #00008b;*/

  /* stack gradient + image */
  background-image:
    linear-gradient(rgba(11, 11, 57, 0.77)),
  background-size: cover;
  background-position: center;
  }
  }



  .group-block-content h1,
  .group-block-content h2,
  .group-block-content h3 {
    margin: 0.2em 0 !important;
    line-height: 1.2 !important;
  }
  .group-block-content p {
    margin: 0.5em 0 !important;
    line-height: 1.4 !important;
  }

  .group-block-content h5,
  .group-block-content strong {
    margin: 0.3em 0 !important;
    line-height: 1.3 !important;
  }

  .button-wrapper {
    margin-top: 0.8em !important;
  }

  .group-block-content h1 br {
    display: none;
  }
}

/* ————————————————————————————————
        small screens
   ———————————————————————————————— */
@media (max-width: 480px) {
  .group-block-content h1 {
    font-size: 1.8rem !important;
  }
  .group-block-content p {
    font-size: 0.9rem !important;
  }
}

/* HERO Button*/
.button,
.shopify-payment-button__button,
.btn {
  border-radius: 21px;
  border: 0;
  font-family: 'D-DIN-Bold', sans-serif !important;
  font-size: 18px;
  height: 38px;
  width: 195px
  /* top-left, top-right, bottom-right, bottom-left */
}
.button-secondary{
  border-radius: 21px;
  border: 0;
  height: 38px;
  width: 195px;
}




/* HERO Box position */
@media (min-width: 768px) {
  .group-block-content {
    margin-left: -10%;
  }
  .button-secondary{
   padding-top: 5px;
}
  
}

/* HERO Headline*/



/* HERO Buttons*/
.hero-box .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-box .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button--secondary,
.btn--secondary {
  font-family: 'D-DIN-Bold', sans-serif !important;
  background-color: #5dade2;
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 21px;
  height: 38px;
  width: 195px;
  transition: all 0.3s ease; /* Smooth hover transition */
}
.button--secondary:hover,
.btn--secondary:hover {
  background-color: rgba(44, 62, 80, 0.8); /*  40% opacity */
  color: #5dade2;
  border: 2px solid #5dade2;
}

@media (max-width: 767px) {
  .hero-box {
    display: flex; 
    gap: 5px;
    flex-direction: column; /* Optional: stacks the buttons vertically */
    align-items: center;     /* Centers them horizontally */
  }

  .hero-box .button {
    width: 100%;              /* Optional: makes them full width on mobile */
    max-width: 195px;         /* Maintains the original width limit */
  }
  /*
  .group-block-content{
    
  }*/
  


}




/* What is Gochuckle*/
/*

.gochuckle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}
*/
.gochuckle-wrapper {
  background-color: #ffffff;
  width: 100%;
}


.gochuckle-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding: 60px 80px;
  max-width: 1440px;
  margin: 0 auto;
  background-color: transparent;
  box-sizing: border-box;
}

.gochuckle-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.gochuckle-heading {
  font-family: 'euphorigenic', sans-serif !important;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 0;
  color: #5dade2;
}

.gochuckle-description {
  font-family: "D-DIN", sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #444;
}

.gochuckle-button {
  background-color: #5dade2;
  color: #fff;
  padding: 10px 24px;
  border-radius: 21px;
  font-size: 16px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 24px;
}

.gochuckle-button:hover {
  background-color: rgba(242, 242, 242, 0.4);
  color: #5dade2;
  border: 2px solid #5dade2;
}

/* Horizontal Trust Badges */
.gochuckle-badges {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  text-align: center;
  flex-shrink: 0;
}

.badge-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
}

.badge-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #444;
}

/* 2x2 Image Grid */
.gochuckle-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  height: 100%;
}

.gochuckle-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ✅ Mobile Responsive Layout */
@media (max-width: 1024px) {
  .gochuckle-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }

  .gochuckle-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .badge-item {
    width: 70px;
  }

  .gochuckle-button {
    text-align: center;
    margin: 15px 15px;
    width: 100%;
    max-width: 300px;
  }
  .gochuckle-heading {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;

  }
    .gochuckle-description{
    text-align: center;
    margin-bottom: 10px;
    
  }
}



/* ##### Expolre Section #### */



.content-explore {
  font-family: 'euphorigenic', sans-serif !important;
  font-weight: 0;
  line-height: 1.7;
  color: #5dade2;
  background-color: #ffffff;
  width: 100%;
  padding: 20px;
  text-align: center; /* ✅ Centers inline text and inline-block elements */
}


/* assets/featured-games.css */
.game-section {
  position: relative;
  color: white;
  padding: 80px 20px;
  overflow: hidden;
}
.game-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px 20px;
  border-radius: 12px;
}
.game-box {
  width: 200px;
  margin: 20px auto;
}
.feature-buttons,
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
button {
  background: rgba(255,255,255,0.95);
  color: #111;
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
}
.bg-top-left::before,
.bg-bottom-right::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
  opacity: 0.7;
}
.bg-top-left::before {
  background-image: url('{{ "hasty-baker-bg.png" | asset_url }}');
}
.bg-bottom-right::before {
  background-image: url('{{ "house-hounds-bg.png" | asset_url }}');
  right: 0;
  left: auto;
  background-position: bottom right;
}
.orange-theme .game-inner {
  background-color: rgba(255, 140, 0, 0.8);
}
.blue-theme .game-inner {
  background-color: rgba(30, 144, 255, 0.8);
}






/* ##### Reviews #### */

.testimonial-slide {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* ##### Newsletter #### */
.background-image-container {
  background-color: white;
}
.email-signup__input {
  height: 40px;
  padding: 20px;
  width: 40%;
}


/* ##### Newsletter #### */





/* ##### Judge me app reviews #### Hidden title and customer reviews section */

.jdgm-rev-widg__title {
  display: none;
}
/*
.jdgm-rev-widg__reviews {
  display: none !important;
}
.jdgm-rev-widg__sort-wrapper {
  display: none !important;
}
*/
/* ##### Judge me carousel cards #### */
/*
.jdgm-carousel-item__reviewer-name {
  background-image: url("https://cdn.shopify.com/s/files/1/0927/1672/8593/files/card_background.png?v=1751119450");
  background-size: cover;
  background-position: center;
  font-weight: bold;
  opacity: 0.6;
}

.jdgm-carousel-item {
  
  margin: 5px 2px;
  border-radius: 12px;
  padding: 20px;
  color: white;
}
@media only screen and (max-width: 768px) {
  .jdgm-carousel__item-container,
  .jdgm-carousel-number-of-reviews--verified,
  .jdgm-all-reviews-rating-wrapper, .jdgm-carousel__arrows, .custom-section-content {
    display: none;
  }

  .section-wrapper {
    display: none;
  }
}*/



/* WHOLESALE REG FORM*/

.wsg-proxy-container .wsg-hidden-container{
  color: #008cff;
  padding-bottom: 15px;
}


/* ##### privacy policy page #### */

.shopify-policy__container{
  color:rgb(1, 1, 39);
  padding-top: 80px;
}


.shopify-policy__container h1{
  color:#008cff;
}














