/*
Theme Name: PowerPack Child
Description: Custom PowerPack landing page
Author: PowerDataLab
Template: generatepress
Version: 1.0.0
*/

/* =========================================
   VARIABLES
========================================= */
:root {
	--pp-blue: #1464f4;
	--pp-blue-dark: #0b4ed0;
	--pp-blue-light: #eaf2ff;

	--pp-green: #19b36b;
	--pp-yellow: #ffbf2f;
	--pp-red: #ef4444;

	--pp-dark: #101828;
	--pp-text: #344054;
	--pp-muted: #667085;

	--pp-light: #f7f9fc;
	--pp-white: #ffffff;

	--pp-border: #e4e7ec;

	--pp-container: 1100px;

	--pp-radius: 16px;
	--pp-radius-lg: 24px;

	--pp-shadow:
		0 15px 45px rgba(16, 24, 40, .08);

	--pp-shadow-lg:
		0 25px 70px rgba(16, 24, 40, .13);
}


/* =========================================
   RESET / BASE
========================================= */

.pp-page,
.pp-page *,
.pp-page *::before,
.pp-page *::after {
	box-sizing: border-box;
}

.pp-page {
	width: 100%;
	overflow: hidden;

	color: var(--pp-text);

	background: var(--pp-white);

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Arial,
		sans-serif;
}

.pp-page img {
	max-width: 100%;
	height: auto;
}

.pp-page a {
	text-decoration: none;
}

.pp-page h1,
.pp-page h2,
.pp-page h3,
.pp-page h4 {
	color: var(--pp-dark);

	font-weight: 800;

	letter-spacing: -0.035em;
}

.pp-page p {
	color: var(--pp-text);
}


/* =========================================
   CONTAINER
========================================= */
.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%!important;
}

/* =========================================================
   CHECKOUT — FULL WIDTH SHOPIFY-STYLE LAYOUT
   ========================================================= */

/* ---------------------------------------------------------
   1. GeneratePress outer page: FULL WIDTH
   --------------------------------------------------------- */

body.woocommerce-checkout #page.grid-container {
    width: 100%;
    max-width: none;
    margin: 0;
}


/* ---------------------------------------------------------
   2. Remove GeneratePress content constraints
   --------------------------------------------------------- */

body.woocommerce-checkout #content,
body.woocommerce-checkout #primary,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .inside-article,
body.woocommerce-checkout .entry-content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

body.woocommerce-checkout .inside-article,
body.woocommerce-checkout .entry-content {
    padding-left: 0;
    padding-right: 0;
}


/* ---------------------------------------------------------
   3. WooCommerce checkout form: FULL WIDTH
   --------------------------------------------------------- */

body.woocommerce-checkout form.checkout {
    width: 100%;
    max-width: none;
    margin: 0;
}


/* ---------------------------------------------------------
   4. Main two-column layout
   --------------------------------------------------------- */

body.woocommerce-checkout .checkout-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   5. LEFT — white background
   --------------------------------------------------------- */

body.woocommerce-checkout .checkout-left {
    width: 100%;
    min-width: 0;
    background: #ffffff;
}


/* ---------------------------------------------------------
   6. RIGHT — light grey background
   --------------------------------------------------------- */

body.woocommerce-checkout .checkout-right {
    width: 100%;
    min-width: 0;
    background: #f5f5f5;
    border-left: 1px solid #dedede;
}


/* ---------------------------------------------------------
   7. LEFT CONTENT
   --------------------------------------------------------- */

body.woocommerce-checkout .checkout-left-inner {
    max-width: 700px;
    margin-left: auto;
    padding: 50px 60px 80px;
}


/* ---------------------------------------------------------
   8. RIGHT CONTENT
   --------------------------------------------------------- */

body.woocommerce-checkout .checkout-right-inner {
    max-width: 520px;
    margin-right: auto;
    padding: 50px 60px 80px;
}


/* ---------------------------------------------------------
   9. Remove old WooCommerce two-column styling
   --------------------------------------------------------- */

body.woocommerce-checkout #customer_details {
    width: 100%;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   10. Order summary
   --------------------------------------------------------- */

body.woocommerce-checkout #order_review_heading {
    margin-top: 0;
    font-size: 17px;
    font-weight: 700;
    color: #8a8a8a;
}

body.woocommerce-checkout #order_review {
    width: 100%;
}


/* ---------------------------------------------------------
   11. MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    body.woocommerce-checkout .checkout-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.woocommerce-checkout .checkout-right {
        border-left: 0;
        border-top: 1px solid #dedede;
    }

    body.woocommerce-checkout .checkout-left-inner,
    body.woocommerce-checkout .checkout-right-inner {
        max-width: none;
        margin: 0;
        padding: 30px 20px 50px;
    }

}


/* =========================================================
   CHECKOUT — FORM FIELDS
   ========================================================= */
/* Keep checkout section headings */
body.woocommerce-checkout .checkout-left h3 {
    display: block;
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

/* Hide individual field labels */
body.woocommerce-checkout .form-row > label {
    display: none;
}

/* =========================================================
   CUSTOM ORDER SUMMARY
   ========================================================= */

.custom-order-summary {
    width: 100%;
}


/* Product */

.custom-checkout-product {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 0 24px;
}


.custom-checkout-product-image {
    position: relative;
    width: 64px;
    height: 64px;
}


.custom-checkout-product-image img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #fff;
}


.custom-checkout-product-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 45%;
    border: 2px solid #fff;
    background: #000000;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}


.custom-checkout-product-info {
    min-width: 0;
}


.custom-checkout-product-name {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}


.custom-checkout-product-price {
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 600;
}


/* Product metadata */

.custom-checkout-product-info dl {
    margin: 4px 0 0;
    font-size: 12px;
    color: #777;
}


/* Totals */

.custom-order-totals {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}


.custom-order-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 7px 0;

    font-size: 14px;
    color: #555;
}


.custom-order-total-row strong {
    color: #222;
    font-weight: 500;
}


.custom-total {
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid #ddd;

    color: #111;
    font-size: 17px;
}


.custom-total strong {
    font-size: 20px;
    font-weight: 600;
}


/* Remove old table styling if WooCommerce adds it */

.woocommerce-checkout-review-order-table {
    display: none !important;
}

.woocommerce-info{
    font-size: 13.5px;
    font-weight: 600;
    padding: 0 0 10px;
    margin: 0px 0 0em;
    border-top: none;
}

.woocommerce-info:before{
    display:none;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message{}

/* Mobile */

@media (max-width: 600px) {

    .custom-checkout-product {
        grid-template-columns: 56px 1fr auto;
        gap: 12px;
    }

    .custom-checkout-product-image,
    .custom-checkout-product-image img {
        width: 56px;
        height: 56px;
    }

}


/* Coupon form hidden by default */
#woocommerce-checkout-form-coupon {
    display: none !important;
}

/* WooCommerce adds the inline display:block when opened */
#woocommerce-checkout-form-coupon[style*="display: block"] {
    display: flex !important;
}


.checkout-currency{
    font-size: 13px;
    font-weight: 400;
}

.showcoupon{
    color: #605f5f;
    text-decoration: none;
}


/* =========================================================
   CLEAR FLOATS
   ========================================================= */

body.woocommerce-checkout #billing_address_1_field {
    clear: both;
}


/* =========================================================
   CHECKOUT BUTTON
   ========================================================= */

body.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.woocommerce-checkout #place_order:hover {
    background: #333;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body.woocommerce-checkout #billing_first_name_field,
    body.woocommerce-checkout #billing_last_name_field {
        width: 100%;
        float: none;
    }

}



.one-container .site-content {
    padding: 0!important;
}

.pp-wrap {
	width: min(
		calc(100% - 40px),
		var(--pp-container)
	);

	margin-inline: auto;
}

.pp-narrow {
	max-width: 780px;
}


/* =========================================
   SECTIONS
========================================= */

.pp-section {
	padding-top: 30px;
}

.pp-intro {
	text-align: center;
}

.pp-intro h2,
.pp-product > .pp-wrap > h2,
.pp-benefits h2,
.pp-testimonials h2,
.pp-faq h2 {
	max-width: 820px;

	margin:
		0 auto 25px;

	font-size:
		clamp(28px, 4vw, 38px);

	line-height: 1.1;

	text-align: center;
}

.pp-section > h2 {
    margin-bottom:35px;
}

.pp-section p {
	font-size: 18px;
	line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.pp-btn {
	display: inline-flex;

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

	padding: 17px 32px;

	border: 0;
	border-radius: 15px;

	background:
		#2BAA3D;

	color: #fff !important;

	font-size: clamp(16px, 2vw, 24px);;
	font-weight: 800;

	line-height: 1;

	box-shadow:
		0 10px 25px hsl(129deg 60% 42% / 25%);

	cursor: pointer;

	transition:
		transform .2s ease,
		box-shadow .2s ease,
		filter .2s ease;
}

.pp-btn:hover {
	color: #fff !important;

	transform: translateY(-2px);

	box-shadow:
		0 15px 35px hsl(129deg 60% 42% / 45%);

	filter: brightness(1.04);
}

.pp-btn-large {
	padding: 20px 40px;

	font-size: 17px;
}


/* =========================================
   HERO
========================================= */

.pp-hero {
	position: relative;

	padding:
		0;

	background:
		linear-gradient(180deg, #009C0BBD 0%, #FFFFFF 100%);
}

.pp-hero::before {
	content: "";

	position: absolute;

	top: -200px;
	right: -150px;

	width: 550px;
	height: 550px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(20,100,244,.10),
			transparent 70%
		);

	pointer-events: none;
}

.pp-hero .pp-wrap {
	position: relative;
	z-index: 1;
}

.pp-hero-content {
	max-width: 920px;

	margin: 0 auto;

	text-align: center;
}

.pp-hero h2 {
	margin: 0 auto 25px;

	font-size:
		clamp(27px, 2.6vw, 40px);

	line-height: 1.3;
}

.pp-hero-content > p {
	max-width: 750px;

	margin:
		0 auto 35px;

	color:#505869;

	font-size:
		clamp(18px, 2vw, 21px);

	line-height: 1.65;
}

.pp-hero-image {
	max-width: 850px;

	margin: 30px auto 0;
}

.pp-hero-image > img {
    width: 750px;
    display: block;
    margin: 0 auto;
}

.pp-image-placeholder {
	display: flex;

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

	min-height: 420px;

	border:
		1px solid var(--pp-border);

	border-radius:
		var(--pp-radius-lg);

	background:
		linear-gradient(
			135deg,
			#edf4ff,
			#ffffff
		);

	color: var(--pp-blue);

	font-size: 15px;
	font-weight: 800;

	box-shadow: var(--pp-shadow-lg);
}

.pp-rectangle{
    margin-top:50px;
    background: #dedede;
    border-radius: 20px;
    padding: 30px 30px 5px 30px;
    text-align: center;
}

/* =========================================
   PRODUCT SECTION
========================================= */

.pp-product {
	background: var(--pp-white);
}

.pp-product > .pp-wrap > h2 {
	margin-bottom: 70px;
}

.pp-product > h2 {
    
	font-size: clamp(25px, 3.5vw, 36px);
	font-weight:600;
	text-align:center;
}

.pp-product-block {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, 1fr);

	align-items: center;
	gap: 30px;
	min-height:380px;
	background:#E40303;
}

.pp-product-image .pp-image-placeholder {
	min-height: 480px;
}

.pp-product-block > .pp-product-image{
    width:340px;
    margin: 0 auto;
}

.pp-product-content{
    padding-right:20px;
}

.pp-product-content h2 {
    color:#fff;
	margin:
		0 0 25px;
	font-size:
		clamp(28px, 3.5vw, 40px);
	line-height: 1.1;
}

.pp-product-content p {
	color: var(--pp-light);
}

.pp-product-content p:nth-of-type(2) {
    font-size:clamp(10px, 3.5vw, 14px);;
}

.pp-product-content img {
	width: 212px;
}


/* =========================================
   BONUS SECTIONS
========================================= */

.pp-bonus-alt {
	background: var(--pp-white);
}

.pp-two-column {
    background :#fff;
    border:4px solid #2BAA3D;
    border-radius:20px;
    padding:15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.34);
    
	display: grid;
	
	grid-template-columns:
		minmax(0, 1fr)
		minmax(0, 1fr);

	align-items: center;

	gap: 90px;
}

.pp-bonus-image > img {
    width: 347px;
    display: block;
    margin: 0 auto;
}

.pp-reverse .pp-bonus-image {
	order: 2;
}

.pp-reverse .pp-bonus-content {
	order: 1;
}

.pp-two-column-guarantee {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    
}

.pp-bonus-image .pp-image-placeholder {
	min-height: 400px;
}

.pp-badge {
	display: inline-flex;

	padding: 8px 14px;

	margin-bottom: 18px;

	border-radius: 50px;

	background: var(--pp-blue-light);

	color: var(--pp-blue);

	font-size: 13px;
	font-weight: 800;

	letter-spacing: .05em;
}

.pp-bonus-content h2 {
	margin:
		0 0 22px;

	font-size:
		clamp(23px, 3.5vw, 33px);

	line-height: 1.1;
	
	font-weight: 700;
}

.pp-bonus-content img {
	width:236px;
}

.pp-bonus-content p {
	color: var(--pp-muted);
}

.gcbd{
    margin: 45px auto;
    display: block;
    max-width: 400px;
    text-align: center;
}

/* =========================================
   OFFER
========================================= */

.pp-offer {
	padding:
		110px 0;

	background:
		linear-gradient(
			135deg,
			#0c3b91,
			#1464f4
		);

	color: #fff;

	text-align: center;
}

.pp-offer-box {
	max-width: 850px;
}

.pp-offer h2 {
	margin:
		0 0 25px;

	color: #fff;

	font-size:
		clamp(36px, 5vw, 58px);

	line-height: 1.05;
}

.pp-price {
	margin:
		20px 0;

	color: #fff;

	font-size: 80px;
	font-weight: 900;

	letter-spacing: -0.06em;
}

.pp-price span {
	font-size: 40px;

	vertical-align: top;
}

.pp-offer p {
	color:
		rgba(255,255,255,.85);
}


/* =========================================
   BENEFITS
========================================= */

.pp-benefits {
	background: #5db265;
    padding-bottom: 45px;
}

.pp-benefits h2{
    color: #fff;
}

.pp-benefit-grid {
	display: grid;

	grid-template-columns:
		repeat(4, 1fr);

	gap: 25px;

	margin-top: 40px;
}

.pp-benefit {
	padding: 30px;

	border:
		1px solid var(--pp-border);

	border-radius:
		var(--pp-radius);

	background: #fff;

	box-shadow:
		0 5px 20px rgba(16,24,40,.04);
	text-align:center;
	
}

.pp-benefit::before {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	border-radius: 50%;
	background-color: #2BAA3D;
	
	/* Center and size the SVG icons */
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
}

/* 2. Specific SVGs for each card */

.b-time::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.b-user::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'/%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'/%3E%3C/svg%3E");
}

.b-presentation::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E");
}

.b-versatility::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 2 7 12 12 22 7 12 2'/%3E%3Cpolyline points='2 17 12 22 22 17'/%3E%3Cpolyline points='2 12 12 17 22 12'/%3E%3C/svg%3E");
}

.pp-benefit h3 {
	margin:
		0 0 12px;

	font-size: 20px;
}

.pp-benefit p {
	margin: 0;

	color: var(--pp-muted);

	font-size: 16px !important;
}


/* =========================================
   BIG OFFER
========================================= */

.pp-big-offer {
	background: var(--pp-white);

	text-align: center;
}

.pp-big-offer .pp-wrap {
	background: #E40303 ;
	border-radius: 20px;
    padding: 30px;
}

.pp-big-offer img {
    width: 637px;
}

.pp-big-offer h2 {
	margin:
		0 auto 25px;

	font-size:
		clamp(25px, 5vw, 38px);

	line-height: 1.05;
	color: var(--pp-light);
}

.pp-big-offer p {
	max-width: 860px;

	margin:
		0 auto 35px;

	color: var(--pp-light);
}

.pp-big-offer .pp-btn{
    margin: 0 auto 20px auto;
    display: block;
    max-width: 300px;
    text-align: center;
}
    
}



/* =========================================
   TESTIMONIALS
========================================= */

.pp-testimonials {
	background: var(--pp-light);
}

.pp-testimonial-grid {
	display: grid;

	grid-template-columns:
		repeat(3, 1fr);

	gap: 25px;

	max-width: 1050px;

	margin:
		60px auto 0;
}

.pp-testimonial {
	position: relative;

	padding: 35px;

	border:
		1px solid var(--pp-border);

	border-radius:
		var(--pp-radius-lg);

	background: #fff;

	box-shadow:
		0 10px 35px rgba(16,24,40,.05);
}

.pp-avatar {
	display: flex;

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

	width: 50px;
	height: 50px;

	margin-bottom: 15px;

	border-radius: 50%;

	background:
		linear-gradient(
            135deg,
            #2BAA3D,
            #76E085
        );

	color: #fff;

	font-weight: 800;
}

.pp-stars {
	margin-bottom: 15px;

	color: #ffb400;

	font-size: 18px;

	letter-spacing: 2px;
}

.pp-testimonial p {
	margin-bottom: 20px;

	font-size: 17px !important;
}

.pp-testimonial strong {
	color: var(--pp-dark);
}


/* =========================================
   GUARANTEE
========================================= */

.block-container {
	background-color: #e50304;
}

.pp-guarantee {
	text-align: center;
}

.pp-guarantee-icon {
	display: flex;

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

	width: 75px;
	height: 75px;

	margin:
		0 auto 25px;

	border-radius: 50%;

	background:
		#e8f8ef;

	color: var(--pp-green);

	font-size: 35px;
	font-weight: 900;
}

.pp-guarantee h2 {
	margin-bottom: 20px;
	font-size:
		clamp(26px, 4vw, 42px);
	font-weight: 700;
}

.pp-guarantee p {
	margin:
		0 auto 22px;

	color: var(--pp-light);
}

.pp-guarantee .pp-btn{
    margin-bottom:22px;
}

.pp-guarantee img {
    width: 300px;
}

.hellocomp {
    width: 297px!important;
}


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

.pp-faq {
	background: var(--pp-light);
	padding-bottom: 50px;
}

.pp-faq details {
	padding: 22px 0;

	border-bottom:
		1px solid var(--pp-border);
}

.pp-faq summary {
	position: relative;

	padding-right: 35px;

	color: var(--pp-dark);

	font-size: 18px;
	font-weight: 800;

	cursor: pointer;

	list-style: none;
}

.pp-faq summary::-webkit-details-marker {
	display: none;
}

.pp-faq summary::after {
	content: "+";

	position: absolute;

	top: 0;
	right: 0;

	color: #2BAA3D;

	font-size: 25px;
	font-weight: 400;
}

.pp-faq details[open] summary::after {
	content: "−";
}

.pp-faq details p {
	margin:
		15px 0 0;

	color: var(--pp-muted);

	font-size: 16px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
    .img-guarantee{
        margin-bottom:30px;
    }
    
    .hellocomp {
        margin-top: 30px;
    }

	.pp-product-block,
	.pp-two-column {
		grid-template-columns: 1fr;

		gap: 0;
	}
	
	.pp-two-column-guarantee {
	    gap: 20px!important ;
	}
	
	.pp-product-content {
    	padding: 0 30px;
    }
    
    .pp-product-content img {
        width: 150px;
    }
    
    .pp-bonus-content img {
        width: 150px;
    }

	.pp-reverse .pp-bonus-image {
		order: 1;
	}

	.pp-reverse .pp-bonus-content {
		order: 2;
	}

	.pp-benefit-grid {
		grid-template-columns:
			repeat(2, 1fr);
	}
	
	.pp-reverse-guarantee > .pp-product-content {
    order: 2;
    }
    
    .pp-reverse-guarantee > .pp-product-image {
        order: 1;
    }
    
    .gcbd{
        width:330px;
    }
    
    .pp-testimonial-grid{
        margin: 20px auto 0;
    }
    
    .pp-btn-large{
        padding:20px;
    }
    .img-guarantee{
        width: 100%!important;
    }

}


@media (max-width: 600px) {

	.pp-wrap {
		width:
			min(
				calc(100% - 32px),
				var(--pp-container)
			);
	}

	.pp-section {
		padding-top: 20px;
	}
	
	.pp-section.pp-product > h2:first-of-type {
		padding: 0 30px;
	}

	.pp-hero {
		padding:
			65px 10px 20px;
	}

	.pp-hero h1 {
		font-size: 40px;
	}

	.pp-hero-image {
		margin-top: 20px;
	}

	.pp-image-placeholder {
		min-height: 280px;
	}

	.pp-product-image .pp-image-placeholder,
	.pp-bonus-image .pp-image-placeholder {
		min-height: 280px;
	}

	.pp-benefit-grid {
		grid-template-columns: 1fr;
	}

	.pp-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.pp-price {
		font-size: 64px;
	}

	.pp-price span {
		font-size: 30px;
	}

	.pp-offer {
		padding: 80px 0;
	}

	.pp-two-column {
		gap: 35px;
	}

}
