:root {
  --cassiopeia-color-primary: #0059B8;
  --cassiopeia-color-link: #30638d;
  --link-color: #30638d;
  --link-color-rgb: 48, 99, 141;
  --cassiopeia-color-hover: #0059B8;
  --link-hover-color: #0059B8;
  --link-hover-color-rgb: 149, 75, 86;
}
.default_cart_module_text{
  color: #ffFFFF;
}

h1, .h1{
  color: #ff6600;
}
* on the home page, set the background colour of the header to transparent and make it fixed */

.ishome .container-header {
  background-color: transparent;
  color: #ffFFFF;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
}

/* set the background colour of the header on regular pages and when the page has scrolled*/
.container-header,
.container-header.scrolled {
  background-color: #0059B8;
  background-image: unset;
}

/* remove the margin from the module containing the logo */
.mod-custom p {
  margin: 0;
}

/* set the large banner to take up the full height of the viewport */
.container-banner .banner-overlay {
  height: 100vh;
}
/* Move back to top button from right to left */

.back-to-top-link {
  z-index: 10000;
  color: var(--cassiopeia-color-primary, #112855);
  pointer-events: all;
  background-color: var(--white, #fff);
  border: 1px solid var(--cassiopeia-color-primary, #112855);
  opacity: 0;
  inset-inline-end: 1rem;
  border-radius: .25rem;
  padding: .5em;
  transition: opacity .2s ease-in;
  position: fixed;
  right: 200px; /* Adjust this value to your preference */
}

.back-to-top-link.visible {
  opacity: 1;
}

.back-to-top-link:hover, .back-to-top-link:focus {
  color: var(--white, #fff);
  background-color: var(--cassiopeia-color-hover);
  border-color: var(--white, #fff);
}



@media (max-width: 768px) {
  /*.ishome .container-header, /* only required if using the full screen image on the home page */
  .container-header {
      position: fixed!important;
      top: auto;
      bottom: 0;
      width: 100%;
      padding: 0;
      background-color: #0059B8;
      background-image: unset;
  }
 .navbar-collapse {
      position: fixed;
      bottom: 60px;
      left: 0;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 15px;
      width: 100%;
      background: #0059B8;
      height: auto;
      overflow: auto;
  }
  .navbar-collapse.collapsing {
    height: auto;
    transition: left 0.3s ease;
    left: -100%;
  }

  .navbar-collapse.show {
    left: 0;
    transition: left 0.3s ease-in;
  }
 .navbar-toggler {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: block;
    width: 70px;
    height: 70px;
    background-color: #0059B8;
    border: 4px solid #ffff00 !important;
    border-radius: 40px;
    right: 10px;
  }
  .container-header img {
    max-width: 75%;
  }


  /* The Modal (minor tweaks)             Most of the CSS exists in Cassiopeia template */

.modal {
  top: 50%;                             /* Centre vertically on screen */
  left: 50%;                            /* Centre horizontally on screen */
  width: auto;
  height: auto;
  overflow: auto;                       /* Enable scroll if needed */
  transform: translate(-50%, -50%);     /* Position the modal in centre of screen */
}

.modal-header {
  border: none;
  display: inline;
}

.modal-body {
  padding: 2px 16px;
}

/* The Close Button (minor tweaks) */

.close {
  float: inline-end;
  margin: 10px -23px 0;
  padding: 3px 4.2px;
  line-height: 0.8em;
  transform: translate(-50%, -50%);
}

.close:hover, .close:focus {
  text-decoration: none;
  cursor: pointer;
  background-color: #dfdfdf;
  border-radius: 10px;
}


/* ===== BULLETPROOF PRODUCT GRID ===== */
.ice-pop-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    margin: 20px 0 !important;
}

.ice-pop-grid .product {
    text-align: center !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

.ice-pop-grid .product img {
    height: 125px !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
}

.ice-pop-grid .product h3 {
    font-size: 1.1em !important;
    margin: 10px 0 !important;
    line-height: 1.3 !important;
}

.ice-pop-grid .product h3 a {
    color: #333 !important;
    text-decoration: none !important;
}

.ice-pop-grid .product h3 a:hover {
    color: #d9534f !important; /* hover color */
    text-decoration: underline !important;
}

.ice-pop-grid .cart-button {
    margin-top: 10px !important;
}



  
