/** Shopify CDN: Minification failed

Line 3541:0 Unexpected "}"

**/
document{
  height: 100.1%
}
/* Core layout elements */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    height: auto;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}


#main-container {
    position: relative;
    width: 100%;
}

/* Header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 998;
}

.header-content {
  width: 100%;
  background-color: white;
}

.ticker-wrap {
  width: 100%;
  height: 29px;
  background: #2A2A2A;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.ticker__item {
  flex-shrink: 0;
  padding: 0 2rem;
  color: #EFEFEF;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  line-height: 29px;
}

/* Mobile screens */
@media only screen and (max-width: 760px) {
  .ticker {
      animation: ticker 15s linear infinite;  /* Slower for mobile */
  }
}

/* Tablet screens */
@media only screen and (min-width: 761px) and (max-width: 991px) {
  .ticker {
      animation: ticker 22s linear infinite;  /* Medium speed for tablets */
  }
}

/* Desktop screens */
@media only screen and (min-width: 992px) {
  .ticker {
      animation: ticker 30s linear infinite;  /* Faster for desktop */
  }
}

@keyframes ticker {
  0% {
      transform: translate3d(0, 0, 0);
  }
  100% {
      transform: translate3d(-100%, 0, 0);
  }
}



/* Mobile styles (up to 760px) */
@media only screen and (max-width: 767px) {
    #main-container {
        padding-top: 67px; /* Replace margin with padding */
    }
    
    .mobile-showcase-featured-image {
        display: block;
    }
    
    .desktop-showcase-featured-image {
        display: none;
    }
    
    #search-row {
        display: none !important;
    }
    
    #menuModal {
      margin: 0 !important; /* Remove any default margins */
    }
    
    #menuModal .modal-content {
      margin-top: 65px; /* Match mobile header height */
      height: calc(100vh - 65px);
    }

    .collection-showcase-text-heading {
        font-size: 1.375rem;
    }
}

/* Desktop styles (768px and up) */
@media only screen and (min-width: 768px) {
  #main-container {
      padding: 65px 0 0 0;
  }
  
  .mobile-showcase-featured-image {
      display: none;
  }
  
  .desktop-showcase-featured-image {
      display: block;
  }
  
  #search-mobile, #mobile-search-input {
      display: none !important;
  }
  
  #menuModal {
      margin: 0 !important;
  }

  #menuModal .modal-content {
      margin-top: 65px;
      height: calc(100vh - 65px);
  }
  
  .collection-showcase-text-heading {
      font-size: 2.375rem;
  }
  
  #product-description,
  #product-add-cart {
      position: sticky;
      top: 65px;
      height: auto;
      padding-top: 40px;
  }
  
  .collection-product:nth-of-type(4n-3) {
      border-left: 1px solid black;
  }
  
  .cart-container {
      position: relative;
      min-height: calc(100vh - 67px);
  }
  
  .cart-border {
      border-left: 1px solid black;
      border-right: 1px solid black;
      height: 100%;
  }
}

.form-control-me{
  background-color: black;
  color: white!important;
  border: none;
  border-radius: 0;
}

.center{
  width: 150px;
  margin: 40px auto;
}

a:link {
  color: black;
  text-decoration: none;
}

a:visited {
  color: black;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

a:active {
  color: black;
  text-decoration: none;
}

.clearfix:before,
.clearfix:after {
   content: '\0020';
   display: block;
   overflow: hidden;
   visibility: hidden;
   width: 0;
   height: 0;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

ul{
  padding-left: 14px;
}

.inline-input-group{
  display: inline;
}

.inline-input-group{
  display: inline-block;
}

.input-number{
  border: none;
  margin: 0;
  display: inline-block;
  max-width: 24px;
  text-align: center;
  position: relative;
  top: 2px;
}

.input-number:focus-visible{
  border: none;
  outline: none;
  box-shadow: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(/cdn/shop/t/15/assets/ico-select.svg?2299);
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 8px;
  width: 100%;
  border: 2px solid gray;
  border-radius: 2px;
}

option {
  color: black;
  background-color: white;
}

table {
  font-size: 12px !important;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 22.5px;
}

th, td {
    text-align: left;
    border: 1px solid #e8e9eb;
    padding: 10px 14px;
}

.header .row{
  border-bottom: 1px solid black;
  padding: 5px;
  align-items: center;
}


#menu-hamburger {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  bottom: 0;
}

/* Adjust the container padding */
.col-3.text-left.align-middle {
  padding-left: 8px !important; /* Reduced from 24px, use !important to override inline style */
  display: flex;
  align-items: center;
  height: 100%;
}

/* Adjust the container padding */
@media only screen and (min-width: 767px) {
  .col-3.text-left.align-middle {
    padding-left: 24px !important; /* Reduced from 24px, use !important to override inline style */
    display: flex;
    align-items: center;
    height: 100%;
  }
}


.hamburger-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 18px;
}

#menu-hamburger {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.icon-hamburger {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 0;
  justify-content: space-between;
  flex-direction: column;
}

.icon-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  transition: .25s ease-in-out;
  left: 0;
}

.icon-hamburger span:nth-child(1) {
  top: 0;
}

.icon-hamburger span:nth-child(2) {
  top: 8px;
}

.icon-hamburger span:nth-child(3) {
  top: 16px;
}

/* X state */
.icon-hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.icon-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.icon-hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Close button styling */
#menu-close {
  display: none;
}

#banner-logo{
  height: 22px;
}

#cart-icon{
  height: 25px;
  margin-right: 25px;
  position: absolute;
  right: 0;
}

#cart-count{
  position: absolute;
  right: 26px;
  top: 38px;
  text-decoration: none;
  color: white;
  background-color: black;
  line-height: 1.4;
  width: 22px;
  text-align: center;
  z-index: 1;
  height: 20px;
}



  #menuModal .modal-content {
    border: none;
    border-radius: 0;
    background-color: white;
    height: 100%;
    margin-top: 65px; /* Match header height exactly */
    height: calc(69vh - 65px); /* Subtract header height */
  }

#menuModal .modal-dialog {
  margin: 0;
  max-width: 269px;
  height: 69vh; /* Full viewport height */
}

.fullscreen-modal .modal-content{
  min-height: 100%;
  border: none;
}

#cartAddModal .modal-content{
  background-color: rgba(0,0,0,0.7);
}

#menuModal .modal-body .row{
   border-bottom: none; /* Remove the black lines */
  margin: 0;
  padding: 12px 24px; /* Adjust padding for better spacing */
  transition: background-color 0.2s ease; /* Smooth hover effect */
}

/* Menu item text styling */
#menuModal .modal-body a {
  text-decoration: none;
  color: black;
  font-size: 18px; /* Adjust font size */
  font-weight: 690; /* Slightly bold */
  display: block;
}

#menuModal .modal-body a .row{
  color: black;
  text-decoration: none;
}

.child-link-container{
  display: none;
}

#menuModal .modal-body {
  padding: 20px 0; /* Add some vertical padding */
  background-color: white;
  margin: 0;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

/* Hover effect for menu items */
#menuModal .modal-body a .row:hover {
  background-color: rgba(0, 0, 0, 0.05); /* Light gray background on hover */
}

#menuModal a{
  text-decoration: none;
}

/* Black Friday Sale link styling - bright red */
#menuModal a.black-friday-link,
#menuModal a.black-friday-link .row {
  color: #FF0000 !important;
  font-weight: 700 !important;
}

#menuModal a.black-friday-link:hover,
#menuModal a.black-friday-link:hover .row {
  color: #CC0000 !important;
}

.modal-backdrop.show{
  display: none;
}

#mobile-search-input{
  height: 100%;
  display: inline-block;
  position: relative;
  right: 54px;
  top: 3px;
}

#mobile-search-row{
  position: fixed;
  top: 38px;
  height: 40px;
  background-color: white;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  border-bottom: 0px;
  display: none;
}

#search-mobile-input{
  margin-top: 8px;
}

.search-icon svg{
  height: 100%; 
}

.search-icon-mobile svg{
  height: 100%; 
}

.cart-container.row {
  padding: 0;
  margin: 0;
}

.modal-open[style] {
  padding-right: 0px !important;
}

body.modal-open{
  padding-right: 0px !important;
}

.modal-backdrop{
  z-index: 5!important;
  opacity: 0;
}

.search-icon{
  background-color: white;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  bottom: 2px;
  height: 24px;
  margin-right: 35px;
}

/* Desktop-only search icon positioning */
@media only screen and (min-width: 761px) {
  .search-icon-mobile {
    position: relative;
    right: 70px;  /* Increase space between search and cart icons */
    top: 0;
    height: 24px;
  }
}

.search-icon-mobile{
  background-color: white;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  bottom: 2px;
  height: 24px;
}


.search-input{
  border: none;
  margin-top: 4px;
}

.search-input-cart{
  width: calc(100% - 27px);
}

.search-input:focus{
  outline: none;
  border: none;
}

.search-input:focus-visible{
  outline: none;
  border: none;
}

#search-row{
  display: none !important;
}


.footer{
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid black;
}

.footer h1{
  font-weight: 900;
  font-size: 14px;
}

.footer-contact-container{
  padding-top: 18px;
}

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

.footer-list li{
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-right: 10px;
  display: inline;
  text-decoration: none;
}

.footer-list li a:hover{
  text-decoration: underline;
}


.pay-img{
  width: 100%;
}


.showcase-container{
  position: relative!important;
}
.showcase-image{
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  height: 100%;
  width: 100%;
}

.showcase-text-container{
  position: absolute;
  bottom: 1.25rem;
  right: 0;
  left: 0;
  text-align: center;
}
.showcase-text-heading{
  margin-left: auto;
  margin-right: auto;
  width: calc(50% - 1.125rem);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 900;
  color:#fff;
  text-shadow:0 0 5px #000;
}
.showcase-button{
  font-family: BB-Regular,Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  white-space: normal;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: -webkit-box-shadow .15s ease-out;
  transition: -webkit-box-shadow .15s ease-out;
  transition: box-shadow .15s ease-out;
  transition: box-shadow .15s ease-out,-webkit-box-shadow .15s ease-out;
  -webkit-box-shadow: 0 0 0 0 #aaaaac;
  box-shadow: 0 0 0 0 #aaaaac;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 2.5rem;
  margin: 0 auto;
  padding: 0 1rem;
  -webkit-transition: background-color .15s ease,border-color .15s ease,color .15s ease,-webkit-box-shadow .15s ease-out;
  transition: background-color .15s ease,border-color .15s ease,color .15s ease,-webkit-box-shadow .15s ease-out;
  transition: background-color .15s ease,border-color .15s ease,color .15s ease,box-shadow .15s ease-out;
  transition: background-color .15s ease,border-color .15s ease,color .15s ease,box-shadow .15s ease-out,-webkit-box-shadow .15s ease-out;
  vertical-align: middle;
  color: #000;
  border: 1px solid #000;
  border-radius: 0.25rem;
  background: #fff;
}



.sold-out-span{
  text-decoration: line-through;
  opacity: .4;
}

.collection-showcase-text-container{
  position: absolute;
  bottom: 3.25rem;
  right: 0;
  left: 0;
  text-align: center;
}
.collection-showcase-text-heading{
  margin-left: auto;
  margin-right: auto;
  width: calc(50% - 1.125rem);
  
  font-weight: 400;
  line-height: 110%;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 900;
  color:#fff;
  text-shadow:0 0 5px #000;
}

@media only screen and (min-width: 761px) {
  .collection-showcase-text-heading{
    font-size: 2.375rem;
  }
  .collection-product:nth-child(4n+1):nth-last-child(-n+4), .collection-product:nth-child(4n+1):nth-last-child(-n+4) ~ .collection-product {
    border-bottom: 0px;
  }
}

@media only screen and (max-width: 760px) {
  .collection-showcase-text-heading{
    font-size: 1.375rem;
  }
  .collection-product:nth-child(2n+1):nth-last-child(-n+2), .collection-product:nth-child(2n+1):nth-last-child(-n+2) ~ .collection-product {
    border-bottom: 0px;
  }
}

#sale-image-product{
  position: absolute;
  right: 24px;
}

#AddToCartForm{
  
}

.collection-title{
  border-bottom: 1px solid black;
}

.collection-title h1{
  padding:60px;
  margin: 0;
  font-weight: 900;
}

.collection-image-container{
  max-height: 525px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid black;
  padding: 0;
}

.collection-image{
  object-fit: cover;
  width: 100%;
  object-position: center;
  background-color: #FFFFFF 
}

@media only screen and (min-width: 761px) {
  #mobile-collection-featured-image{
    display: none;
  }
  #desktop-collection-featured-image{
    display: initial;
  }
}

@media only screen and (max-width: 760px) {
  #mobile-collection-featured-image{
    display: initial;
  }
  #desktop-collection-featured-image{
    display: none;
  }
}

.collection-product {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  position: relative;
}

.collection-product-sold-out{
  opacity: .4;
}


@media only screen and (max-width: 600px) {
  .image-container{
    
    cursor: pointer;
  }
}

.carousel-control-container{
  display: none;
}

.carousel-control-prev-icon {
  position: relative;
  right: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  position: relative;
  left: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon-product {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon-product {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators{
  bottom: -30px;
  margin-bottom: 10px;
  opacity: 0;
}

.carousel-indicators [data-bs-target] {
  width: 5px;
  height: 5px;
  background-color: #000;
  border: 1px;
  border-radius: 20px;
  margin: 3px;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: 0s 0s;
}

@media only screen and (min-width: 761px) {
  .product-sold-out{  
    position: absolute;
    z-index: 2;
    width: 230px;
    left: -35px;
    top: 0;
  }
  
  .product-on-sale{  
    position: absolute;
    z-index: 2;
    width: 49px;
    top: 17px;
    right: 23px;
    border: 1px solid black;
  }
}

@media only screen and (max-width: 760px) {
  .product-sold-out{  
    position: absolute;
    z-index: 2;
    width: 130px;
    left: -14px;
    top: 0;
  }

  .product-on-sale {
    position: absolute;
    z-index: 3;
    width: 39px;
    right: 7px;
    top: 8px;
    border: 1px solid black;
  }
}



.product-title{
  padding-left: 15px;
  padding-right: 15px;
}

.product-title a{
    margin-bottom: 0;
    color: black;
    font-weight: bold;
    line-height: 1.33em;
    min-height: 36px;
    text-decoration: none;
}

.product-info{
  margin-bottom: 15px;
  padding: 0 15px;
}

.product-sale-price{
  color: black;
  font-weight: bold;
}

.product-original-price{
  text-decoration: line-through;
  color: gray;
}

.product_size_container{
  display: none;
}

.product-full-image-container{
  padding: 20px;
}

.product-full-image{
  width: 100%;
}

#product-images{
  cursor: pointer;
  position: relative; /* Add this */
  height: auto; /* Add this */
}

#product-description{
  padding: 5%;
}

#product-description h1{
  font-size: 20px;
  font-weight: bold;
}

#mobile-product-name{
  font-size: 20px;
  font-weight: bold;
  padding-top: 14px;
}

.product-page-price{
  font-size: 18px;
  font-weight: 900;
}

#product-description img{
  width: 100%;
}




#sizing-toggle{
  margin-top: 10px;
  cursor: pointer;
}

#shipping-toggle{
  text-decoration: none;
  color: black;
}

#shipping-info{
  display: none;
}

#product-add-cart{
  padding: 0 7%;
  font-size: 11px;
  z-index: 3;
}

#sizingModal > .modal-dialog{
  margin: auto;
  border-radius: 0px;
  width: 100%;
  max-width: 800px;
  z-index: 1000001;
}

#sizingModal > .modal-content{
  max-height: 750px;
  overflow: scroll;
}

.selector-wrapper{
  display: none;
}

.swatch-element{
  display: inline-block;
}



#main-container{
  padding: 65px 0 0 0 !important;
}

@media only screen and (min-width: 768px) {
  #product-description{
    position: fixed;
    left: 0;
    top: 67px;
    height: 100%;
    padding-top: 250px;
  }

  #product-description img{
    display: none;
  }

  #product-add-cart{
    position: fixed;
    right: 0;
    top: 67px;
    height: 100%;
    padding-top: 250px;
  }
  #main-container{
    padding: 65px 0 0 0 !important;
  }
  .collection-product:nth-of-type(4n-3){
    border-left: 1px solid black;
  }
}

.submit-cart-button{
    width: 100%;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    background-color: #000;
    color: #fff;
    font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: normal;
    font-size: 12px;
    
    padding: 10px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Landing page specific button styling */
#AddToCart.submit-cart-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 0;
    line-height: 1.3;
}

.submit-cart-button.sold-out {
  background-color: #808080 !important;
  cursor: not-allowed;
  border: none;
}

.submit-cart-button .sold-out-text,
.submit-cart-button .add-to-cart-text {
  display: inline-block;
}

/* Landing page button pricing and stock info */
#AddToCart.submit-cart-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 0;
  line-height: 1.2;
  min-height: 60px;
}

#AddToCart.submit-cart-button .add-to-cart-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

#AddToCart.submit-cart-button .button-price-info {
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: normal;
}

#AddToCart.submit-cart-button .button-compare-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 4px;
}

#AddToCart.submit-cart-button .button-current-price {
  font-weight: bold;
}

#AddToCart.submit-cart-button .button-stock-info {
  display: block;
  font-size: 12px;
  font-weight: normal;
  opacity: 0.9;
  line-height: 1.2;
  margin-top: 1px;
  text-transform: none;
  letter-spacing: normal;
}

#AddToCart.submit-cart-button .sold-out-text {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#cartAddModal .modal-dialog{
  margin: 0;
  z-index: 5 !important;
  height: 100%;
  
  max-width: 100%;
}

#cartAddModal .modal-content{
  border-radius: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#cart-add-modal-body{
  padding: 0;
}

#item-add-row{
  background-color: #50bb50;
  font-weight: 900;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 10px 0;
  font-size: 14px;
}

#add-cart-close{
  float: right;
  position: relative;
  top: 6px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  cursor: pointer;
}

.view-cart-button{
  background-color: white;
  border: 1px solid black;
  color: black!important;
}

.item-add-text-row{
  border-bottom: 1px solid black;

}

.cart-added-image{
  width: 100%;
}

.related-product-link{
  padding: 12px;
  
}

.related-product-link-img{
  width: 100%;
  border: 1px solid black;
  padding: 5px;
}



.vcr-font{
  font-family: 'VCR OSD Mono', sans-serif !important;
}

.cart-item-discount{
  text-transform: uppercase;
  font-size: 12px;
}

.cart-border{
  border-left: 1px solid black;
  border-right: 1px solid black;
  padding-bottom: 147px;
}

#cart-bottom-spacer{
  height: 50px;
}

.cart-title{
  
  
  padding: 10px 5px;
  
  
}
.shipping-text{
  font-size: 13px;
  position: relative;
  top: 2px;
  opacity: 0.8;
}
.cart-message-container{
  padding: 25px;
  border-bottom: 1px solid black;
}
.cart-image{
  width: 100%;
  
}

.cart-row{
  
}

.delete-cart-row{
  color: black;
  cursor: pointer;
}

.cart-row-added{
  border-bottom: 1px solid black;
  background-color:rgba(255, 255, 255, 1.0);
  border-right: 1px solid black;
  border-left: 1px solid black;
  padding: 14px;
}

.cart-row-added a{
  text-decoration: none;
}

.cart-row-added .pay-img{
  width: 60%;
}

.cart-row-footer{
  
}

.cart-text{
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cart-text a{
  padding: 0;
  text-decoration: none;
  color: black;
}

.cart-item-title{
  font-weight: bold;
}

.cart-variant{
  
}



.cart-footer-text{
  font-size: 15px;
  font-weight: bold;
  padding: 0;
}

.cart-quantity-update{
  font-size: 20px;
  padding: 6px;
  font-weight: bold;
}

.cart-quantity-update:focus-visible{
  border: none;
  outline: none;
  box-shadow: 0;
}

#checkout-button-container{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  left: 0;
  padding-bottom: 8px;
  border-top: 1px solid black;
  right: 0;
  margin: 0;
  padding-top: 8px;
}

[data-shopify-buttoncontainer] {
  justify-content: center;
}

.btn-number:focus-visible{
  border: none;
  outline: none;
  box-shadow: 0;
}

.payment-container{
  padding: 15px 0;
}

.payment-icon-container{
  width: 16%;
}

.payment-icon{
  display: inline;
  width: 100%;
  padding: 0 10px;
}

#checkout-row{
  position: fixed;
  padding: 10px;
  width: 100%;
  background-color: white;
  z-index: 4;
  bottom: 0;
  border-top: 1px solid black;
  margin: 0;
}

.discount-container{
  padding: 10px;
  padding-top: 25px;
}

#discount-apply{
  font-weight: 900;
  font-size: 14px;
  padding: 3px 5px 2px 5px;
  border-radius: 3px;
}

.ship-tax-container{
  padding-bottom: 20px;
  padding-left: 21px;
  color: rgba(0,0,0,.5);
}

.cart-total{
  padding: 10px;
  padding-bottom: 0;
}

#cart-checkout-button{
  font-weight: 900;
  font-size: 15px;
  padding: 3px 5px;
  border-radius: 3px;
  height: 52px;
}

#additional-checkout-buttons{
  margin-top:0;
}

#discount-input {
  text-align: center;
  font-size: 15px;
  text-transform: lowercase;
  height: 36px;
  margin-bottom: 6px !important;
  border-radius: 4px;
}


#page-container img{
  width: 100%;
}

.page-container-subscribe{
  padding: 40px 0;
}

#subscribe-button{
  margin-top: 30px;
  font-size: 18px;
  padding: 8px;
}





#number-result-container{
  font-size: 18px;
  padding: 30px;
}

.search-result-results{
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.search-result{
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.search-image img{
  width: 50%;
  margin-left: 25%;
}

.search-description{
  padding: 10px;
}


.contact-container a{
  text-decoration: underline;
}


/* SWATCH STYLES */
.col-swatch{
  width: 12%;
}
.swatch { 
  margin:.2em 0; 
}
/* Label */
.swatch .header {
  margin: 0.5em 0;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}
.swatch label {
  /* Rounded corners */
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
  border-radius:0px;
  /* To give width and height */
  float:left;
  /* Color swatches contain no text so they need to have a width. */
  min-width: !important; 
  height: !important;
  /* No extra spacing between them */
  margin:0;
  /* The border when the button is not selected */
  border:#ccc  1px solid;
  /* Background color */
  background-color:#fff;
  /* Styling text */
  font-size:13px;
  text-align:center;
  line-height:;
  white-space:nowrap;
  text-transform:uppercase;
}
.swatch-element label {
  padding: 10px 0;
  width: 100%;
  cursor: pointer;
  background-color: white;
  color: black;
}

.crossed-out{
  border-radius: 100px;
  padding: 10px;
}

.color.swatch-element label { 
  padding: 0;
  width: 90%;
  height: 0;
  padding-bottom: 80%;
  margin-left: 10%;
  cursor: pointer;
  border-radius: 60px;
}
.soldout, .crossed-out{
  cursor: not-allowed;
}
.soldout label{
  background-color: red;
}
/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  border-color:#0b0a0a;
  background-color: black;
  color: white;
} 
.swatch .swatch-element {
  float:left;
  -webkit-transform:translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing:antialiased; /* webkit text rendering fix */
  /* To position the sold out graphic and tooltip */
  position:relative;
  padding: 2px;
}
/* Image with the cross in it */
.crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
.swatch .swatch-element .crossed-out { display:none; }
.swatch .swatch-element.soldout .crossed-out { display:block; }
.swatch .swatch-element.soldout label {
  filter: alpha(opacity=30); /* internet explorer */
  -khtml-opacity: 0.3;      /* khtml, old safari */
  -moz-opacity: 0.3;       /* mozilla, netscape */
  opacity: 0.3;           /* fx, safari, opera */
  background-color: black;
  color: white;
}
/* Tooltips */
.swatch .tooltip {
  text-align:center;
  background:gray;
  color:#fff;
  bottom:100%;
  padding: 10px;
  display:block;
  position:absolute;
  width:100px;
  left:-48px;
  margin-bottom:15px;
  /* Make it invisible by default */
  filter:alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity:0;
  visibility:hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing:border-box; 
  -webkit-box-sizing:border-box; 
  box-sizing:border-box;
}
.swatch .tooltip:before {
  bottom:-20px;
  content:" ";
  display:block;
  height:20px;
  left:0;
  position:absolute;
  width:100%;
}
/* CSS triangle */
.swatch .tooltip:after {
  border-left:solid transparent 10px;
  border-right:solid transparent 10px;
  border-top:solid gray 10px;
  bottom:-10px;
  content:" ";
  height:0;
  left:50%;
  margin-left:-13px;
  position:absolute;
  width:0;
}
.swatch .swatch-element:hover .tooltip {
  filter:alpha(opacity=100);
  -khtml-opacity:1;
  -moz-opacity:1;
  opacity:1;
  visibility:visible;
  -webkit-transform:translateY(0px);
     -moz-transform:translateY(0px);
      -ms-transform:translateY(0px);
       -o-transform:translateY(0px);
          transform:translateY(0px);
}
.swatch.error {
  background-color:#E8D2D2!important;
  color:#333!important;
  padding:1em;
  border-radius:0px;
}
.swatch.error p {
  margin:0.7em 0;
}
.swatch.error p:first-child {
  margin-top:0;
}
.swatch.error p:last-child {
  margin-bottom:0;
}
.swatch.error code {
  font-family:monospace;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ccc; /* Light gray line */
    margin: 30px 0 15px 0;
}

.footer-disclaimer {
    text-align: left;
    font-size: 12px;
    color: #777;
    padding: 10px 20px 150px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Checkout and Continue Shopping buttons */
#cart-checkout-button,
.continue-shopping-btn {
  font-size: 15px !important;
  text-transform: uppercase;
  font-weight: bold;
  height: 54px;
  border-radius: 4px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none;
  padding: 0;
  margin: 5px 0;
  line-height: 1 !important; /* Reset line height */
}

/* Our Custom Updates */

/* Search Bar Fix for Desktop */
.search-input {
  border: none;
  margin-top: 4px;
  width: calc(100% - 27px);  /* This was key for the search fix */
}

/* Cart Page Updates */
.cart-footer-text,
#discount-input,
#cart-checkout-button,
.cart-title,
.shipping-text,
.cart-variant,
.cart-item-title,
#cart-subtotal {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.delete-cart-row {
  font-family: 'VCR OSD Mono', sans-serif !important;
}

.cart-total .text-front {
  padding-left: 24px;
}

.cart-total .text-end {
  padding-right: 24px;
}

/* Desktop-specific fix for cart drawer price alignment */
@media (min-width: 768px) {
  .cart-text .mt-auto .col-6.text-end {
    padding-right: 0px !important; /* Match the spacing of other cart elements */
  }
  
  .cart-text .mt-auto .delete-cart-row-container {
    padding-left: 8px !important; /* Match the spacing of other cart elements */
  }
}

.discount-container {
  padding: 10px;
  padding-top: 15px;  /* Reduced from 25px */
  margin-bottom: 18px;  /* Added space before checkout button */
}

#cart-checkout-button {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  margin-bottom: 0;  /* Reduced space before continue shopping */
  background: black;
  color: white;
  border: none;
  font-weight: bold;
}

.continue-shopping-btn {
  background-color: white;
  color: black !important;
  border: 1px solid black;
  border-radius: 0;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 3px;  /* Reduced space before shipping notice */
}

.continue-shopping-btn:hover {
  opacity: 0.8;
  text-decoration: none;
  color: black !important;
}

.shipping-notice {
  font-size: 12px;
  color: #666;
  margin-top: 4px;  /* Reduced from 8px */
  margin-bottom: 4px;  /* Reduced from 8px */
}

.form-control-me {
  background-color: black;
  color: white !important;
  border: none;
  border-radius: 0;
}

/* Add this to specifically handle the checkout button */
#cart-checkout-button.form-control-me {
  background-color: black !important;  /* Force black background */
  transition: opacity 0.2s ease;  /* Only animate opacity */
}

#cart-checkout-button.form-control-me:active,
#cart-checkout-button.form-control-me:focus {
  background-color: black !important;
  color: white !important;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .cart-container {
    margin-bottom: 0;
    border: none;
    min-height: calc(100vh - 100px); /* Adjust 100px based on your header height */
    position: relative;
  }

  .cart-border {
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-top: none;
    margin-bottom: 0;
    min-height: 100%;
  }
  
  #checkout-button-container {
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    margin-top: 0;
    padding: 15px 15px 8px;
    background: white; /* Ensure background covers content below */
  }

  .col-lg-6.offset-lg-3 {
    padding: 0;
    position: relative;
    min-height: 100%;
  }
}


/* Footer Updates */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 30px 0 15px 0;
}

.footer-disclaimer {
    text-align: left;
    font-size: 12px;
    color: #777;
    padding: 10px 20px 150px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* No Results Message */
.no-results-message {
  padding: 80px 0;
}

.no-results-message h2 {
  margin-bottom: 40px;
  font-weight: bold;
}

.back-to-shop-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 15px 30px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.back-to-shop-btn:hover {
  opacity: 0.8;
}

/* Price styling - maintaining existing class names */
.product-sale-price {
  font-weight: bold;
}

.product-original-price {
  color: #999;
  text-decoration: line-through;
  order: -1;  /* Move to left */
}



/* Grid fixes for mobile */
@media only screen and (max-width: 760px) {
  .collection-product {
    padding: 0;  /* Remove all padding */
    border-right: 1px solid black;
    border-bottom: 1px solid black;
  }

  /* For the swatch container */
.swatch.clearfix {
  padding: 0;  /* Match the title/price padding */
  margin: 0;
}


  .collection-product > .row {
    margin: 0;  /* Remove default row margins */
  }
  
  .collection-product .col-6 {
    padding: 0;  /* Remove bootstrap's default padding */
  }

  .collection-product .image-container {
    padding: 0;
    margin: 0;
  }
  #collection-product-container {
    margin: 0;  /* Remove any default margins */
    width: 100%;
    padding: 0;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-container {
    margin: 0;
    padding: 0;
  }
  .col-12.text-start {
    padding: 0;  /* Consistent padding on mobile */
  }
  .text-start {
    padding: 0; 
  
  
  .row.product-title {
    margin: 0;
  }
  
  /* If needed, adjust swatch spacing specifically for mobile */
  .swatch-element {
    margin: 0;  /* Reduce space between swatches if needed */
  }
}

/* Grid fixes for desktop collection page only */
@media only screen and (min-width: 761px) {
  .collection-product {
    padding: 0;  /* Remove all padding */
    border-right: 1px solid black;
    border-bottom: 1px solid black;
  }

  .collection-product > .row {
    margin: 0;  /* Remove default row margins */
  }
  
  .collection-product .col-lg-3,
  .collection-product .col-md-3 {
    padding: 0;  /* Remove bootstrap's default padding */
  }

  .collection-product .image-container {
    padding: 0;
    margin: 0;
  }
}

/* Search overlay styling */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.search-overlay-content {
  width: 100%;
  padding: 20px;
  position: relative;
  top: 80px; /* Adjust based on your header height */
}

.search-overlay .search-input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  border-radius: 0; /* Remove the upward sloping lines */
  -webkit-appearance: none; /* Remove default styling on iOS */
  appearance: none; /* Remove default styling on modern browsers */
}

/* Remove focus outline and default input styling */
.search-overlay .search-input:focus {
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.search-overlay .close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 10px;
  color: black;
}

/* Remove these conflicting styles */
.search-icon-mobile {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  right: 56px;  /* Position it relative to cart icon */
  top: 0px;
  height: 24px;
  cursor: pointer;
}


/* Inherit the SVG styling from your previous search icon */
.search-icon-mobile svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

/* Hide the old mobile search elements */
#mobile-search-row,
#mobile-search-input {
  display: none !important;
}

/* Remove any modal-open scroll locks */
.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Featured Collection Border Styling */
.featured-collection-section {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* Ensure product grid alignment */
.featured-collection-section .row {
  margin: 0; /* Reset any margin that might affect border alignment */
}

.collection-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-product-link- {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  

.image-container {
  position: relative;
  width: 100%;
}

.product-image.active {
  display: block;
}

.prev-image,
.next-image {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.prev-image {
  left: 10px;
}

.next-image {
  right: 10px;
}

.prev-image:hover,
.next-image:hover {
  opacity: 0.8;
}

  .product-full-image-container {
    padding: 20px;
  }

  .product-full-image {
    width: 100%;
    display: none;
  }

  .product-full-image:first-child {
    display: block;
  }
}

.product-images-wrapper {
  position: relative;
  width: 100%;
}


/* Collection image styles */
.collection-product {
  position: relative;
  padding: 0;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.collection-images-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Square 1:1 aspect ratio */
  overflow: hidden;
  background-color: #FFFFFF
}

.collection-images-container a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-images-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-backface-visibility: hidden;  /* Prevents image flash */
  color: transparent;  /* Removes broken image icon */
}

/* Product Images Container */
.product-images-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.product-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 0.3s ease;
}

.product-image-wrapper.current {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(128, 128, 128, 0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.nav-arrow.visible {
  opacity: 0.5;
}

.prev { left: 1rem; }
.next { right: 1rem; }

/* Zoom Modal */
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.zoom-modal.active {
  display: block;
}

.zoom-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.zoom-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: black;
}

.zoom-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  color: white;
}

.zoom-controls {
  display: flex;
  gap: 1rem;
}

.zoom-toggle, .close-modal {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.close-modal {
  font-size: 24px;
}

.modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 1;
}

.modal-prev { left: 1rem; }
.modal-next { right: 1rem; }

.zoom-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-image-container.zoomed {
  overflow: auto;
}

.zoom-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.zoom-image-container.zoomed img {
  transform: scale(2);
}

/* Desktop Styles */
@media (min-width: 768px) {
  .product-images-container {
    height: auto;
    aspect-ratio: 3/4;
  }
  
  .product-images-container.desktop .product-image {
    cursor: zoom-in;
  }
}

/* Update the offset for desktop */
@media only screen and (min-width: 768px) {
  #main-container {
    padding-top: 67px; /* Keep top padding */
  }
  
  .col-lg-4.offset-lg-4 {
    margin-left: 33.333333%; /* Adjust offset to align properly */
  }
}

/* Mobile Gallery Styles */
.mobile-gallery-container {
  position: relative;
  width: 100%;
  height: 100vw;
  background: white;
  overflow: hidden;
}

.mobile-gallery-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-gallery-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.mobile-gallery-image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: start;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: auto;
  cursor: pointer;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

/* Hide arrows when at the start/end */
.mobile-gallery-wrapper::-webkit-scrollbar-button:start:decrement {
  display: none;
}

.mobile-gallery-wrapper::-webkit-scrollbar-button:end:increment {
  display: none;
}

@media (min-width: 768px) {
  .mobile-gallery-container {
    display: none;
  }
}

.product-image-desktop video,
.product-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pswp__content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-image-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pswp--touch .pswp__button--arrow { 
  visibility: visible; 
}

.pswp__video-container {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pswp__video-container video {
  background: #444;
  object-fit: cover; 
  width: 100%;
  height: 100%;
  max-width: 800px;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rkFfQnYn {
  position: relative;
}

.rkFfQnYn video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop Search Overlay Styles */
@media (min-width: 768px) {
  .search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.95) !important;
    z-index: 9999 !important;
    display: none;
  }

  .search-overlay-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80% !important;
    max-width: 800px !important;
    padding: 20px !important;
  }

  .search-overlay .search-input {
    width: 100% !important;
    padding: 15px !important;
    font-size: 24px !important;
    border: none !important;
    border-bottom: 2px solid black !important;
    background: transparent !important;
    display: block !important;
  }

  .search-overlay .close-search {
    position: absolute !important;
    top: 40px !important;
    right: 40px !important;
    font-size: 32px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: black !important;
    z-index: 10000 !important;
  }
}

/* Ensure the body doesn't scroll when overlay is open */
body.search-active {
  overflow: hidden !important;
}

/* Base payment icons styles */
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  margin: 0 auto;
}

.payment-icons img,
.payment-icons svg {
  width: 38px;
  height: auto;
}



/* Reduce size on mobile */
@media screen and (max-width: 767px) {
  .payment-icons img,
  .payment-icons svg {
    width: 28px; /* Reduced size for mobile */
  }
  
  .payment-icons {
    gap: 4px; /* Reduced gap between icons */
  }
  .footer .payment-icons .pay-img {
    width: 100%;
    height: auto;
    min-width: 36px !important;
    max-width: 36px !important; /* Larger size for footer */
    object-fit: contain;
  }
  
}

/* Even smaller for very small screens */
@media screen and (max-width: 375px) {
  .payment-icons img,
  .payment-icons svg {
    width: 24px; /* Further reduced for very small screens */
  }
  
  .payment-icons {
    gap: 3px; /* Minimal gap */
  }

  .footer .payment-icons .pay-img {
    width: 100%;
    height: auto;
    min-width: 25px !important;
    max-width: 25px !important; /* Larger size for footer */
    object-fit: contain;
  }
  

}

/* Footer-specific payment icon styles */
.footer .payment-icons .pay-img {
  width: 100%;
  height: auto;
  min-width: 55px;
  max-width: 55px; /* Larger size for footer */
  object-fit: contain;
}

/* Modal-specific payment icon styles */
.cart-add-modal-content .payment-icons img,
.cart-add-modal-content .payment-icons .pay-img,
#cartAddModal .payment-icons img {
  width: 100% !important;
  height: auto !important;
  max-width: 35px !important; /* Even smaller for modal */
  object-fit: contain !important;
}


/* Common column styles */
.col-1-8 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
  padding: 0 1px;
}

/* Center alignment fixes */
.cart-row-added .row {
  justify-content: center;
  width: 100%;
  margin: 0;
}


/* Cart Drawer Base */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  z-index: 1000;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 400px;
  overflow: hidden;
}

/* Mobile-specific height adjustments */
@supports (-webkit-touch-callout: none) or (-webkit-appearance: none) {
  .cart-drawer {
    height: 100%;
    max-height: -webkit-fill-available;
  }
  
  .cart-container {
    height: 100%;
    max-height: -webkit-fill-available;
  }
}


/* Cart Active State */
.cart-drawer[aria-hidden="false"] {
  visibility: visible;
}


/* Cart Container */
.cart-container {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  transform: translateX(0);
  transition: transform 0.3s ease;
}


/* Base cart container styles */
#cart-drawer .cart-container {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh; /* Match the drawer height */
  background: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease;
}


/* iOS Specific Adjustments */
@supports (-webkit-touch-callout: inherit) {
  .cart-container {
    height: -webkit-fill-available; /* iOS fix with proper calc() */
  }
}

/* When cart is open, prevent body scroll and height changes */
body.cart-drawer-open {
  position: fixed;
  width: 100%;
  height: 100%; /* Compensate for Shopify's -5px margin */
  overflow: hidden;
  touch-action: none; /* Prevent touch events from bubbling */
  -webkit-overflow-scrolling: touch;
}
/* Active States */
.cart-drawer[aria-hidden="false"] .cart-container {
  transform: translateX(-100%);
}

/* Cart Overlay - Independent from drawer */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer; /* Add cursor pointer */
}

/* Show overlay when cart is open */
.cart-drawer[aria-hidden="false"] ~ .cart-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Show overlay when cart is open */
.cart-drawer[aria-hidden="false"] .cart-overlay {
  opacity: 1;
  visibility: visible;
}








/* continue shopping button - Display NONE*/
.form-control.continue-shopping-btn{
  border-radius: 3px !important;
  display: none !important;
}





/* Cart Content Styles */
.shipping-progress-container {
  flex: 0 0 auto;
  max-width: 800px;
  margin: 2px 8px;
  padding: 2px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.shipping-progress-bar {
  width: 100%;
  height: 5px;
  background-color: #d1d1d1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.cart-section-title {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.progress-fill {
  height: 100%;
  background-color: #0000ff;
  transition: width 0.3s ease;
}

.shipping-message {
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

.success-message {
  color: #0d0d0d;
}

.progress-message {
  color: #646464;
}

/* Cart Items */
.cart-row {
  padding: 4px 0;
  border-bottom: 1px solid #e8e8e8;
}

/* Larger Product Images */
.cart-row .col-3.col-lg-2 {
  padding-left: 0px !important; /* Reduced padding */
  width: 25% !important; /* Increase width */
  max-width: 25% !important;
}

.cart-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cart-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2px 0;
  max-width: 75% !important;
  width: 75% !important; /* Complement the image width */
}

.cart-item-title {
  margin-bottom: 0;
}


.cart-item-title,
.cart-item-title a {
  font-weight: bold;
}

.cart-item-title a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}


/* Ensure consistent padding for all rows in cart */
.cart-item-title,
.cart-variant,
.mt-auto {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Style the bottom row specifically */
.mt-auto {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Align the remove button to the left */
.delete-cart-row-container {
  padding-left: 0 !important;
  text-align: left;
}



.cart-variant {
  margin-bottom: 2px;
}

.cart-items-wrapper .row {
  --bs-gutter-x: 0rem !important;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Specifically target nested rows in cart-text */
.cart-text .row {
  --bs-gutter-x: 0rem !important;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  font-size: 0.9rem !important;
}

.cart-text .row {
  --bs-gutter-x: 0.5rem !important;  /* Remove default Bootstrap gutters */
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.cart-text .row:last-child {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Remove Button Alignment */
.delete-cart-row {
  font-size: 12px; /* Smaller text */
  padding-left: 0; /* Align with other text */
  display: inline-block;
  margin-top: 5px; /* Space from variant text */
  cursor: pointer;
}


/* Align prices to the right */
.product-sale-price,
.product-original-price {
  text-align: right;
  padding-right: 0 !important;
}



/* Cart Header */
.cart-header {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  padding-top: 5px;
  background: white;
  z-index: 2;
}

.cart-header h2 {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

#cart-drawer {
  transition: transform 300ms ease-in-out;
  transform: translateX(100%);
}

#cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
  .cart-container {
    width: 85%;
    right: -85%;
  }
  
  .cart-items-wrapper {
    padding: 10px;
  }
  
  .cart-footer {
    padding: 10px;
  }
}


/* Desktop Specific Styles */
@media (min-width: 768px) {
  .cart-container {
    width: 400px;
    right: -400px;
  }
  
  .cart-drawer[aria-hidden="false"] .cart-container {
    transform: translateX(-400px);
  }
}


.cart-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 5px;
}

.cart-close-inline {
  background: none;
  border: none;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
  color: #333;
  line-height: 1;
  display: flex;
  align-items: center;
}

.cart-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
}

/* Cart Items Container - Make it flex-grow to fill available space */
.cart-items-container {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0; /* Important for Firefox */
  padding-bottom: 10px;
}

/* Sticky Header */
.cart-header,
.cart-title-wrapper,
.shipping-progress-container {
  flex: 0 0 auto;
  background: white;
  z-index: 2;
}

/* Cart Items Wrapper - This is the scrollable area */
.cart-items-wrapper {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* Prevent scroll bounce */
}


/* The form itself shouldn't need to be 100% height */
.cart-items-wrapper form {
  height: auto;
}



/* Cart Footer */
.cart-footer {
  flex: 0 0 auto;
  padding: 0 5px;
  background: white;
  border-top: 1px solid #e8e8e8;
  padding-bottom: calc(env(safe-area-inset-bottom, 15px));
  margin-bottom: 0;
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .cart-container {
    width: 75%;
    right: -75%;
    /* Ensure proper height calculation on iOS */
    height: -webkit-fill-available; /* iOS fix with proper calc() */
    height: 100%; /* Compensate for Shopify's -5px margin */
  }
}

.subtotal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-weight: bold;
  padding: 0 8px;
  font-size: 0.9rem;
}

.form-control {
  height: 42px;
  margin-bottom: 2px;
  text-align: center;
  border: 1px solid #e8e8e8;
}
.shipping-notice {
  display: none;
  align-items: center;
  text-align: center;
}



.empty-cart {
  text-align: center;
  padding: 40px 20px;
}

/* Responsive */
@media (max-width: 576px) {
  .cart-container {
      width: 75% !important; /* Force 75% width */
      right: -75% !important; /* Force -75% right */
    }
  .cart-drawer[aria-hidden="false"] .cart-container {
    transform: translateX(-100%);
  }
}


/* Hide Klaviyo review summary grid */
.kl_reviews__summary,
.kl-reviews-summary,
.klaviyo-reviews-summary {
  display: none !important;
}

/* If there's a container/wrapper for the summary */
div[class*="kl_reviews__summary"],
div[class*="klaviyo-reviews-summary"] {
  display: none !important;
}

.kl_reviews__summary__image_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.kl_reviews__carousel__next_button {
  /* Improve touch target size */
  min-width: 44px;
  min-height: 44px;
  padding: 12px;
  
  /* Center the SVG */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Reset button styles */
  background: none;
  border: none;
  cursor: pointer;
  
  /* Ensure button is above other elements */
  position: relative;
  z-index: 2;
  
  /* Prevent text selection */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  
  /* Optional: add subtle background for better visibility */
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

/* Ensure SVG scales properly */
.kl_reviews__carousel__next_button svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* Optional: Add active state for touch feedback */
.kl_reviews__carousel__next_button:active {
  transform: scale(0.95);
}

/* Remove shipping text and its spacing */
.cart-drawer__footer-message {
  display: none;
}

.wallet-display {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #f5f5f5;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 14px;
}

.wallet-address {
  font-family: monospace;
}

[data-token-gated="true"] {
  display: none;
}

/* countdown timer from iheart sales app*/
@media screen and (max-width: 768px) {
  .hc_cd_heading.h2,
  .hc_cd_subheading {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .hc_cd{
    flex-direction: column !important;
    padding: 8px !important;
    row-gap: 6px !important;
  }
}

/* Cart Drawer Related Products - Pill Design */
.cart-related-products-section {
  padding: 5px 16px 3px 16px;
  margin-top: 0;
}

.cart-related-title {
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 8px;
  text-align: left;
  color: #666;
}

.cart-related-products-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-related-products-scroll {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  /* Show partial next item to indicate scrolling */
  padding-right: 10px;
  flex: 1;
  scroll-behavior: smooth;
}

.cart-related-products-scroll::-webkit-scrollbar {
  height: 4px;
}

.cart-related-products-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.cart-related-products-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.cart-related-product-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background-color: white;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  min-height: 45px;
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.cart-related-product-pill:hover {
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
}

.cart-related-product-pill-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-related-product-pill-title {
  font-size: 13px;
  font-weight: normal;
  color: #333;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

/* Scroll buttons - Desktop only */
.cart-scroll-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background-color: white;
  color: #333;
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.cart-scroll-btn:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cart-scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.cart-scroll-btn svg {
  width: 16px;
  height: 16px;
}

.cart-scroll-left {
  left: -18px;
}

.cart-scroll-right {
  right: -18px;
}

.cart-scroll-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Desktop styles for related products pills */
@media screen and (min-width: 768px) {
  .cart-related-products-section {
    padding: 5px 20px 3px 20px;
  }
  
  .cart-related-title {
    font-size: 14px;
  }
  
  .cart-related-product-pill {
    padding: 10px 14px;
    min-height: 55px;
    min-width: 220px;
    max-width: 220px;
  }
  
  .cart-scroll-btn {
    display: flex;
  }
  
  .cart-related-products-wrapper {
    padding: 0 20px;
  }
  
  .cart-related-product-pill-img {
    width: 45px;
    height: 45px;
  }
  
  .cart-related-product-pill-title {
    font-size: 14px;
  }
}

/* Continue Shopping Button - White with black border */
.continue-shopping-btn {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important;
  border-radius: 0;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 2px;
  height: 42px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.continue-shopping-btn:hover {
  opacity: 0.8;
  text-decoration: none;
  color: black !important;
}

/* Override the old display:none rule for cart drawer continue shopping button */
.cart-footer .continue-shopping-btn,
#cart-drawer .continue-shopping-btn {
  display: flex !important; /* Override any display: none rules */
}

  .wallet-cart-button,
  .shopify-payment-button,
  .additional-checkout-buttons > * {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    margin-bottom: 2px !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure Shop Pay iframe matches button height and width */
  .shopify-payment-button__button--branded iframe,
  .shopify-payment-button__button--branded,
  .shopify-payment-button__button--branded > * {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
  
  /* Force list items to be full width and stack vertically */
  .wallet-cart-grid li,
  ul[data-shopify-buttoncontainer] li,
  [data-shopify-buttoncontainer] li {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
