/** Shopify CDN: Minification failed

Line 66:8 Expected identifier but found "{"
Line 66:9 Unexpected "{"
Line 66:15 Expected ":"
Line 71:8 Expected identifier but found "{"
Line 71:9 Unexpected "{"
Line 71:15 Expected ":"

**/
/* metafiled collapsable tab css */
.product-details-tems-container{
  display: flex;
  gap: 15px;
}

.pro-product-btn {
 display: flex;
 justify-content: space-evenly;
 align-items: center;
}

.pro-product-btn a {
 display: inline-block;
 padding: 12px 24px;
 background-color: #E87D19;
 color: #fff;
 text-decoration: none;
 font-size: 16px;
 border-radius: 6px;
 font-weight: bold;
 transition: background-color 0.3s ease;
}

.pro-product-btn a:hover {
 background-color: #4d4d4d;
}

.pro-product-btn button {
 display: inline-block;
 padding: 12px 24px;
 background-color: #E87D19;
 color: #fff;
 text-decoration: none;
 border: none;
 font-size: 16px;
 border-radius: 6px;
 font-weight: bold;
 transition: background-color 0.3s ease;
}

.pro-product-btn button:hover {
 background-color: #4d4d4d;
}
@media (max-width: 768px){
  .pro-product-page h2{
    font-size: 18px;
  }
}

/* custom text block css */
.ah-custom-product-text h6{
  margin: 8px 0px;
}
.ah-custom-product-text p {
  color:{{block.settings.ah-custom-txt-clr}};
  margin: 0px;
  line-height: 22px;
}
.ah-custom-product-text p a{
  color:{{block.settings.ah-custom-txt-clr}};
}
/* collapsable content */
.collapsible-tab__text .btn__link-wrapper{
  display: flex;
  justify-content: space-evenly;
}
.collapsible-tab__text .btn__link-wrapper .button-primary{
  color: #fff;
}
  
/* tooltip css */
.tooltip-link {
  position: relative;
}

.tooltip-link::after {
  content: attr(data-title);
  position: absolute;
  top: -40px; /* move up to make space for arrow */
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
  overflow-wrap: break-word;
}

/* Little arrow below tooltip */
.tooltip-link::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px;
  border-style: solid;
  border-color: #000000 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tooltip-link:hover::after,
.tooltip-link:hover::before {
  opacity: 1;
}
@media screen and (max-width:768px){
  .product-form--regular{
    /* overflow: hidden; */
  }
  .tooltip-link::before {
    top: -23px;
    border-width: 8px;
  }
  .tooltip-link::after {
    font-size: 9px;
    padding: 4px 6px;
  }
}
/* tooltip css end */
.modal-inner .variant-grid {
    gap: 18px;
}
.variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  /* overflow: hidden; */
  /* justify-content: space-between; */
}

/* Desktop: 7 items per row */
@media (min-width: 769px) {
  .variant-grid a {
    width: calc((100% - (6 * 8px)) / 7); /* 7 items, 6 gaps */
    height: 60px;
  }
}

/* Mobile: 5 items per row */
@media (max-width: 768px) {
  .variant-grid img {
    width: 100%;
    height: 100%;
  }
  .variant-grid {
    width: 100%;
  }

  .variant-grid a {
    width: calc((100% - (4 * 8px)) / 5); /* 5 items, 4 gaps */
    height: 60px;
  }
}

.variant-grid a {
  border: 2px solid transparent;
  border-radius: 4px;
  /* overflow: hidden; */
  box-sizing: border-box;
  /* display: block; */
  display: flex;
  justify-content:center;
  align-items:center;
  transition: border-color 0.3s;
}

/* .variant-grid a.selected {
  border-color: black;
} */
.variant-grid a.selected .variant-image-wrapper img {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.variant-grid img {
  /* width: 100%; */
  /* height: 100%; */
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 50px;
}

.variant-grid a:hover img {
  transform: scale(1.1);
}

.variant-image-wrapper {
  position: relative;
  display: inline-block;
}

.variant-image-wrapper img {
  display: block;
  /* border-radius: 10px; */
}

.variant-hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: rgba(0, 0, 0, 0.6); */
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.variant-image-wrapper:hover .variant-hover-text {
  opacity: 1;
}

/* sticky add to cart css */
.custom__sticky-btn-wrapper{
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 1rem;
}
.product-form__action-inner.is-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 502;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    gap: 20px;
    padding-top: 10px !important;
    padding-bottom: 40px;
}
.product-form__action-inner.is-sticky .sticky-title {
    font-size: 15px;
}
.product-form__action-inner{
  width: 100%;
}
.product-form__action-inner .sticky-title,
.product-form__action-inner.is-sticky .quantity-selector__label{
  display: none;
}
.product-form__action-inner.is-sticky .sticky-title{
  margin:0;
  display: block;
  width: 100%;
}
@media screen and (max-width:719px){
  .product-form__action-inner.is-sticky{
     flex-direction: column;
    padding: 20px;
   }
  .custom__sticky-btn-wrapper{
    flex-direction: column;
     align-items: flex-start;
  }
  .product-form__action-inner.is-sticky .custom__sticky-btn-wrapper{
     flex-direction: row;
  }
}