/** Shopify CDN: Minification failed

Line 446:0 Unexpected "<"

**/
.menu-drawer__utility-links{
  padding-bottom:200px!important;
}

a:link{
  color: white;
}


.cart-notification-wrapper {
    position: relative;
    z-index: 100000!important;
}


h1{
  font-weight:900!important;
}
h2{
  font-weight:900!important;
}


.card-wrapper {
padding:10px;
}

.card__inner{
  background:none!important;
}

.card__media img{
  border-radius:8px 8px 0px 0px!important;
}



/* MAIN PRODUCTS GRID ANIMATIONS */

@media (max-width: 650px) {
.grid-item:hover {
  border: 1px solid #444!important;
  transform: scale(1);
}

.grid-item:hover .overlay {
  background: rgba(0, 0, 0, 0.65)!important;
}
.card__information a{
  font-size:18px!important;
}
  .certificate {
    border-left: none!important;
    margin-left: none!important;
    padding-left: none!important;
}
}
.card__information {
    border: 1px solid #444;
  border-top:none;
  border-radius: 0px 0px 8px 8px !important;
}
.grid-item {
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
}

.grid-item .overlay {
  transition: background-color 0.15s ease;
  pointer-events: none; /* optional depending on interaction */
}

@media (min-width: 650px) {
.grid-item:hover {
  border: 1px solid #016ff8 !important;
  transform: scale(1.03);
}

.grid-item:hover .overlay {
  background-color: #016ff8a6 !important;
}
}
.grid-item {
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
}

.grid-item .overlay {
  transition: background-color 0.15s ease;
  pointer-events: none;
}

.grid-item.active {
  border: 1px solid #016ff8 !important;
  transform: scale(1.03);
}

.grid-item.active .overlay {
  background-color: #016ff8a6 !important;
}




/* MAPBOX CANVAS */
.mapboxgl-canvas {

  filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.1);

}

div#storepoint-brand {
    background-color: black;
}





/* DEFENDER TABS WIDE */

.banner__content{
  height: 100vh;
}

.collection__view-all{
  max-width:300px!important;
  margin:auto!important;
}
.feature-container {
    max-width: 80%!important;
    margin: auto!important;
}
.tab-contents {
    max-width: 100%!important;
    margin: 0 auto!important;
}

.collection-tab-contents {
    margin: auto!important;
  max-width:80%!important;
}

.faq-section {
    width: 90%!important;
    
    margin-left: auto!important;
    margin-right: auto!important;
}

.tab-text {
    padding: 6rem 7rem 7rem!important;
}





/* MAIN GRID ITEMS */
.grid-section{
  height: 70vh!important;
  min-height:70vh!important;
}


.image-with-text__content {
    display: flex!important;
    justify-content: center!important;
}
/* BLOG POST ARROW STYLING */




.button {
  display: flex!important;
}
.header__menu-item{
  color: white!important;
}
/*BUTTON STYLING*/
 .button {
   transition: transform 0.2s ease; /* Smooth animation when moving */
  position: relative;
 background-color:#00000075;
  color: white;
  border-radius: 100px;
  padding: 12px 24px;
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  border: none !important; /* Force removal of any default borders */
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.button:hover {
  transform: translateY(-5px); /* Move up 5px */
}
.button::after {
  border: none !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-size: 100% 50%!important;
  bottom: 0;
  border-radius: 100px;
  padding: 1px; /* Thickness of border */
  background: linear-gradient(90deg, rgba(255,255,255,1) 11%, rgba(145,145,145,1) 37%, rgba(34,34,34,1) 67%, rgba(255,255,255,1) 100%);
  -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
   transition: background-size 0.2s ease;
}

.button:hover::before {
  
  background-size: 300% 200%!important;
}




/*MAIN GRID COLUMS CODE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Now 3 columns max */
  grid-auto-rows: 1fr; /* Ensures equal height rows */
  width: 100vw; /* Full width */
  min-height: 100vh; /* At least full screen height */
}

@media (max-width: 768px) {
  .grid-section {
    grid-template-columns: 1fr; /* Switch to 1 column on small screens */
  }
}

.grid-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; 
}

.grid-item::before {
  content: "";
  display: block;
  padding-top: 100%; /* Makes it a square */
}

.grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the grid */
  transition: transform 0.2s ease-in-out;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the label */
  background: rgba(0, 0, 0, 0.65);
  padding: 10px 15px;
  border-radius: 25px;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 1;
  
}








/* CUSTOM FOOTER CODE */
/* Footer Styles */
.footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 300px;
    font-size: 14px;
    color: #bbb;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: white;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-button {
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.footer-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}



/* BANNER HEADING HIGHLIGHT */

.banner__heading {
  color: #ffffff; /* White text */
  font-size: 48px; /* Adjust as needed */
  font-weight: bold;
  text-transform: uppercase;
}

.banner__heading .highlight {
  color: rgba(1, 111, 248, 1); /* Blue color for #1 */
}




/* STYLE THE NAVIGATION AND HEADER */

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* keeps it on top */
  max-width: 100% !Important;
  display:flex!important;
  justify-content: space-between;
}

.shopify-section.menu-open .header {
  background: black !important;
}

#MainContent {
  margin-top: 0 !important;
}

/* Parent header layout */
.header {
    padding: 0px!important;
  width:100%!important;
  margin:0px!important;
}

</style>


