/* ===============================
   PRICING TABLE – VASAVI HOME FOODS
================================ */
.dr1007pricingdetails {
	padding: 90px 20px;
	background: linear-gradient(180deg, #fff7ed, #fff1e6);
	text-align: center;
	font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* ===============================
   HEADER (TITLE + SUBTITLE)
================================ */
.dr1007pricingdetails header {
	max-width: 820px;
	margin: 0 auto 50px;
}

.dr1007pricingdetails h2 {
	font-size: 34px;
	font-weight: 900;
	color: #7c2d12;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.dr1007pricingdetails .pricing-subtitle {
	font-size: 15.5px;
	color: #92400e;
	line-height: 1.8;
	max-width: 720px;
	margin: 0 auto;
}

/* ===============================
   MENU CARD
================================ */
.dr1007pricingdetails .menu {
	max-width: 420px;
	margin: 0 auto;
	background: linear-gradient(180deg, #ffffff, #fffaf5);
	padding: 40px 32px;
	border-radius: 28px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 30px 70px rgba(180, 83, 9, 0.22), inset 0 0 0 1px
		rgba(255, 255, 255, 0.6);
}

/* Decorative top bar */
.dr1007pricingdetails .menu::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	border-radius: 6px 6px 0 0;
	background: linear-gradient(90deg, #f97316, #22c55e, #b45309);
}

/* ===============================
   PRICE LIST
================================ */
.dr1007pricingdetails .price-list {
	width: 100%;
	margin-bottom: 26px;
}

.dr1007pricingdetails .price-list p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	margin: 10px 0;
	background: #fff7ed;
	border-radius: 14px;
	border: 1px dashed #fed7aa;
	font-size: 15px;
	color: #7c2d12;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1007pricingdetails .price-list p:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.dr1007pricingdetails .price-list span {
	font-weight: 600;
}

.dr1007pricingdetails .price-list strong {
	font-size: 17px;
	color: #b45309;
}

/* ===============================
   PRODUCT IMAGE
================================ */
.dr1007pricingdetails figure {
	margin: 0;
}

.dr1007pricingdetails img {
	width: 100%;
	max-width: 220px;
	margin: 24px auto 18px;
	display: block;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===============================
   WHATSAPP CTA
================================ */
.dr1007pricingdetails footer {
	width: 100%;
}

.dr1007pricingdetails .whatsapp-chat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 20px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 15.5px;
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	box-shadow: 0 18px 40px rgba(34, 197, 94, 0.45), inset 0 0 0 1px
		rgba(255, 255, 255, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1007pricingdetails .whatsapp-chat:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 28px 60px rgba(34, 197, 94, 0.65);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media ( max-width : 640px) {
	.dr1007pricingdetails {
		padding: 70px 16px;
	}
	.dr1007pricingdetails h2 {
		font-size: 28px;
	}
	.dr1007pricingdetails .pricing-subtitle {
		font-size: 14.5px;
	}
	.dr1007pricingdetails .menu {
		padding: 34px 22px;
	}
	.dr1007pricingdetails img {
		max-width: 200px;
	}
}