/*==========================================
SINGLE PRODUCT HERO
==========================================*/

.pv-product-hero{
    padding:80px 0;
}

/*==================================
Back Link
==================================*/

.pv-back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:40px;
    text-decoration:none;
    color:gray;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.pv-back-link:hover{
    color:#1B5A39;
}

/*==================================
Product Layout
==================================*/

.pv-product-grid{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:70px;
}

/*==================================
Gallery
==================================*/

.pv-product-gallery{
    flex:0 0 58%;
    max-width:58%;
}

.pv-main-image{
   
    object-fit:cover;
    transition:.4s;
}

.pv-product-gallery:hover .pv-main-image{
    transform:scale(1.03);
}

/* Gallery Thumbnails */

.pv-gallery-thumbs{
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.pv-thumb{
    width:85px;
    height:85px;
    border:2px solid transparent;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    cursor:pointer;
    padding:0;
    transition:.3s;
}

.pv-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.pv-thumb.active{
    border-color:#18342d;
}

.pv-thumb:hover{
    border-color:#1B5A39;
}

/*==================================
Product Summary
==================================*/

.pv-product-summary{
    flex:0 0 42%;
    max-width:42%;
 
}

.pv-category{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#6d7c76;
    margin-bottom:14px;
}
.pv-category a{
	text-decoration:none !important;
}
.pv-tagline{
	    font-size: 18px;
    color: #153c25;
	margin: 0 0 10px  0;
}
.pv-title{
    font-size:66px;
    line-height:.92;
    font-weight:900;
    color:#18342d;
    margin:0 0 10px;
}

/*==================================
Lab Results
==================================*/

.pv-lab-stats{
    display:flex;
    gap:12px;
    margin-bottom:14px;
}

.pv-lab-stat{
    flex:1;
    padding:12px 16px;
    background:#fff;
    border:1px solid #e7ede9;
    border-radius:14px;
    box-shadow:0 6px 16px rgba(24,52,45,.05);
}

.pv-lab-stat__label{
    display:block;
    margin-bottom:4px;
    color:#8a938d;
    font-size:10px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.pv-lab-stat__value{
    display:block;
    color:#18342d;
    font-size:19px;
    font-weight:800;
}

.pv-lab-cert-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-bottom:18px;
    color:#1c442b;
    font-size:14px;
    font-weight:700;
    text-decoration:underline;
    text-underline-offset:3px;
}

.pv-lab-cert-link:hover{
    color:var(--accent);
}


@media (max-width:600px){

    .pv-lab-stats{
        flex-wrap:wrap;
    }

    .pv-lab-stat{
       min-width: 160px;
		flex:none;
    }

}

.pv-price{
    font-size:31px;
    font-weight:700;
    color:#18342d;
    margin-bottom:13px;
}

.pv-stock-status{
    display:inline-flex;
    align-items:center;
    margin:-4px 0 22px;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.pv-stock-status.is-in-stock{
    color:#176b3a;
    background:#e6f6eb;
}

.pv-stock-status.is-out-of-stock{
    color:#9c2f2f;
    background:#fbe8e8;
}

.pv-short-description{
    margin-bottom:35px;
    color:#5d6662;
    font-size:16px;
    line-height:1.8;
}
.hero-description{
	color: #5b765e;	
	font-size:16px;
	font-weight:300;
	margin-bottom: 0 !important;
}

/*==================================
WooCommerce Cart
==================================*/

.cart{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.quantity input.qty{
    width:70px;
    height:48px;
    border:1px solid #ddd;
    border-radius:10px;
    text-align:center;
    font-size:16px;
}

.single_add_to_cart_button{
    background:#18342d !important;
    color:#fff !important;
    border:none !important;
    border-radius:999px !important;
    padding:16px 38px !important;
    font-size:15px !important;
    font-weight:700 !important;
    transition:.35s;
}

.single_add_to_cart_button,
.pv-buy-now-button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
}

.pv-add-to-cart-price{
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:700;
}

.pv-buy-now-button{
    min-width:138px;
    padding:14px 28px !important;
    border:1px solid #d9e4dd !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#18342d !important;
    font-size:15px !important;
    font-weight:700 !important;
    text-transform:uppercase;
    transition:.35s;
}

.pv-buy-now-button:hover{
    border-color:#18342d !important;
    background:#f7faf7 !important;
    transform:translateY(-2px);
}

.single_add_to_cart_button:hover{
    background:#1B5A39 !important;
    transform:translateY(-2px);
}

.single_add_to_cart_button.disabled,
.single_add_to_cart_button:disabled{
    cursor:not-allowed;
    opacity:.55;
    transform:none;
}

/*==================================
Benefits
==================================*/

.pv-benefits{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.pv-benefits li{
    margin-bottom:14px;
    color:#4d5d58;
    font-size:14px;
}

/*==================================
Purchase Options
==================================*/

.pv-option{
    margin-bottom:30px;
}

.pv-option label{
    display:block;
    margin-bottom:12px;
    text-transform:uppercase;
    font-size:10px;
    letter-spacing:1px;
    color:#5b675e;
}


.pv-pill{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 19px;
    border:1px solid #d9e4dd;
    border-radius:999px;
    background:#fff;
    color:#18342d;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    user-select:none;
    transition:all .3s ease
		   gap:15px;
}

.pv-pill:hover{
    border-color:#18342d;
    background:#f7faf7;
    transform:translateY(-2px);
}

.pv-pill.active{
    background:#153c25;
    color:#fff;
    box-shadow:0 8px 20px rgba(24,52,45,.18);

}

button.single_add_to_cart_button.button.alt {
    font-weight: 400 !important;
	background: #153c25 !important;
}
.woocommerce .cart .button, .woocommerce .cart input.button {
    font-weight: 400 !important;

}
/*==================================
COA Button
==================================*/

.pv-coa-button{
    display:inline-flex;
    margin-top:25px;
    padding:11px 25px;
    border:1px solid #d9e4dd;
    border-radius:999px;
    color:#18342d;
    text-decoration:none;
    transition:.3s;
	font-size:15px;
}

.pv-coa-button:hover{
    background:#18342d;
    color:#fff;
}

/*==================================
Features
==================================*/

.pv-features{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:30px 0;
}

.pv-features div{
    flex:1;
}

.pv-features strong{
    display:block;
    font-size:23px;
    color:#18342d;
}

.pv-features span{
    text-transform:uppercase;
    font-size:12px;
    color:#777;
}

/*==================================
Disclaimer
==================================*/

.pv-disclaimer{
    padding:22px;
    border:1px solid #dbe4dd;
    border-radius:22px;
    background:#f7faf7;
    color:#666;
    line-height:1.7;
	font-size:15px;
}

/*======================================
Product Information
======================================*/


.pv-label{
    display:inline-block;
    text-transform:uppercase;
    letter-spacing:3px;
    color:#888;
    font-size:12px;
    margin-bottom:15px;
}

.pv-info-heading h2{
    font-size:36px;
    line-height:1;
    color:#18342d;
    margin:0;
	font-weight:900;
	position:relative;
}
.pv-info-heading h2:after {
    content: "";
    display: block;
    width: 70px;
    height: 6px;
    background: #d5a646;
    border-radius: 10px;
    margin-top: 12px;
}

.pv-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    align-items:start;
	padding-top:30px;
}

.pv-info-card{
    background:#fff;
    border-radius:28px;
    padding:40px;
    border:1px solid #ececec;
    transition:.35s;
}

.pv-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.pv-pills{
	display: flex;
}
.pv-pills button:nth-child(2){
	margin-left:10px;
}
.pv-info-card p{
    line-height:1.8;
    color:#666;
}

/* Main Gallery */
.pv-gallery-main{
 
    border-radius:24px;
	max-width:203px;
    margin: 0 auto;

}
.postid-112 .pv-gallery-main{
	max-width:unset !important;
	
}

/* Hero Image */
.pv-main-image{
   display:block;
	width: 100%;
    transition:all .3s ease;
    margin:0 auto;
}

.pv-product-gallery{
    position: relative;
    background: linear-gradient(
    180deg,
    #c8dfd0 0%,
    #d9eade 45%,
    #eef4e7 85%,
    #ffffff 100%
);
    background-repeat: no-repeat;
    background-position: center;
       background-size: cover;
    border-radius: 30px;
	padding: 173px 0;
}

.pv-info-card__content{
    overflow:hidden;
    position:relative;
    line-height:1.8;
    max-height:calc(1.8em * 3); /* 3 lines */
    transition:max-height .35s ease;
}

.pv-info-card.is-expanded .pv-info-card__content{
    max-height:3000px;
}

.pv-info-card__toggle{
    display:none;
    align-items:center;
    gap:8px;
    margin-top:18px;
    border:none;
    background:none;
    padding:0;
    cursor:pointer;
    font-weight:600;
    color:#18342d;
}

.pv-info-card__toggle.is-visible{
    display:inline-flex;
}

/*==================================
Responsive
==================================*/

@media (max-width:991px){

    .pv-product-grid{
        flex-direction:column;
        gap:50px;
    }

    .pv-product-gallery,
    .pv-product-summary{
        flex:0 0 100%;
        max-width:100%;
    }

    .pv-title{
        font-size:52px;
    }

    .pv-info-grid{
        grid-template-columns:1fr;
    }

    .pv-info-heading h2{
        font-size:42px;
    }
}

@media (max-width:767px){

    .pv-product-hero{
        padding:60px 0;
    }

    .pv-product-gallery{
        padding:118px;
        border-radius:24px;
    }

    .pv-title{
        font-size:42px;
    }

    .pv-price{
        font-size:34px;
    }

    .cart{
        flex-direction:column;
        align-items:stretch;
    }

    .single_add_to_cart_button{
        width:100%;
    }

    .pv-buy-now-button{
        width:100%;
    }
	.woocommerce img, .woocommerce-page img{
		width: 100%;
      
	}
	.pv-back-link {
		margin: 24px 0;
	}
	.pv-pill{
		padding: 14px 18px; ;
	}
	.pv-gallery-main{
		max-width:108px;
	}
 
/* 	.pv-main-image{
		height: auto !important;
		width: 100% !important;
	}
	.pv-gallery-main{
		max-width:113px !important;
	} */
}

/*==================================
Hide WooCommerce Quantity
==================================*/

.quantity{
    display:none;
}

.pv-overview-image-wrap{
    margin-top:35px;
    padding-top:30px;
    border-top:1px solid #edf1ef;
    display:flex;
    justify-content:center;
}

.pv-overview-image{
    width:100%;
    max-width:280px;
    height:auto;
    display:block;
    transition:.35s ease;
}

.pv-info-card:hover .pv-overview-image{
    transform:scale(1.03);
}

/* ==========================================
   PRODUCT FAQ
========================================== */

.pv-product-faq{
    padding:35px 0 50px 0;
    background:#fff;
}

.pv-faq-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:70px;
    align-items:start;
}

.pv-faq-left .pv-label{
    display:inline-block;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .7px;
    color:#18342d;
    text-transform:uppercase;
    margin-bottom:14px;
    position:relative;
}

.pv-faq-left .pv-label::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#d5a646;
    border-radius:10px;
    margin-top:12px;
}

.pv-faq-left h2{
    font-size:48px;
    line-height:1.1;
    font-weight:700;
    color:#18342d;
    margin:18px 0 20px;
}

.pv-faq-left p{
    font-size:16px;
    line-height:1.8;
    color:#5b675e;
    max-width:320px;
}

.pv-faq-item{
    border:1px solid #e8e8e8;
    border-radius:27px;
    margin-bottom:22px;
    overflow:hidden;
    transition:.35s ease;
    background:#fff;
}

.pv-faq-question{
    width:100%;
    border:none;
    background:none;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 25px;

    text-align:left;

    font-size:18px;
    font-weight:700;
    color:#18342d;
	    text-transform: uppercase;
	
}

.pv-faq-icon{
    width:38px;
    height:38px;
    border:1px solid #dcdcdc;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
    line-height:1;

    flex-shrink:0;

    transition:.3s;
}

.pv-faq-answer{
    display:none;
    padding:0 34px 30px;
}

.pv-faq-item.active .pv-faq-answer{
    display:block;
}

.pv-faq-answer p{
    margin:0;
    color:#66756f;
    line-height:1.9;
    font-size:16px;
}


@media(max-width:991px){

    .pv-product-faq{
        padding:70px 0;
    }

    .pv-faq-wrapper{
        grid-template-columns:1fr;
        gap:45px;
    }

    .pv-faq-left p{
        max-width:100%;
    }

    .pv-faq-left h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .pv-faq-question{
        padding:22px;
        font-size:16px;
    }

    .pv-faq-answer{
        padding:0 22px 22px;
    }

    .pv-faq-left h2{
        font-size:32px;
    }

}

.pv-faq-icon{
  width: 40px;
    height: 40px;
    border: 1px solid lightgray;
    border-radius: 50%;
    background: #fff;
    color: darkgray;
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}

.pv-info-card h3{
    font-size:20px;
    font-weight:900;
    margin-bottom:18px;
    color:#0f1f14;
}
.pv-info-content p{
    color:#5f6f69;
    line-height:1.9;
    font-size:16px;
    margin-bottom:0;
}
.pv-info-card{
    padding:26px;
}
.pv-info-card{
    transition:.35s ease;
}

.pv-info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.06);
}

/* Keep long product-specific content readable without letting one card consume
   the whole page. The control is revealed only when its text is truncated. */
.pv-info-card__content{
    max-height:7.6em;
    overflow:hidden;
    color:#5f6f69;
    font-size:16px;
    line-height:1.9;
}

.pv-info-card__content p{
    margin:0;
	font-size:14px;
}

.pv-info-card__content p + p{
    margin-top:.45em;
}

.pv-info-card.is-expanded .pv-info-card__content{
    max-height:none;
}

.pv-info-card__toggle{
    display:none;
    align-items:center;
    gap:8px;
    margin-top:16px;
    padding:0;
    border:0;
    border-bottom:1px solid #d5a646;
    background:transparent;
    color:#18342d;
    cursor:pointer;
    font-family:inherit;
    font-size:12px;
    font-weight:800;
    letter-spacing:.07em;
    line-height:1.6;
    text-transform:uppercase;
}

.pv-info-card__toggle.is-visible{
    display:inline-flex;
}

.pv-info-card__toggle span:last-child{
    font-size:15px;
    transition:transform .2s ease;
}

.pv-info-card.is-expanded .pv-info-card__toggle span:last-child{
    transform:rotate(180deg);
}

.pv-info-card__image{
    display:flex;
    height:210px;
    align-items:center;
    justify-content:center;
    margin:24px 0 0;
    border-top:1px solid #edf1ef;
    background:#f7f8f7;
    overflow:hidden;
}

.pv-info-card__image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    mix-blend-mode:multiply;
}

@media (max-width:767px){
    .pv-info-card__image{
        height:180px;
    }
}

/* ==========================================
   RELATED PRODUCTS
========================================== */

.pv-related-products{
    padding:32px 0 104px;
    background:#fff;
}
.pv-related-products .container {
	width: 100%;
	padding: 0 20px;
}

.pv-related-products__heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:36px;
}

.pv-related-products__heading h2{
    margin:0;
    color:#102e28;
    font-size:36px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.045em;
}

.pv-related-products__rule{
    display:block;
    width:72px;
    height:5px;
    margin-top:14px;
    border-radius:10px;
    background:#d5a646;
}

.pv-related-products__catalog-link,
.pv-related-card__view{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#102e28;
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-decoration:none;
    text-transform:uppercase;
}

.pv-related-products__catalog-link{
    padding-bottom:5px;
    border-bottom:1px solid #d5a646;
}

.pv-related-products__catalog-link span{
    font-size:18px;
    font-weight:400;
    line-height:.7;
}

.pv-related-products__grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:22px;
}

.pv-related-card{
    display:flex;
    min-width:0;
    flex-direction:column;
    overflow:hidden;
    border:1px solid #e4e9e6;
    border-radius:32px;
    background:#fff;
    transition:transform .25s ease, box-shadow .25s ease;
}

.pv-related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 30px rgba(18, 47, 40, .09);
}

.pv-related-card__top{

    padding:21px 21px 14px;
}

.pv-related-card__accent{
    display:block;
    width:29px;
    height:3px;
    margin-bottom:15px;
    border-radius:999px;
    background:#d5a646;
}

.pv-related-card h3{
    margin:0 0 3px;
    color:#102e28;
    font-size:17px;
    font-weight:900;
    line-height:1.15;
    text-transform:uppercase;
}

.pv-related-card h3 a{
    color:inherit;
    text-decoration:none;
}

.pv-related-card__top p{
	display:none;
}

.pv-related-card__image{
    display:flex;
    min-height:196px;
    align-items:center;
    justify-content:center;
    margin:0 20px;
    border-radius:24px 24px 0 0;
    background:#f5f8f6;
    overflow:hidden;
}

.pv-related-card__image img{
    display:block;
    width:100%;
    height:330px;
    object-fit:contain;
    transition:transform .25s ease;
}

.pv-related-card:hover .pv-related-card__image img{
    transform:scale(1.045);
}

.pv-related-card__bottom{
    display:flex;
    min-height:54px;
    margin-top:auto;
}

.pv-related-card__price{
      padding: 13px 12px;
    color: #fff;
    background: #103f2a;
    font-size: 17px;
    font-weight: 800;
    width: 50%;
}

.pv-related-card__price del{
    margin-right:7px;
    opacity:.65;
    font-size:12px;
}

.pv-related-card__view{
    padding:13px;
    font-size:11px;
}

.pv-related-card__view svg{
    width:16px;
    height:16px;
    fill:none;
    stroke:currentColor;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:1.65;
}

@media (max-width:991px){
    .pv-related-products__grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:767px){
    .pv-related-products{
        padding:18px 0 68px;
    }

    .pv-related-products__heading{
        align-items:flex-start;
        flex-direction:column;
        margin-bottom:27px;
    }

    .pv-related-products__heading h2{
        font-size:31px;
    }

    .pv-related-products__grid{
        grid-template-columns:1fr;
        gap:17px;
    }

    .pv-related-card{
        border-radius:25px;
    }

    .pv-related-card__top{
        min-height:auto;
    }

    .pv-related-card__image,
    .pv-related-card__image img{
        height:220px;
    }
	.postid-112 .pv-product-gallery{
		padding: 0 !important;
		min-width: 388px;
        margin: 0 auto;
	}
	.button:hover {
 
    transform: translateY(0);
		transform: unset !important;
}
}

.variations,
.reset_variations{
    display:none !important;
}
