
.product-single {
	width: 100%;
}

.product-single .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.product-single .hero {
	width: 100%;
	height: 400px;
	margin-bottom: 50px;
	 position: relative;
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-single .hero h1 {
	font-size: 2.4rem;
	color: #fff;
	z-index: 10;
	margin-top: 100px;
	text-align: center;
	max-width: 65%;
}

.site-content .ast-container {
	max-width: 100%;
	padding:0;
	margin:0;
}

.overlay {
	bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 1250px) {
	.product-single .hero h1 {
		font-size: 32px;
	}
}

@media (max-width: 544px) {

	.ast-separate-container #content .ast-container {
		padding:0;
	}
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 100px auto;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
}

.gallery-lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.key-specs-wrapper {
    background-color: #ebebeb;
    padding: 20px 80px;
}

.key-specs-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;

    max-width: 1200px;
    margin: 0 auto;

}

.key-specs-section__title h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #1E1810;
    font-size: 1.6rem;
}

.key-specs-section__grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 80px;
    row-gap: 40px;
}

.key-spec-item {
    text-align: center;
    padding: 32px ;
}

.key-spec-item__label {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #1E1810;


}

.key-spec-item__value {
    font-size: 20px;
    color: #62615C;
    margin: 0;
}

@media (max-width: 768px) {

	.key-specs-section__grid {
		row-gap: 0;
	}

	.key-specs-section__title h2 {
		font-size: 22px;
	}

	.key-spec-item__label, .key-spec-item__value  {
		font-size: 1rem;
	}

	.key-specs-wrapper {
		padding: 50px 30px;
	}

    .key-specs-section {
        flex-direction: column;
       	align-items: center;
    }

    .key-specs-section__grid {
        grid-template-columns: 1fr;
        column-gap: 40px;
    }
}

.product-overview-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
}

.product-overview-section__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1E1810;
    font-size: 2rem;

}

.overview-specs-table {
    display: flex;
    flex-direction: column;
}

.overview-specs-row {
    display: flex;
    padding: 18px 20px;
}

.overview-specs-row.is-odd {
    background-color: #efefef;
}

.overview-specs-row.is-even {
    background-color: transparent;
}

.overview-specs-row__label {
    flex: 0 0 50%;
    font-weight: 700;
    color: #62615C;
}

.overview-specs-row__value {
    flex: 1;
    color: #6b6b6b;
    line-height: 1.6;
}

.product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.product-tabs__nav-btn {
    padding: 18px 24px;
    background-color: #163a8c;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.product-tabs__nav-btn:hover {
    background-color: #1e4bb8;
}

.product-tabs__nav-btn.is-active {
    background-color: #f0b429;
    color: #fff;
}

.product-tabs__panel {
    display: none;
    padding-top: 30px;
}

.product-tabs__panel.is-active {
    display: block;
}

@media (max-width: 1200px) {
	.product-overview-section__title, .overview-specs-table {
		padding: 20px;
	}

    .product-tabs__nav {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .overview-specs-row {
        gap: 4px;
    }

    .overview-specs-row__value {
        text-align: right;
    }

    .overview-specs-row__label,
    .overview-specs-row__value {
        flex: 1 1 auto;
    }
}

.product-button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 50px;
}

.product-button a {
	background-color: #FFB100;
	padding: 18px 34px;
  	border-radius: 5px;
  	color: #fff;
  	text-transform: uppercase;
  	font-weight: 700;
  
}

@media (max-width: 768px) {

	.description {
		font-size: 17px;
	}

	.fixed-width {
		padding: 0px 20px;
	}
}

.fixed-width {
	max-width: min(100%, 1200px);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
}

.product-cta {
	background-color: #00469c;
    margin-bottom: 50px;
}

.product-cta-wrapper {
	max-width: min(100%, 1200px);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	padding: 50px;
}

.product-cta-heading {
	font-size: 2rem;
	line-height: 1.5em;
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 0 20px;
	font-family: 'Montserrat',sans-serif;
}

.product-cta a {
	background-color: #FFB100;
	padding: 18px 34px;
  	border-radius: 5px;
  	color: #fff;
  	text-transform: uppercase;
  	font-weight: 700;
  	margin: 0 10px;
  
}

.product-cta-buttons {
	display: flex;
	flex-direction: row;
	margin: 50px 0;
}

@media (max-width: 768px) {

	.product-cta-heading {
		font-size: 26px;
	}

	.product-cta-buttons {
		flex-direction: column;
		gap: 20px;
	}
}

.related-products-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 20px 50px;
    text-align: center;
}

.related-products-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1E1810;
     font-family: 'Montserrat',sans-serif;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.related-product-card {
    border: 1px solid #f0b429;
    border-radius: 6px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.related-product-card__image-link {
    display: block;
    margin-bottom: 20px;
}

.related-product-card__image {
    width: 100%;
    object-fit: contain;
    display: block;
    max-height: 200px;
}

.related-product-card__title {
    font-size: 1.2ream;
    font-weight: 700;
    color: #1E1810;
    margin: 0 0 20px;
    line-height: 1.3;
    flex-grow: 1;
    font-family: 'Montserrat',sans-serif;
}

.related-product-card__btn {
    display: inline-block;
    align-self: center;
    padding: 10px 10px;
    border: 2px solid #f0b429;
    border-radius: 4px;
    color: #00469c;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.related-product-card__btn:hover {
    background-color: #00469c;
    color: #fff;
    border: 2px solid #00469c;
}

@media (max-width: 900px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

	.related-products-section__title {
		font-size: 26px;
	}


}