
/* Section Five - Bee Product Card Layout */
.section-five.bee-product-section .content {
    box-shadow: 0px 0px 7px rgb(0 4 69 / 16%);
    border-radius: 0.55rem;
    padding: 3.5rem 2.5rem ;
	background-color: #fff;
}
.bee-product-info h2 {
    margin-top: 0;
}
.section-five.bee-product-section .head {
	position: relative;
}

.section-five.bee-product-section .head h2 {
	color: #000445;
	margin: 0;
	font-size: 28px;
	font-weight: 800;
}
.section-five.bee-product-section .section-content-wrap {
    padding-bottom: 1.2rem;
}
/* Product card layout */
.bee-product-card {
	margin-top: 20px;
}
.bee-product-card-inner {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.bee-product-info {
	flex: 1;
}
.bee-product-info h3 {
	font-weight: 600;
	color: var(--green);
	margin: 0 0 0.9rem 0;
}
.bee-product-info p {
	color: #44455F;
	margin: 0 0 16px 0;
}
/* Product main image - top right */
.bee-product-images {
	flex: 0 0 25rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bee-product-main-image {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Secondary row: video image + specs side by side */
.bee-product-secondary {
	display: flex;
	gap: 30px;
	align-items:center;
	margin-top: 30px;
}
.bee-product-secondary-image-wrap {
    flex: 0 0 19rem;
    position: relative;
}
.bee-product-secondary-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}
/* Video play button overlay */
.bee-product-secondary-image-wrap.has-video {
	cursor: pointer;
}
.bee-product-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-color: rgba(0, 4, 69, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s, background-color 0.3s;
	z-index: 2;
}
.bee-product-secondary-image-wrap.has-video:hover .bee-product-play-btn {
	background-color: rgba(0, 180, 170, 0.85);
}
.bee-product-play-arrow {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 18px;
	border-color: transparent transparent transparent #fff;
	margin-left: 4px;
}
/* Video container */
.bee-product-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.bee-product-video-container.is-active {
	opacity: 1;
	pointer-events: auto;
}
.bee-product-video-container video {
	max-width: 100%;
}
.bee-product-video-iframe {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}
/* Hide image and play button when video is active */
.bee-product-secondary-image-wrap.video-playing .bee-product-secondary-image,
.bee-product-secondary-image-wrap.video-playing .bee-product-play-btn {
	opacity: 0;
	transition: opacity 0.3s;
}
.bee-product-specs {
	flex: 1;
	padding-top: 10px;
	font-family: var(--font-family-heading);
}
.bee-product-specs p {
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.5;
	color:var(--main-color);
	margin: 0;
}
.bee-product-specs strong {
	color: #000445;
}

/* Applications section: text + icons */
.bee-product-applications {
	display: flex;
	align-items: self-start;
	gap: 30px;
	margin-top: 30px;
	padding-top: 24px;
}
.bee-product-applications-text {
	flex: 0 0 12rem;
}
.bee-product-applications-text h4, .bee-product-applications-text p:first-child strong {
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.bee-product-applications-text h4 {
	font-family: var(--font-family-heading);
} 
.bee-product-applications-text p {
    font-size: 0.94rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
/* Product icons row */
.bee-product-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	gap: 5px;
	flex: 1;
	align-items: flex-start;
}
.bee-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 80px;
	flex: 1;
}
.bee-icon img {
	width: 3.5rem;
	height: 3.5rem;
	object-fit: contain;
}
.bee-icon .icon-wrap {
	width: 3.5rem;
	height: 3.5rem;
	margin-right: auto;	
	margin-left: auto;	
}

.bee-icon span {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--main-color);
	text-align: center;
	line-height: 1.3;
	letter-spacing: -0.025rem;
	font-family: var(--font-family-heading);
}
/* Section Five - Button styling for product sections */
.section-five.bee-product-section .button-wrap {
	margin-top: 24px;
}
.section-five.bee-product-section .button {
	/* background-color: #000445; */
	/* color: #fff; */
	/* padding: 12px 28px; */
	/* border-radius: 6px; */
	/* text-decoration: none; */
	/* font-size: 14px; */
	/* font-weight: 600; */
	/* display: inline-block; */
	/* transition: background-color 0.3s; */
}
.section-five.bee-product-section .button:hover {
	/* background-color: #000330; */
}
.section-two.bee-products-inner-section.font- .section-two-cards {
    gap: 45px;
}
/* Responsive */
@media (min-width: 992px) {
	.bee-product-card-inner {
		flex-direction: row-reverse;
	}
}
@media (max-width: 991px) {
	.bee-product-card-inner {
		flex-direction: column;
	}

	.bee-product-images {
		flex: 0 0 auto;
		width: 100%;
	}

	.bee-product-secondary {
		flex-direction: column;
		align-items: flex-start;
	}

	.bee-product-secondary-image-wrap {
		flex: 0 0 auto;
		width: 100%;
	}

	.bee-product-applications {
		flex-direction: column;
		align-items: flex-start;
	}

	.bee-product-applications-text {
		flex: 0 0 auto;
	}

	.bee-product-icons {
		justify-content: center;
	}
	.section-one.bee-products-inner-section p {
		font-size: 0.92rem;
		padding: 0 0rem;
	}
	.bee-product-info h3 {
		font-size: 1.15rem;
	}
	.section-five.bee-product-section .content {
		padding: 1.5rem;
	}
	.bee-icon span {
		font-size: 1rem;
	}
	.bee-icon {
		flex: none;
	}
}
@media (max-width: 480px) {
	.section-five.bee-product-section .button-wrap {
		justify-content: center;
	}
    .bee-product-icons {
        justify-content: start;
    }
	.bee-icon {
		flex: none;
		width: 49%;
		margin-bottom: 1rem;
	}
	.bee-icon img {
		width: 2.5rem;
		height: 2.5rem;
		object-fit: contain;
	}
	.bee-icon span {
		font-size: 0.9rem;
	}
}