/** Shopify CDN: Minification failed

Line 291:20 Expected identifier but found whitespace
Line 291:26 Unexpected ";"
Line 341:540 Comments in CSS use "/* ... */" instead of "//"
Line 341:1020 Expected identifier but found "/"

**/
/* .copouncontainer{
	display:flex;
	background: linear-gradient(135deg,#d2ffd2,#92e3c8);
	border-radius:0.5em;
	padding:1em;
	width:auto;
	align-items:center;
	line-height:0.3em;
	height:13vh;
}
.copypaste{
	margin-left:1em;
	padding:0 0.8em;
	background-color:#fafafa;
	border:1px dashed #00a6c3;
	border-radius:5px;
	line-height:0;
	width:50%;
	text-align:center;
	cursor:pointer;
	box-sizing:border-box;
	transition:transform .3s ease;
}
.copypaste:hover{
	--ms-transform:scale(1.1);
 	-webkit-transform:scale(1.1);
	transform:scale(1.1);
	color:#00a6c3;
}
.taptocopy{
	font-size:60%;
	color:#3d3d3d;
	width:100%;
}
.coupan_text{
	flex-grow:1.5;
}
.mainheadline{
	font-size:1.7rem;
	font-weight:700;
}
.head_discrip{
	line-height:1.2 !important;
	font-size:90%;
}
@media(min-width:750px) and (max-width:1024){
.copouncontainer{
	height:auto;
	margin:5px 5px;
}
.taptocopy{
	font-size:0.4em;
}
.mainheadline{
	font-size:1.4rem;
}
} */
.title-checkout-op .opus-price{
    color:#FFFFFF !important;
}
.txt-icon-heading {
    margin-top: 16.8px;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 20.25px;
    color: rgb(26, 27, 24) !important;
}
.rte {
    margin-top: 1rem;
    font-size: 11px;
    font-weight: 400;
    line-height: 22.4px;
    color: rgba(33, 35, 38, 0.75) !important;
}



.footer-section {
  background-image:url(/cdn/shop/files/footer_overlay.png?v=1728379970) !important;
}

.txt-icon-heading{
  font-weight:700 !important;
}


.yv-product-card .image-wrapper a {
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-color: #000000;
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  right: initial;
  top: 50%;
  border-width: 1px;
  border-style: solid;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.yv-product-card .image-wrapper a:hover {
  width: 98%;
  height: 98%;
  border-color: #000000;
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  right: initial;
  top: 50%;
  border-width: 1px;
  border-style: solid;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.product-price__sale{
  margin-top:5px;
  text-decoration:line-through;
  font-size:12px;
}

.product-prices{
  margin-right:7px;
  font-weight:500;
  font-size:16px;
  
}

.content-heading {
  font-size: calc(1.05 * 2.8rem);
  letter-spacing: 1px;
}
.txt-icon-heading {
  margin-top: 16.8px;
  font-size: calc(1.05 * 1.2rem);
  font-weight: 500;
  line-height: 20.25px;
  color: rgb(26, 27, 24);
}
.rte {
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: rgba(33, 35, 38, 0.75);
}
@media (max-width: 768px) {
  .txt-icon-heading {
    font-size: calc(1.05 * 1rem);
  }
}
.view-more {
    width: fit-content;
    padding: 13px 76px;
    background-color: #fff;
    color: #DFAB40;
    border: 1px solid #DFAB40;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 0;
}
.view-more:hover {
    color: #fff;
    transform: rotate3d(0, 0, 1, 0) translateZ(0)
}
.view-more:after {
    content: "";
    z-index: -1; 
    position: absolute;
    top: 100%; 
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    background-color: #DFAB40;
    backface-visibility: hidden;
    will-change: transform;
    /* transform: translateY(100%); */
    transform: rotate3d(0, 0, 1, 10deg) translate3d(-1.2em, 110%, 0);
    transform-origin: 0% 100%;
    transition: transform 0.5s ease;
}
.view-more:hover:after {
    transform: translateY(-100%); /* Move to top */
}
.Sd_addProduct {
    margin-top:5px;
    width:-webkit-fill-available;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 10px 20px;
    color: #fff !important;
    background: #DFAB40;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.Sd_addProduct:hover {
    background-color: #DFAB40;
}

.Sd_addProduct:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
}

.Sd_addProduct:hover:after {
    animation: shine 1s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 11px;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-item a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}



/* #shopify-section-footer {
    background: url(https://cdn.shopify.com/s/files/1/0637/4116/5776/files/overlay_footer.png?v=1720099762);
    background-color: #ffffff;
} */
 .desc-content h5{
  display:none !important;
}
#shopify-section-footer {
    position: relative;
    background-color: #ffffff;
}

/* #shopify-section-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url(https://cdn.shopify.com/s/files/1/0637/4116/5776/files/overlay_footer.png?v=1720099762) no-repeat center center; */
    background-size: cover;
    opacity: 0.5; /* Adjust the opacity value as needed */
    z-index: 1;
}
 */
#shopify-section-footer > * {
    position: relative;
    z-index: 2;
}



.rich-text-description {
  background: #fff;
}
.section-spacer {
  background: #fff;
}
.whatmore-events-carousel {
  display: none !important;
}
.yv-scroll-top {
  width: 40px;
  height: 40px;
  bottom: 16px;
  right: 20px;
  background: #c6d061;
}





.post-ship-btn {
    border-radius: 50% !important;
    padding: 10px !important;
    font-size: 0 !important;
    right: 35px !important;
}

.post-ship-btn img {
    margin-right: 0px !important;
}

#igr-powered-by{
  display:none !important;
}


/*----------------------------------------minify.css------------------------------------------  */
/*.nav-item .nav-link,h4{font-size:16px!important}*/#shopify-section-template--18383122497841__44837886-0c70-48e1-92a6-429479c4bee0.shopify-section .infinite-text-heading *{font-size:18px!important}p.yv-testimonial-review.h5{font-size:16px!important;}.center-heading{padding-top:30px!important}.yv-boxtestimonial-slider .yv-testimonial-slide{max-width:80%!important;padding:10px!important}.yv-testimonial-reviews svg{fill:#FDCC0D!important}.container.md-container{max-width:initial!important}.yv-gallery-box.rounded.medium .yv-gallery-item{//width:400px!important}div#yv-product-feature-description{font-size:12px!important;text-align:justify!important}p.yv-product-detail-desc{font-size:18px;text-align:justify}.text{font-size:17px!important}.nav-item .nav-link{font-weight:500;}.yv-footer-top-box{border-color:#fff!important}.social-links ul li svg{width:50%!important;height:50%!important}.yv-gallery-collage-outer.space-around .col-12{padding-right:10px!important;padding-left:10px!important}.yv-gallery-collage-img{//border-radius:10px!important}@keyframes spin{100%{transform:rotate(360deg)}}.pushdaddy-description,.pushdaddy-note,.pushdaddy-title,b.head{color:#fff!important}h4{color:black!important}figure:hover{color:#d09c42}strong.code,strong.code2{color:#fff!important}.ooo-instagram-feed__list{animation:82s linear infinite ooo-instagram-sliding-carousel!important}.google-map{width:100%!important;min-height:500px!important}#yv-banner-item-6a0fc043-132e-47a9-9531-f9ff98c79671 .yv-banner-title{font-size:45px!important}h2.title.svelte-9aaofx{display:none!important}.text-theme,h4.block-heading,small.copyright__content{color:#000!important}p.box-desc{padding-top:40px!important;font-size:25px!important}.col-md-6.icon-box{padding-top:15px!important;padding-bottom:15px!important}p.box-desc:hover{color:#35b64f!important}.custom-liquid-section{background-color:#dcdcdc!important}@media only screen and (min-width:480px){.col-xl-2{flex:0 0 16%!important;max-width:16%!important}.announcement-bar__message{animation:20s linear infinite reverse text-loop-right!important;font-weight:700!important;font-size:15px!important}}
    
/* ========================================
   TABBED COLLECTION PRODUCT GRID FIX
   Desktop: 4 columns | Mobile: 2 columns
   ======================================== */

/* Main Grid Container */
.yv-collection-product-grid.product-grid-stacked {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
}

/* Product Card */
.yv-collection-product-grid .yv-product-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Animated Grid Wrapper */
.yv-product-card .animated-grid {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Image Container - Fixed Height */
.yv-product-card-img {
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.yv-product-card-img .yv-product-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
}

.yv-product-card-img .image-wrapper {
  width: 100% !important;
  height: 250px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f9f9f9 !important;
  border-radius: 8px !important;
  
}

.yv-product-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 8px !important;
  
}

/* Discount Badge Positioning */
.yv-product-card-img .discounts {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 10 !important;
  border-radius: 4px !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  
}

/* Product Information Section */
.yv-product-information {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 10px 10px !important;
  
}

.yv-product-title {
  margin-bottom: 8px !important;
  display: block !important;

}

.yv-prizebox {
  margin-bottom: 12px !important;
}

/* Add to Cart Section */
.add-to-cart {
  margin-top: auto !important;
  margin-bottom: 35px !important;
}

.add-to-cart .yv-product-grid-form {
  width: 100% !important;
}

.add-to-cart button.Sd_addProduct {
  width: 100% !important;
  min-height: 44px !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* ========================================
   TABLET - 3 COLUMNS
   ======================================== */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .yv-collection-product-grid.product-grid-stacked {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
  
  /* Tablet Image Height */
  .yv-product-card-img .image-wrapper {
    height: 380px !important;
  }
}

/* ========================================
   MOBILE - 2 COLUMNS
   ======================================== */
@media only screen and (max-width: 767px) {
  .yv-collection-product-grid.product-grid-stacked {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  /* Mobile Image Height */
  .yv-product-card-img .image-wrapper {
    height: 250px !important;
  }
  
  /* Mobile Discount Badge */
  .yv-product-card-img .discounts {
    top: 8px !important;
    left: 8px !important;
    font-size: 10px !important;
    padding: 5px 10px !important;
  }
  
  .yv-product-information {
    padding: 12px 8px !important;
  }
  
  .yv-product-title {
    font-size: 14px !important;
  }
  
  .add-to-cart button.Sd_addProduct {
    min-height: 40px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
}

/* ========================================
   EXTRA SMALL MOBILE - STILL 2 COLUMNS
   ======================================== */
@media only screen and (max-width: 480px) {
  .yv-collection-product-grid.product-grid-stacked {
    gap: 15px !important;
  }
  
  /* Extra Small Mobile Image Height */
  .yv-product-card-img .image-wrapper {
    height: 100px !important;
  }
  
  .add-to-cart button.Sd_addProduct {
    min-height: 38px !important;
    padding: 8px 18px !important;
    font-size: 12px !important;
    margin-bottom: 15px !important;
  }
  
  /* Extra Small Mobile Discount Badge */
  .yv-product-card-img .discounts {
    font-size: 9px !important;
    padding: 15px 8px !important;
    
  }
  .yv-prizebox {
  margin-bottom: 6px !important;
}
.add-to-cart {
  margin-top: auto !important;
  margin-bottom: 10px !important;
}
}