@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
	font-family: "Poppins", sans-serif !important;
	background-color: #f8f8f8;
	color: #333;
}
p {
	margin-bottom: 12px;
}
.header-over {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	background-color: transparent;
}

/* .header-white-color {
      color: #000000 !important;
    } */
#main-navbar {
	flex-wrap: nowrap;
	justify-content: center;
}

/* Brand Colors */
.brand-red {
	color: #ff1500;
}

.brand-orange {
	color: #fe6d0a;
}

.brand-green {
	color: #008240;
}

.bg-brand-green {
	background-color: #008240;
}

/* Breadcrumb styling */
.custom-breadcrumb {
	background-color: transparent;
	padding: 15px 0;
}

.custom-breadcrumb .breadcrumb {
	background-color: transparent;
	padding: 0;
}

.custom-breadcrumb a {
	color: #fe6d0a;
}

/* Product Section */
.product-section {
	padding: 30px 0;
}

.product-title {
	font-weight: 600;
	color: #008240;
	margin-bottom: 20px;
}

.product-description {
	line-height: 1.8;
	margin-bottom: 10px;
    text-align: justify;
}
.read-more-link {
	font-size: 18px;
	color: #008240;
}

/* Image Carousel */
.owl-carousel .item {
	height: 400px;
	overflow: hidden;
	border-radius: 10px;
}

.owl-carousel img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	/* background-color: rgba(255, 255, 255, 0.7) !important; */
	color: white !important;
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	font-size: 20px !important;
}

.owl-nav button:hover {
	background-color: #008240 !important;
	color: white !important;
}

.owl-nav button:focus {
	outline: none !important;
}

.owl-prev {
	left: 10px;
}

.owl-next {
	right: 10px;
}

/* Accordion Styling */
.custom-accordion .card {
	border: none;
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-accordion .card-header {
	background-color: white;
	border: none;
	padding: 0;
}

.custom-accordion .btn-link {
	/* display: block; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	padding: 35px 20px;
	font-size: 1.2rem;
	font-weight: 500;
	color: #008240;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
}

.custom-accordion .btn-link:hover {
	text-decoration: none;
	color: #ff1500;
}

.custom-accordion .btn-link[aria-expanded="true"] {
	text-decoration: none;
	color: #ffffff;
	border-radius: 0;
	background-color: #ff1500;
}

.custom-accordion .btn-link i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.custom-accordion .btn-link[aria-expanded="true"] i {
	transform: translateY(-50%) rotate(180deg);
	color: #ffffff;
}

.custom-accordion .card-body {
	padding: 20px;
	line-height: 1.8;
}

/* Nutrition Table */

/* Nutrition Table */
.nutrition-table {
	width: 100%;
	max-width: 500px;
	/* margin: 0 auto; */
	border-collapse: collapse;
	font-size: 14px;
}

.nutrition-table th,
.nutrition-table td {
	padding: 5px 10px;
	border-bottom: 1px solid #eee;
}

.nutrition-table th {
	text-align: left;
	font-weight: 600;
	width: 65%;
}

.nutrition-table td {
	/* text-align: right; */
	width: 35%;
}
.nutrition-table .footer-note {
	font-size: 12px;
	padding: 10px;
	border-bottom: none;
}
.nutrition-table .highlight {
	background-color: rgba(0, 130, 64, 0.1);
}
/* Benefits Section */
.benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.benefit-icon {
	width: 50px;
	height: 50px;
	font-size: 24px;
	background-color: #fe6d0a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 15px;
	flex-shrink: 0;
}

/* Availability Calendar */
.availability-calendar {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.month-item {
	width: calc(100% / 6);
	text-align: center;
	padding: 10px;
	border: 1px solid #eee;
}

.month-item.available {
	background-color: rgba(0, 130, 64, 0.2);
	font-weight: 500;
}

@media (max-width: 767px) {
	.custom-accordion .btn-link {
		font-size: 1.1rem;
	}

	.product-section {
		padding: 0 0;
	}

	.month-item {
		width: calc(100% / 3);
	}

	.owl-carousel .item {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.month-item {
		width: calc(100% / 2);
	}
}

/* Packaging Options */
.packaging-options {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.packaging-item {
	width: calc(50% - 20px);
	margin: 10px;
	padding: 15px;
	border: 1px solid #eee;
	border-radius: 10px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.packaging-item:hover {
	border-color: #008240;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.packaging-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 130, 64, 0.1);
	color: #008240;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-right: 15px;
	flex-shrink: 0;
}

.packaging-details h5 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #008240;
}

@media (max-width: 767px) {
	.packaging-item {
		width: 100%;
	}
}
