/**
 * Phoenix Blocks Styles
 * 
 * Styles specific to Phoenix block templates
 * Separated from phoenix-template.css for better organization
 */

/* Phoenix Banner Block */
.phoenix-banner {
	font-family: Inter, Sans-serif;
	position: relative;
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.phoenix-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.phoenix-container-full {
	position: relative;
	z-index: 2;
	max-width: 100%;
	padding-left: 150px;
	padding-right: 150px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.phoenix-banner-content {
	max-width: 800px;
	color: white;
	padding: 0 25px;
}

.phoenix-banner-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.phoenix-banner-subtitle {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.95;
}

.phoenix-banner-cta {
	display: inline-block;
	background: white;
	color: #F26622;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 800;
	text-decoration: none;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.phoenix-banner-cta:hover {
	background: #f59e0b;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

/* Larger CTA Button Variant */
.phoenix-banner-cta-large {
	font-size: 18px !important;
	padding: 16px 32px !important;
	min-width: 200px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phoenix-banner-cta-large:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Phoenix Calculator Block */
.phoenix-template-calculator {
	background-color: #f5f5f5;
	padding: 3rem 0;
	font-family: Inter, Sans-serif;
}

.phoenix-template-calculator .heading-title {
	font-weight: 800;
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
	color: #333333;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	text-align: center;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.phoenix-template-calculator .title-accent {
	width: 60px;
	height: 3px;
	background-color: #f97316;
	margin: 0.5rem auto 1.5rem auto;
	border-radius: 2px;
}

.phoenix-template-calculator .subheading {
	font-size: 1.3rem;
	color: #676767;
	max-width: 700px;
	margin: 0 auto;
	font-weight: 400;
	font-size: 1.25rem;
	margin-bottom: 2.5625rem;
}

/* Price Display Box */
.price-display-box {
	text-align: center;
	margin: 2rem 0;
}

.price-box {
	background-color: #2563eb;
	color: white;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.5rem;
	font-weight: bold;
	display: inline-block;
	min-width: 200px;
}

/* Zip Code Input Section */
.zip-input-section {
	text-align: center;
}

.zip-input-container {
	display: inline-flex;
	align-items: center;
	border: 3px solid #f97316;
	border-radius: 50px;
	background: white;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phoenix-template-calculator .zip-input {
	padding: 15px 20px;
	border: none;
	border-radius: 0;
	font-size: 1rem;
	width: 25rem;
	max-width: 100%;
	background: transparent;
	outline: none;
	color: #333;
	font-weight: 400;
}

.phoenix-template-calculator .zip-input::placeholder {
	color: #112337;
}

.phoenix-template-calculator .calculate-btn {
	background-color: #f97316;
	color: white;
	border: none;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease;
	letter-spacing: 0.5px;
	padding: 10px 20px;
	border-radius: 30px;
	margin-right: 5px;
}

.calculate-btn:hover {
	background-color: #ea580c;
}

/* Material Container */
.material-container-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

.material-select-container {
	max-width: 600px;
	width: 100%;
}

.material-select-container label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.material-select-container .form-select {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.material-select-container .form-select:focus {
	outline: none;
	border-color: #2563eb;
}

/* Dimensions Container */
.dimensions-wrapper-container {
	display: flex;
	justify-content: center;
	width: 100%;
}

.dimensions-form-container {
	max-width: 600px;
	width: 100%;
}

.dimensions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.dimension-field {
	display: flex;
	flex-direction: column;
}

.dimension-field label {
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.dimension-input {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.dimension-input:focus {
	outline: none;
	border-color: #2563eb;
}

/* Content Cards */
.content-cards-container {
	margin-top: 3rem;
}

.content-cards-container .content-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.content-cards-container .content-card .card-title {
	font-size: 2rem !important;
	font-weight: bold;
	color: #212529 !important;
	margin-bottom: 1.5rem !important;
}

.content-cards-container .content-card .callback-description {
	font-size: 1.25rem;
}

.content-cards-container .form-wrapper {
	background-color: inherit !important;
}

.content-cards-container .form-wrapper .ginput_container input {
	border-radius: 25px;
	border-color: #FF6801;
}

.content-cards-container .form-wrapper .ginput_container input:focus {
	outline: none;
}

/* Quantity Recommendations */
.recommendations-content {
	margin-bottom: 2rem;
}

.recommendation-item {
	color: #858585;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.material-visual {
	text-align: center;
}

.material-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Callback Form */
.callback-description {
	color: #374151;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.callback-form .form-group {
	margin-bottom: 1.5rem;
}

.callback-form label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.callback-form .form-control {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.callback-form .form-control:focus {
	outline: none;
	border-color: #2563eb;
}

/* reCAPTCHA */
.recaptcha-container {
	margin: 2rem 0;
}

.recaptcha-box {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background-color: #f9fafb;
}

.recaptcha-box input[type="checkbox"] {
	width: 20px;
	height: 20px;
}

.recaptcha-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.recaptcha-text {
	font-size: 0.9rem;
	color: #6b7280;
}

.recaptcha-links {
	font-size: 0.8rem;
}

.recaptcha-link {
	color: #2563eb;
	text-decoration: none;
}

.recaptcha-link:hover {
	text-decoration: underline;
}

#gform_submit_button_3 {
	width: 100%;
	background-color: #f97316 !important;
	color: white !important;
	border: none;
	padding: 1rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease !important;
	max-width: 25%;
}

#gform_submit_button_3:hover {
	width: 100%;
	background-color: #ea580c !important;
}

/* Submit Button */
.submit-btn {
	width: 100%;
	background-color: #f97316;
	color: white;
	border: none;
	padding: 1rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	background-color: #ea580c;
}

/* Phoenix Breadcrumb Block */
.phoenix-breadcrumb-wrapper {
	font-family: Inter, Sans-serif;
	position: relative;
	margin: 0;
	padding: 0;
}

.phoenix-breadcrumb {
	background-color: #000000;
	padding: 15px 20px;
	position: relative;
	min-height: 60px;
}

.phoenix-breadcrumb .container-full {
	display: flex;
	align-items: center;
}

.breadcrumb-nav {
	padding: 0 25px;
	flex: 1;
}

.breadcrumb-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	margin: 0;
}

.breadcrumb-link {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.breadcrumb-link:hover {
	color: #f59e0b;
	text-decoration: none;
}

.breadcrumb-current {
	color: #f59e0b;
	font-size: 16px;
	font-weight: 500;
}

.breadcrumb-separator {
	color: white;
	margin: 0 12px;
	font-size: 16px;
	font-weight: normal;
}

/* Phoenix Process/How Works Block */
.phoenix-process-section {
	padding: 80px 0;
	background: #f8fafc;
	font-family: Inter, Sans-serif;
}

.phoenix-process-section .container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.phoenix-process-left {
	flex: 1;
	min-width: 0;
}

.phoenix-process-left h2 {
	font-size: 3rem;
	font-weight: 700;
	color: black;
	margin-bottom: 3.5rem;
}

.phoenix-process-left p {
	color: rgba(0, 0, 0, 0.6);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.6;
	max-width: 487px;
}

.phoenix-process-left img {
	width: 100%;
	border-radius: 40px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	max-width: 487px;
	height: 19.4375rem;
}

.phoenix-process-right {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.phoenix-process-step {
	display: flex;
	align-items: center;
	gap: 20px;
}

.phoenix-process-icon {
	background: #f97316;
	color: white;
	min-width: 108px;
	min-height: 108px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	font-size: 2rem;
	flex-shrink: 0;
}

.phoenix-process-content h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: black;
}

.phoenix-process-content p {
	margin-top: 0.5rem;
	color: rgba(0, 0, 0, 0.6);
	line-height: 1.5;
}

/* Phoenix Map Block */
.phoenix-heading-title {
	font-weight: 800;
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
	color: #333333;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	text-align: center;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.phoenix-location-pin-icon {
	width: 32px;
	height: 32px;
	color: #ff6801;
	flex-shrink: 0;
}

.phoenix-map-wrapper {
	font-family: Inter, Sans-serif;
	position: relative;
	max-width: 100%;
	height: 400px;
	border-radius: 25px;
	overflow: hidden;
	margin-bottom: 5.3rem;
}

.phoenix-map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 25px;
}

.phoenix-shop-map-button {
	position: absolute;
	bottom: 24px;
	right: 60px;
	background-color: #ff6801;
	color: white;
	padding: 8px 14px;
	font-weight: 600;
	border-radius: 4px;
	font-size: 14px;
	text-decoration: none;
	z-index: 10;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.phoenix-shop-map-button:hover {
	background-color: #e75d00;
}

p.phoenix-seo-meta {
	margin: 0 auto 19px;
	color: #676767;
	font-size: 1.1875rem;
	font-weight: 400;
}

/* Phoenix Trust Block */
.phoenix-trust-section {
	font-family: Inter, Sans-serif;
	padding: 60px 0;
	color: black;
	background: #f8fafc;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 20px;
}

.section-subtitle {
	font-size: 1.3rem;
	color: #6b7280;
	max-width: 700px;
	margin: 0 auto;
}

.phoenix-trust-section .section-title {
	color: black;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0;
}

.phoenix-trust-section .title-accent {
	width: 60px;
	height: 3px;
	background-color: #f97316;
	margin: 0.5rem auto 1.5rem auto;
	border-radius: 2px;
}

.phoenix-trust-section .section-subtitle {
	color: #676767;
	font-size: 1.25rem;
	font-weight: 400;
}

.phoenix-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 50px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.phoenix-trust-item {
	text-align: center;
	padding: 20px;
}

.phoenix-trust-icon {
	width: 60px;
	height: 60px;
	background: #F26622;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 28px;
	color: white;
}

.phoenix-trust-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
}

.phoenix-trust-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.phoenix-trust-description {
	opacity: 0.8;
	line-height: 1.5;
	font-size: 0.85rem;
}

/* Phoenix Why Choose Block */
.phoenix-local-content {
	background: #f8f9fa;
	padding: 60px 0;
	font-family: Inter, Sans-serif;
}

.phoenix-content-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.phoenix-info-card {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	margin-bottom: 30px;
	color: #333333;
}

.phoenix-info-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #333;
	font-weight: 800;
}

.phoenix-project-list {
	list-style: none;
	padding-left: 0px;
}

.phoenix-project-list li {
	padding: 10px 0;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	justify-content: space-between;
	font-size: 15.8px;
}

.phoenix-project-list li:last-child {
	border-bottom: none;
}

/* Phoenix Popular Choices Block */
.phoenix-choices-section {
	font-family: Inter, Sans-serif;
	padding: 60px 0;
	color: black;
}

.phoenix-choices-section .section-header {
	text-align: center;
}

.phoenix-choices-section .section-header .section-subtitle {
	color: #676767;
	font-size: 1.25rem;
	font-weight: 400;
}

/* Carousel Styles */
.phoenix-choices-section .section-content {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.products-carousel-wrapper {
	flex: 1;
	width: 100%;
	overflow: hidden;
}

.products-carousel {
	width: 100%;
	overflow: hidden;
}

.phoenix-popular-choices-carousel-track {
	display: flex;
	transition: transform 0.3s ease;
	gap: 20px;
	width: 100%;
}

.carousel-slide {
	flex: 0 0 calc(25% - 15px); /* Show 4 products on desktop, accounting for gaps */
	min-width: 0;
	box-sizing: border-box;
	padding-bottom: 1rem;
}

.carousel-nav {
	background: transparent;
	border: none;
	border-radius: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	color: #333;
	box-shadow: none;
	flex-shrink: 0;
}

.carousel-nav:hover {
	background: transparent;
	color: #666;
	box-shadow: none;
}

.carousel-nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.carousel-nav svg {
	color: #969696;
}

.carousel-nav:hover svg {
	color: black;
}

/* Limit product description to 6 lines */
.phoenix-choices-section .loop-content p {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
	max-height: calc(1.4em * 6); /* Fallback for browsers that don't support line-clamp */
}

/* Product card styling with box shadow */
.phoenix-choices-section .loop-product {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.phoenix-choices-section .loop-product:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

/* Ensure the featured image has rounded corners */
.phoenix-choices-section .loop-product .featured-img {
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}

.phoenix-choices-section .loop-product .featured-img img {
	border-radius: 12px 12px 0 0;
}

/* Style the price section to match the desired design */
.phoenix-choices-section .loop-button {
	padding: 0;
}

.phoenix-choices-section .loop-button .rating-snippet {
	display: none !important;
}

.phoenix-choices-section .loop-button .jdgm-widget.jdgm-widget {
	display: none !important;
}

.phoenix-choices-section .loop-pricing {
	margin: 0 0 16px 0;
	padding: 0;
	position: relative;
	text-align: center;
	font-weight: 600;
	font-size: 0.8125rem;
}

/* Add orange separator line before price */
.phoenix-choices-section .loop-pricing::before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #ff6b35;
	margin: 0 auto 12px auto;
}

/* Style the "Starts at" text */
.phoenix-choices-section .loop-pricing strong {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

/* Style the price amount */
.phoenix-choices-section .loop-pricing strong:last-child {
	color: #ff6b35;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0;
}

.carousel-prev {
	margin-right: 16px; /* Space between arrow and carousel */
}

.carousel-next {
	margin-left: 16px; /* Space between arrow and carousel */
}

/* Phoenix Products Block Carousel Styles */
.hg-phoenix-products-carousel-section {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.hg-phoenix-products-carousel-section .products-carousel-wrapper {
	flex: 1;
	width: 100%;
	overflow: hidden;
}

.hg-phoenix-products-carousel-section .products-carousel {
	width: 100%;
	overflow: hidden;
}

.hg-phoenix-products-carousel-track {
	display: flex;
	transition: transform 0.3s ease;
	gap: 20px;
	width: 100%;
}

.hg-phoenix-products-carousel-section .carousel-slide {
	flex: 0 0 calc(25% - 15px); /* Show 4 products on desktop, accounting for gaps */
	min-width: 0;
	box-sizing: border-box;
	padding-bottom: 1rem;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	cursor: pointer;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-image {
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1;
	position: relative;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
	transition: transform 0.3s ease;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-card:hover .hg-phoenix-product-image img {
	transform: scale(1.05);
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 12px 12px 0 0;
	pointer-events: none;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-card:hover .hg-phoenix-product-image-overlay {
	opacity: 1;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-hover-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: white;
	text-align: center;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-hover-content svg {
	width: 48px;
	height: 48px;
	opacity: 0.9;
}

.hg-phoenix-products-carousel-section .hg-phoenix-hover-text {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-content {
	padding: 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	color: #333;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-description {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 1rem;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-button {
	margin-top: auto;
	padding-top: 1rem;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-button .loop-pricing {
	margin: 0 0 16px 0;
	padding: 0;
	position: relative;
	text-align: center;
	font-weight: 600;
	font-size: 0.8125rem;
}

/* Add orange separator line before price */
.hg-phoenix-products-carousel-section .hg-phoenix-product-button .loop-pricing::before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #ff6b35;
	margin: 0 auto 12px auto;
}

/* Style the "Starts at" text */
.hg-phoenix-products-carousel-section .hg-phoenix-product-button .loop-pricing strong {
	display: block;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	font-size: 0.9rem;
}

/* Style the price amount */
.hg-phoenix-products-carousel-section .hg-phoenix-product-button .loop-pricing strong:last-child {
	color: #ff6b35;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0;
}

.hg-phoenix-products-carousel-section .hg-phoenix-product-button .theme-btn {
	padding: 12px 20px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.hg-phoenix-products-carousel-section .carousel-nav {
	background: transparent;
	border: none;
	border-radius: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	color: #333;
	box-shadow: none;
	flex-shrink: 0;
}

.hg-phoenix-products-carousel-section .carousel-nav:hover {
	background: transparent;
	color: #666;
	box-shadow: none;
}

.hg-phoenix-products-carousel-section .carousel-nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.hg-phoenix-products-carousel-section .carousel-nav svg {
	color: #969696;
}

.hg-phoenix-products-carousel-section .carousel-nav:hover svg {
	color: black;
}

.hg-phoenix-products-carousel-section .hg-phoenix-carousel-prev {
	margin-right: 16px;
}

.hg-phoenix-products-carousel-section .hg-phoenix-carousel-next {
	margin-left: 16px;
}

/* Responsive styles for Phoenix Products carousel */
@media (max-width: 1200px) {
	.hg-phoenix-products-carousel-section .carousel-slide {
		flex: 0 0 calc(33.333% - 14px); /* Show 3 products */
	}
}

@media (max-width: 768px) {
	.hg-phoenix-products-carousel-section .carousel-slide {
		flex: 0 0 calc(50% - 10px); /* Show 2 products */
	}
}

@media (max-width: 480px) {
	.hg-phoenix-products-carousel-section .carousel-slide {
		flex: 0 0 100%; /* Show 1 product */
	}
}

/* Phoenix FAQs Block */
.phoenix-faq-container {
	font-family: Inter, Sans-serif;
}

.phoenix-faq-container .heading-title {
	color: #212529;
	font-size: 2.5rem;
	font-weight: 800;
}

.phoenix-faq-container .subheading {
	font-size: 1.25rem;
	color: #676767;
	max-width: 400px;
	margin: 0 auto;
}

.phoenix-faq-container .btn-home span {
	color: #1F2124;
	font-weight: 700;
	font-size: 1rem;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.faq-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-section-home {
	margin-bottom: 15px;
}

.faq-section-home .btn-home {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
}

.faq-section-home .btn-home:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	text-decoration: none;
}

.faq-section-home .btn-home .arrow-icon {
	transition: transform 0.3s ease;
}

.faq-section-home .btn-home[aria-expanded="true"] .arrow-icon {
	transform: rotate(180deg);
}

.faq-section-home .collapse {
	margin-top: 10px;
}

.faq-section-home .card {
	border: none;
	border-radius: 8px;
	box-shadow: none;
	background: #f9fafb;
}

.faq-section-home .card-body {
	padding: 15px 20px;
}

/* Smooth scroll behavior for calculator link */
html {
	scroll-behavior: smooth;
}

/* Add scroll offset for calculator section to account for fixed header */
#phoenix-calculator {
	scroll-margin-top: 100px; /* Adjust based on your header height */
}

/* Responsive Design */
@media (max-width: 1200px) {
	.carousel-slide {
		flex: 0 0 calc(33.333% - 14px); /* Show 3 products on tablets, accounting for gaps */
	}
}

@media (max-width: 1024px) {
	.phoenix-container-full {
		padding-left: 100px;
		padding-right: 100px;
	}

	.phoenix-content-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.phoenix-trust-section {
		padding: 50px 0;
	}

	.phoenix-trust-section .section-header {
		margin-bottom: 40px;
	}

	.phoenix-trust-section .section-title {
		font-size: 2.4rem;
	}

	.phoenix-trust-section .section-subtitle {
		font-size: 1.1rem;
	}

	.phoenix-trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin-top: 40px;
	}

	.phoenix-trust-item {
		padding: 24px;
	}

	.phoenix-trust-icon {
		width: 70px;
		height: 70px;
		font-size: 32px;
	}

	.phoenix-trust-icon img {
		padding: 14px;
	}

	.phoenix-trust-title {
		font-size: 1.2rem;
	}

	.phoenix-trust-description {
		font-size: 0.9rem;
	}

	.phoenix-info-card {
		padding: 25px;
	}

	.phoenix-info-card h3 {
		font-size: 22px;
	}

	.carousel-nav {
		width: 40px;
		height: 40px;
	}

	.carousel-prev {
		margin-right: 12px;
	}

	.carousel-next {
		margin-left: 12px;
	}

	.phoenix-process-section .container {
		flex-direction: column;
	}

	.phoenix-process-left {
		text-align: center;
	}

	.phoenix-process-right {
		gap: 1.5rem;
	}

	.phoenix-process-step {
		flex-direction: row;
		text-align: left;
	}

	.phoenix-process-left p {
		max-width: 100%;
	}

	.phoenix-process-left img {
		max-width: 100%;
	}

	.phoenix-heading-title {
		font-size: 2rem;
		gap: 8px;
	}

	.phoenix-location-pin-icon {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 900px) {
	.phoenix-process-section .container {
		flex-direction: column;
	}

	.phoenix-process-left {
		text-align: center;
	}

	.phoenix-process-right {
		gap: 1.5rem;
	}

	.phoenix-process-step {
		flex-direction: row;
		text-align: left;
	}

	.phoenix-process-left p {
		max-width: 100%;
	}

	.phoenix-process-left img {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.phoenix-banner {
		min-height: 400px;
	}

	.phoenix-container-full {
		max-width: 100%;
		padding: 0 20px;
	}

	.phoenix-banner-title {
		font-size: 2.5rem;
		margin-bottom: 15px;
	}

	.phoenix-banner-subtitle {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.phoenix-banner-cta {
		padding: 12px 25px;
		font-size: 1rem;
	}

	.zip-input-container {
		width: 100%;
		max-width: 400px;
	}

	.phoenix-template-calculator .zip-input {
		width: 100%;
		flex: 1;
	}

	.calculate-btn {
		padding: 15px 20px;
		min-width: 120px;
	}

	.content-card {
		padding: 1.5rem;
	}

	.phoenix-breadcrumb {
		padding: 12px 15px;
		min-height: 50px;
	}

	.breadcrumb-link,
	.breadcrumb-current {
		font-size: 14px;
	}

	.breadcrumb-separator {
		margin: 0 8px;
		font-size: 14px;
	}

	.phoenix-local-content {
		padding: 40px 0;
	}

	.phoenix-content-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.phoenix-info-card {
		padding: 20px;
		margin-bottom: 20px;
	}

	.phoenix-info-card h3 {
		font-size: 20px;
	}

	.phoenix-project-list li {
		flex-direction: column;
		gap: 5px;
	}

	.phoenix-project-list li span:first-child {
		font-weight: 600;
	}

	.carousel-slide {
		flex: 0 0 calc(50% - 10px); /* Show 2 products on mobile, accounting for gaps */
	}

	.phoenix-trust-section {
		padding: 40px 0;
	}

	.phoenix-trust-section .section-header {
		margin-bottom: 30px;
		padding: 0 20px;
	}

	.phoenix-trust-section .section-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.phoenix-trust-section .section-subtitle {
		font-size: 1rem;
	}

	.phoenix-trust-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 30px;
		padding: 0 20px;
	}

	.phoenix-trust-item {
		padding: 30px 20px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.phoenix-trust-icon {
		width: 80px;
		height: 80px;
		font-size: 36px;
		margin-bottom: 20px;
	}

	.phoenix-trust-icon img {
		padding: 16px;
	}

	.phoenix-trust-title {
		font-size: 1.3rem;
		margin-bottom: 16px;
	}

	.phoenix-trust-description {
		font-size: 1rem;
		line-height: 1.6;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.phoenix-heading-title {
		font-size: 1.75rem;
		gap: 6px;
	}

	.phoenix-location-pin-icon {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.phoenix-banner {
		min-height: 350px;
	}

	.phoenix-container-full {
		padding: 0 10px;
	}

	.phoenix-banner-content {
		max-width: 100%;
	}

	.phoenix-banner-title {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.phoenix-banner-subtitle {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.phoenix-banner-cta {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.zip-input-container {
		max-width: 100%;
	}

	.phoenix-template-calculator .zip-input {
		padding: 12px 15px;
	}

	.calculate-btn {
		padding: 12px 15px;
		font-size: 0.9rem;
	}

	.phoenix-breadcrumb {
		padding: 12px 15px;
		min-height: 45px;
	}

	.breadcrumb-nav {
		padding: 0;
	}

	.breadcrumb-link,
	.breadcrumb-current {
		font-size: 13px;
	}

	.breadcrumb-separator {
		margin: 0 6px;
		font-size: 13px;
	}

	/* Stack breadcrumb items on very small screens */
	.breadcrumb-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.breadcrumb-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.breadcrumb-item::before {
		display: none;
	}

	.breadcrumb-item-0, .breadcrumb-item-1 {
		display: none;
	}

	.breadcrumb-separator {
		display: none;
	}

	.phoenix-local-content {
		padding: 30px 0;
	}

	.phoenix-content-grid {
		gap: 20px;
	}

	.phoenix-info-card {
		padding: 15px;
		margin-bottom: 15px;
	}

	.phoenix-info-card h3 {
		font-size: 18px;
		line-height: 1.3;
	}

	/* Quick Facts responsive */
	.phoenix-info-card ul {
		font-size: 14px;
	}

	.phoenix-info-card ul li {
		margin-bottom: 8px;
	}

	/* Summer Tip responsive */
	.phoenix-info-card p {
		font-size: 14px;
		padding: 8px !important;
		margin-top: 10px !important;
	}

	.carousel-slide {
		flex: 0 0 100%; /* Show 1 product on small mobile */
	}

	.carousel-nav {
		width: 36px;
		height: 36px;
	}

	.carousel-prev {
		margin-right: 8px;
	}

	.carousel-next {
		margin-left: 8px;
	}

	.phoenix-trust-section {
		padding: 30px 0;
	}

	.phoenix-trust-section .section-header {
		padding: 0 15px;
	}

	.phoenix-trust-section .section-title {
		font-size: 1.8rem;
	}

	.phoenix-trust-section .section-subtitle {
		font-size: 0.9rem;
	}

	.phoenix-trust-grid {
		padding: 0 15px;
		gap: 20px;
	}

	.phoenix-trust-item {
		padding: 25px 15px;
	}

	.phoenix-trust-icon {
		width: 70px;
		height: 70px;
		font-size: 32px;
	}

	.phoenix-trust-icon img {
		padding: 14px;
	}

	.phoenix-trust-title {
		font-size: 1.2rem;
	}

	.phoenix-trust-description {
		font-size: 0.9rem;
	}
}

@media (max-width: 360px) {
	.phoenix-info-card h3 {
		font-size: 16px;
	}

	.phoenix-info-card {
		padding: 12px;
	}

	.phoenix-project-list li {
		padding: 8px 0;
	}
}
