 /* Product Page Redesign */

 	.pdi-product-main {
		padding-bottom: 40px;
	}
	/* Main title container */
	.pdi-product-title {
		display: flex;
		flex-direction: column;
		line-height: 1.2;
	}

	/* Main title parts */
	.pdi-product-title {
		font-size: 20px;
		font-family: 'Noto Sans';
		font-weight: 400;
		text-transform: uppercase;
	}
	.pdi-product-title .product-title-main strong {
		font-family: 'Noto Sans', sans-serif;
		font-weight: 700;
		font-size: 76px;
		color: #A61932;
		text-transform: capitalize;
	}

	.pdi-product-title .product-title-after-tm {
		font-weight: normal;
		font-size: 1.5rem;
		opacity: 0.8;
	}

	/* Secondary title */
	.pdi-product-title .product-secondary-title {
		text-transform: uppercase;
		font-size: 1.8rem;
		margin-top: 0.5rem;
		color: #666;
	}

	.pdi-product-title .product-secondary-title .product-title-main {
		font-size: inherit;
		font-weight: inherit;
	}

	.pdi-product-title .product-secondary-title .product-title-after-tm {
		font-size: 1.4rem;
		opacity: 0.7;
	}
/* Tab Navigation */
.pdi-tab-nav {
    display: flex;
    border-bottom: 1px solid #AA1F2E;
    margin-bottom: 20px;
	justify-content: space-between;
}

.pdi-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
	width: auto;
    border-radius: 0px;    
	text-transform: uppercase;
	color: #A61932;
	font-size: 20px;
	letter-spacing: 0px;
}
.pdi-tab-btn:hover {
    background: unset;
    box-shadow: unset;
    color: unset !important;
}

.pdi-tab-btn.active {
    border-bottom-color: #AA1F2E;
	border-color: #A61932;
}

/* Tab Content */
.pdi-tab-content {
    display: none;
}

.pdi-tab-content.active {
    display: block;
}

/* Downloads Section */
.pdi-link-list--file {
    list-style: none;
    padding: 0;
}

.pdi-link-list--file li {
    margin-bottom: 10px;
}

.pdi-link-list--file a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.pdi-link-list--file a:hover {
    color: #AA1F2E;
}

.file--action {
    color: #AA1F2E;
    font-size: 0.9em;
}

.pdi-more-resources {
    margin-top: 30px;
    text-align: center;
}

.pdi-product .inner-wrap {
	max-width: 1420px;
}
/* Variant Selector */
.pdi-variant-selector {
    margin: 2rem 0;
}

.pdi-variant-selector-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #AA1F2E;
}

.pdi-variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.pdi-variant-button {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
	width: 130px;
    text-transform: uppercase;
	background: #ffffff;
	border: 1px solid #B80D30;
	color: #B80D30;
}

.pdi-variant-button:hover {
    background: #eee;
	color: #AA1F2E;
}

.pdi-variant-button.active {
    background: #AA1F2E;
    color: white;
    border-color: #AA1F2E;
}

/* Variant Display */
.pdi-variant-slide {
    display: none;
    margin-bottom: 2rem;
    flex-direction: row; /* Ensure image & details are horizontal */
	align-items: flex-start;
}

.pdi-variant-slide.active {
    display: flex; /* Now uses flex layout */
}

.pdi-variant-details {
	flex: 1; /* Details take remaining space */
}

.pdi-variant-specs {
	padding-left: 20px;
    border-left: 5px solid #aa1f2e;
}

.pdi-variant-image {
    flex: 0 0 40%; /* Image takes 40% width */
    max-width: 400px;
    text-align: center;
}

.pdi-variant-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.pdi-variant-sku h4 {
    color: #AA1F2E;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.pdi-variant-specs p {
    margin: 0.5rem 0;
    line-height: 1.5;
	font-size: 16px;
}

.pdi-variant-specs strong {
    color: #A61932;
	font-weight: normal;
}

.pdi-variant-labels {
    margin-top: 1.5rem;
    display: flex;
    gap: 15px;
}

.pdi-label-link {
    display: inline-block;
    padding: 0px;
    border-radius: 4px;
    color: #AA1F2E;
    text-decoration: none;
	border-radius: 0px;
	font-size: 16px;
}
.pdi-label-link:first-of-type {
	border-right: 1px solid #AA1F2E;
	padding-right: 16px;
}
.pdi-product-desc p {
	font-size: 16px;
}

.how-to-buy h2 {
	font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #AA1F2E;
}
.how-to-buy-buttons {
	display: flex;
	gap: 10px;
}
.how-to-buy-buttons a {
	padding: 10px 20px;
	background: #B80D30;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.how-to-buy-buttons a:hover {
	background: #AA1F2E;
}


/* --- Product Overview Tabs as Buttons --- */
.pdi-tabset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    border: none;
}

/* Hide default radio buttons */
.pdi-tab-control {
    display: none;
}

/* Style the labels (tabs) as buttons */
.pdi-tabset .pdi-tab {
    display: inline-block;
    background: #979AA5; /* default gray */
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

/* Hover state */
.pdi-tabset .pdi-tab:hover {
    
}

/* Active (checked) state from radio button */
.pdi-tab-control:checked + .pdi-tab {
    background: #A20B20; /* active color */
    color: #fff;
}

.product-overview {
    margin-top: 20px;
    padding: 50px 16px;
    background: #E5E5E5;
}	

.product-overview h2 {
	color: #A20B20;
	font-size: 60px;
	font-weight: bold;
}
.product-overview h3 {
	color: #A20B20;
	font-size: 32px;
	text-align: center;
	font-weight: bold;
}

.pdi-product-accessories h2 {
	color: #A20B20;
	font-size: 40px;
	font-weight: bold;
	display: block;
	text-align: center;
}

/* Tab panels */
.pdi-tabset .pdi-tabpanel {
    display: none;
    width: 100%;
    padding-top: 40px;
}

/* Show the associated panel when its radio is checked */
.pdi-tab-control:checked + .pdi-tab + .pdi-tabpanel {
    display: block;
}

#features-tab {
	grid-template-columns: 1fr 1fr 1fr 1fr !important;
	grid-gap: 40px !important;
	margin-top: 40px;
	background: unset !important;
	border: 0px;
}

#features-tab .pdi-tab-feature {
	text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#features-tab .pdi-tab-feature p, 
#features-tab .pdi-tab-feature ul li {
	font-size: 16px;
	line-height: unset;
}
#features-tab .pdi-tab-feature .pdi-tab-feature-label{
	font-family: 'Noto Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #A61932;
	text-transform: uppercase;
	margin-top: 8px;
    margin-bottom: 0;
}
.pdi-tab-feature ul {
	text-align: left;
}
.citation {
	margin-top: 40px;
	margin-bottom: 0;
}
#faqs-tab {
	padding-top: 40px;
}
#resources-tab, #compatibility-tab, #faqs-tab, #disclosures-tab {
	margin-top: 40px;
	background: #ffffff;
}
.new-product-archive-grid {
	grid-template-columns: repeat(3, 1fr) !important; /* Force 3 columns */
}
#resources-tab {
	text-align: center;
}
.see-more-resources-btn {
    display: inline-block;
	text-align: center;
    color: #a20b20;
    padding: 16px 0px;
}

/* Disclosures Table */
.pdi-tabpanel table {
	border-right: 0;
	border-left: 0;
	border-top: 0;
	border-bottom: 0;
}
.pdi-tabpanel table thead th {
	font-weight: bold;
	color: black;
}
.pdi-tabpanel table td, .pdi-tabpanel table th {
	border-left: 0;
	border-right: 0;
}
.pdi-product-features-icons {
    margin: 40px 0;
    text-align: center;
}

/* Icons */
.pdi-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.pdi-icon-item img {
    max-width: 175px;
    height: auto;
}

/* Product Highlights */

.product-highlights {
    display: flex;
    width: 100%;
}

.highlight-left,
.highlight-right {
    width: 50%;
    padding: 40px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    box-sizing: border-box;
}
.highlight-right {
	padding-left: 20px;
}

.highlight-left {
    background-color: var(--highlight-color, #004d40);
    color: #fff;
}

.highlight-left .highlight-inner {
	margin-left: auto;
}
.highlight-right .highlight-inner {
	margin-right: auto;
}

.highlight-inner {
    max-width: 800px;
    width: 90%;
    text-align: center;	
}

.highlight-title {
    font-size: 40px;
	font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.highlight-subtitle {
    font-size: 16px;
	text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.highlight-left .highlight-title,
.highlight-left .highlight-subtitle {
	color: #ffffff;
}

.highlight-body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.highlight-image {
    width: 65%;
    text-align: center;
}

.highlight-image img {
    max-width: 100%;
    height: auto;
}

.highlight-content {
    width: 33%;
    text-align: left;
}


.highlights-flex {
    display: flex;
    gap: 20px;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-column {
    flex: 1;
    display: flex;
}

.highlight-content .pdi-btn {
	background: #979AA5;
	color: #fff;
}


@media (max-width: 768px) {
    .highlights-flex {
        flex-direction: column;
    }
    .highlight-inner {
        flex-direction: column;
        text-align: center;
    }
}

