#ppp-single-product h1,
#ppp-single-product h2,
#ppp-single-product h3 {
	font-family: var(--e-global-typography-primary-font-family);
}
.info-container p,
.info-container ul li,
.info-container ul li strong,
.info-container p strong,
.info-container table,
.info-container table th,
.info-container table td,
.info-container table th strong,
.info-container table td strong {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-size: var(--e-global-typography-text-font-size);
}
.info-container h2{
	font-family:var(--e-global-typography-primary-font-family);
font-size: 32px;
font-weight:700;
}
.ppp-archive-title {
	margin-bottom: 24px;
}

.ppp-single-layout {
	display: flex;
	 flex-direction: column;
	gap: 36px;
	align-items: start;
max-width: 1440px;
	margin: 0 auto;
	padding: 60px 50px 60px;
}


.parent, .info-container {
   display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 70px;
}
    
.left-side, .ppp-single-main {
    grid-column: span 3 / span 3;
}

.right-side, .ppp-single-sidebar {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
}
  
/* Tablet */
@media (max-width: 991px) {
    .parent,
    .info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-side,
    .ppp-single-main,
    .right-side,
    .ppp-single-sidebar {
        grid-column: 1 / -1;
        grid-column-start: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
	.ppp-single-layout{
		padding:50px 20px;
	}
    .parent,
    .info-container {
        gap: 24px;
    }
}
/* @media (max-width: 991px) {
    .right-side,
    .ppp-single-sidebar {
        order: -1;
    }
} */


/*  */
.product-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-block {
    flex: 1;
    width: auto;
}

.btn-lg {
    padding: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.btn-primary {
    background: linear-gradient(to bottom, #fcd34d, #f59e0b);
    color: #451a03;
    border: 1px solid #d97706;
    border-bottom-color: #b45309;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15), inset 0 1px rgba(255, 255, 255, .4);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .4);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
    filter: brightness(1.08);
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(1);
}

.btn-icon,
.product-whatsapp-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }
}

.ppp-faq-section {
	margin-top: 36px;
}

.ppp-faq-item {
	border: 1px solid var( --ppp-border, #e5e7eb );
	border-radius: 8px;
	padding: 4px 18px;
	margin-top: 10px;
}

.ppp-faq-item summary {
	cursor: pointer;
	font-weight: 600;
	padding: 12px 0;
	list-style: none;
}

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

.ppp-faq-item summary::after {
	content: '+';
	float: right;
	font-weight: 400;
	color: var( --ppp-muted, #6b7280 );
}

.ppp-faq-item[open] summary::after {
	content: '\2212';
}

.ppp-faq-answer {
	padding: 0 0 16px;
	color: var( --ppp-muted, #6b7280 );
	font-size: 14px;
	line-height: 1.6;
}
.ppp-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ppp-sidebar-box h2{
	padding:0px 15px!important;
}
@media ( min-width: 900px ) {
	.ppp-single-sidebar {
		position: sticky;
		top: 20px;
	}
}
.ppp-sidebar-box {
	    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: calc(15px + 2rem);
}

.ppp-sidebar-box h3 {
	margin: 0 0 10px;
	  background: #f8fafc;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
}
.ppp-single-eyebrow {
	margin: 18px 0 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --ppp-primary, #f2a71b );
}

.ppp-single-title {
	font-size: 28px;
	margin: 4px 0 0;
}

.ppp-price-box {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: var( --ppp-radius, 8px );
	padding: 14px 18px;
	margin: 18px 0 0;
}

.ppp-price-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var( --ppp-primary, #f2a71b );
}

.ppp-price-box .ppp-price-value {
	font-size: 20px;
	font-weight: 700;
	color: var( --ppp-dark, #14213d );
}

.ppp-price-box .ppp-price-disclaimer {
	font-size: 12px;
	color: var( --ppp-muted, #6b7280 );
}

.ppp-quickspecs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 14px 24px;
	list-style: none;
	margin: 18px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid var( --ppp-border, #e5e7eb );
}

.ppp-quickspecs-grid li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 14px;
	border-bottom: 1px solid var( --ppp-border, #e5e7eb );
}

.ppp-single-description {
	margin-top: 26px;
	line-height: 1.7;
}
.info-container h2{
	font-family:var(--e-global-typography-primary-font-family);
font-size: 32px;
font-weight:700;
}
.ppp-types-section,
.ppp-dimensions-section {
	margin-top: 36px;
}

.ppp-types-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 14px;
}

@media ( min-width: 640px ) {
	.ppp-types-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.ppp-type-card {
	border: 1px solid var( --ppp-border, #e5e7eb );
	border-radius: 8px;
	padding: 16px 18px;
}

.ppp-type-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
}

.ppp-type-description {
	font-size: 14px;
	color: var( --ppp-muted, #6b7280 );
}

.ppp-spec-table {
	width: 100%;
	border-collapse: collapse;
	
	font-size: 14px;
}

.ppp-spec-table th,
.ppp-spec-table td {

	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid #e2e8f0;
}

.ppp-spec-table thead th {
	background: #f9fafb;
	font-weight: 600;
}

.ppp-spec-table-compact th {
	width: 50%;
	color: var( --ppp-muted, #6b7280 );
	font-weight: 500;
	background: none;
}

.ppp-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}