/**
 * Pf Door Frame Single Page Styles
 *
 * @package Plastpro
 * @since 1.0.0
 */

/* Breadcrumbs */
/* Breadcrumbs styles are now in shared breadcrumbs.css */

/* Product Detail Section */
.pf-door-frame-detail {
	padding: 1.5rem 0;
	background: #fff;
}

/* Product Detail Section */
.pf-door-frame-detail {
	padding: 1.5rem 0;
	background: #fff;
}

.pf-door-frame-detail-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

/* Images Section */
.pf-door-frame-images {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.pf-door-frame-main-image {
	width: 500px;
	height: 500px;
	overflow: hidden;
	flex-shrink: 0;
}

.pf-door-frame-main-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.pf-door-frame-thumbnails {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	padding-left: 7rem;
}

.pf-door-frame-thumbnail {
	width: 95px;
	height: 95px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.3s ease;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
}

.pf-door-frame-thumbnail.active {
	border-color: var(--plastpro-orange, #E87722);
}

.pf-door-frame-thumbnail img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Product Details Section */
.pf-door-frame-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pf-door-frame-header {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.pf-door-frame-category {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-small);
	font-weight: 700;
	line-height: 22px;
	color: var(--plastpro-gray, #7C878E);
	text-transform: uppercase;
	margin: 0;
}

.pf-door-frame-title {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-h2);
	font-weight: 700;
	line-height: 22px;
	color: #000;
	margin: 0;
}

.pf-door-frame-description {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-large);
	font-weight: 400;
	line-height: 24px;
	color: #000;
}

.pf-door-frame-description p {
	margin: 0 0 1rem 0;
}

.pf-door-frame-description p:last-child {
	margin-bottom: 0;
}

/* Available In Section */
.pf-door-frame-available {
	margin: 0.75rem 0;
	padding: 0;
}

.pf-door-frame-available-label {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-small);
	font-weight: 400;
	line-height: 18px;
	color: #000;
	margin: 0 0 0.75rem 0;
}

.pf-door-frame-grain-images {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 0.5rem;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	width: 100%;
}

.pf-door-frame-grain-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 8.125rem;
}

.pf-door-frame-grain-item img {
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 4px;
}

.pf-door-frame-grain-label {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-xs);
	font-weight: 400;
	line-height: 16px;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	width: 100%;
}

/* Finish Swatches */
.pf-door-frame-finish-swatches {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

/* CTA Section styles are now in shared find-a-dealer.css */

/* Specifications Section */
/* Specifications section styles are now in shared product-specs-tabs.css */

.pf-door-frame-dimension-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.pf-door-frame-dimension-image {
	width: 100%;
}

.pf-door-frame-dimension-image img {
	width: 100%;
	height: auto;
	display: block;
}

.pf-door-frame-no-content {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: var(--font-size-small);
	font-weight: 400;
	color: #000;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.pf-door-frame-detail-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.pf-door-frame-main-image {
		width: 100%;
		max-width: 500px;
	}
	
	.pf-door-frame-main-image {
		width: 100%;
		max-width: 500px;
		height: 500px;
	}
}

@media (max-width: 768px) {
	.pf-door-frame-breadcrumbs .site-container {
		padding: 0 1rem;
	}
	
	.pf-door-frame-detail {
		padding: 1.5rem 0;
	}
	
	.pf-door-frame-title {
		font-size: var(--font-size-h2);
	}
	
	.pf-door-frame-grain-item img {
		width: 100px;
		height: 100px;
	}
	
	.pf-door-frame-specs {
		padding: 2rem 0;
	}
	
	.pf-door-frame-specs-content {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.breadcrumb-nav {
		font-size: var(--font-size-xs);
		flex-wrap: wrap;
	}
	
	.pf-door-frame-thumbnail {
		width: 80px;
		height: 80px;
	}
	
	.pf-door-frame-grain-images {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.pf-door-frame-grain-item img {
		width: 80px;
		height: 80px;
	}
	
	.pf-door-frame-specs-tabs {
		flex-direction: column;
		gap: 1rem;
	}
}

