/* =========================================================
   Honey Product Detail Section
   Clean, responsive, production-ready styles.
   No Bootstrap / Tailwind / Elementor dependencies.
   ========================================================= */

.honey-product-section {
	--honey-serif: "Dashiell Bright Test", EB Garamond;
	--honey-sans: "IBM Plex Sans", EB Garamond;
	--honey-text-dark: #303030CC;
	--honey-text-light:#303030D9;
	--honey-text-muted: #4a453f;
	--honey-card-bg: #3030300D;
	--honey-radius-lg: 50px;
	--honey-radius-md: 14px;
	--honey-max-width: 90%;

	max-width: var(--honey-max-width);
	margin: 0 auto;
	padding: clamp(20px, 4vw, 25px) 0;
	color: var(--honey-text-dark);
	box-sizing: border-box;
}

.honey-product-section *,
.honey-product-section *::before,
.honey-product-section *::after {
	box-sizing: border-box;
}

.honey-product-section img {
    display: block;
    max-width: 100%;
    height: 100%;
}

/* ---------------------------------------------------------
   Section 1: Banner
   --------------------------------------------------------- */
.honey-banner {
	position: relative;
	width: 100%;
	min-height: clamp(240px, 34vw, 340px);
	border-radius: 50px;
	overflow: hidden;
}

.honey-banner__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.honey-banner__content {
	position: absolute;
	left: 40px;
	bottom: 35px;
	z-index: 2;
	color: #ffffff;
}
.honey-banner__title {
	font-family: var(--honey-serif);
	font-weight: 600;
	font-size: clamp(22px, 3.2vw, 30px);
	margin: 0 0 8px;
	line-height: 1.2;
}

.honey-banner__subtitle {
	font-family: var(--honey-sans);
	font-size: clamp(14px, 3.2vw, 20px);
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	opacity: 0.95;
}

/* ---------------------------------------------------------
   Section 2: Description
   --------------------------------------------------------- */
.honey-description {
	text-align: center;
	max-width: 80%;
	margin: 36px auto 0;
}

.honey-description p {
	font-family: var(--honey-serif);
	font-style: normal;
	font-weight: 600;
	font-size: clamp(18px, 1.6vw, 20px);
	line-height: 1.6;
	color: var(--honey-text-dark);
	margin: 0;
}

/* ---------------------------------------------------------
   Section 3: Information Icons
   --------------------------------------------------------- */
.honey-information {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px 40px;
	margin-top: 28px;
	padding-top: 20px;
}

.honey-information__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.honey-information__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.honey-information__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.honey-information__text {
	font-family: var(--honey-sans);
	font-size: clamp(14px, 1.6vw, 18px);
	font-weight: 400;
	color: var(--honey-text-light);
	white-space: nowrap;
}

/* ---------------------------------------------------------
   Section 4: Bottom Section
   --------------------------------------------------------- */
.honey-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 44px;
	align-items: stretch;
}
.honey-bottom > div {
	height: 100%;
}
/* Left Card */
.honey-bottom__left {
	position: relative;
	border-radius: var(--honey-radius-lg);
	overflow: hidden;
	min-height: 420px;
}
.honey-bottom__left-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.honey-bottom__left-content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 35px;
	color: #ffffff;
}

.honey-bottom__left-title {
	font-family: var(--honey-serif);
	font-weight: 500;
	font-size: clamp(22px, 1.6vw, 23px);
	margin: 0 0 10px;
}

.honey-bottom__left-description {
	font-family: var(--honey-sans);
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
	max-width: 50ch;
	color: #FFFFFFCC;
}

/* Right Card */
.honey-bottom__right {
	background: var(--honey-card-bg);
	border-radius: var(--honey-radius-lg);
	padding: 28px 32px;
	display: flex;
	align-items: center;
}

.honey-bottom__right-content {
	font-family: var(--honey-sans);
	color: var(--honey-text-muted);
	width: 100%;
}

.honey-bottom__right-content h1,
.honey-bottom__right-content h2,
.honey-bottom__right-content h3,
.honey-bottom__right-content h4 {
	font-family: var(--honey-sans);
	font-weight: 700;
	font-size: 17px;
	color: var(--honey-text-dark);
	margin: 0 0 14px;
}
.honey-bottom__right-content > p > strong {
    font-size: clamp(18px, 1.6vw, 20px);
    font-weight: 600;
	font-family: var(--honey-serif);
	color: #303030;
}
.honey-bottom__right-content p {
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.65;
	margin: 0 0 12px;
}

.honey-bottom__right-content ul {
	margin: 0 0 14px;
	padding-left: 18px;
	list-style: disc;
	color: var(--honey-text-light);
}

.honey-bottom__right-content li {
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.6;
	margin-bottom: 8px;
	color: var(--honey-text-light);
}

.honey-bottom__right-content p:last-child,
.honey-bottom__right-content ul:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------
   Responsive: Tablet
   --------------------------------------------------------- */
@media (max-width: 900px) {
	.honey-bottom {
		grid-template-columns: 1fr;
	}

	.honey-bottom__left {
		min-height: 340px;
	}

	.honey-information {
		gap: 14px 28px;
	}
}

/* ---------------------------------------------------------
   Responsive: Mobile
   --------------------------------------------------------- */
@media (max-width: 560px) {



	.honey-information {
		justify-content: flex-start;
		gap: 12px 24px;
	}

	.honey-information__text {
		white-space: normal;
	}
    .honey-bottom__left{
   border-radius: 24px;
   }
.honey-banner{
border-radius: 24px;
}
	.honey-bottom__right {
		padding: 22px 20px;
         border-radius: 24px;
	}
}