:root {
	--netamin-green: #a2c617;
	--netamin-green-dark: #8baf12;
	--netamin-green-light: #c5e24a;
	--netamin-light-warm-green-100: #f5fccb;
	--netamin-light-warm-green-700: #617b10;
	--netamin-dark-cool-green-50: #f4f9f7;
	--netamin-dark-cool-green-100: #dbece6;
	--netamin-dark-cool-green-700: #30554e;
	--netamin-dark-cool-green-800: #2d4b46;
	--netamin-dark-cool-green-900: #263b38;
	--netamin-grey-light: #f5f6f1;
	--netamin-grey-200: #eaebe6;
	--netamin-grey-300: #dadbd4;
	--netamin-grey-400: #aeafa8;
	--netamin-grey-800: #35372e;
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/Poppins-Italic.ttf') format('truetype');
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
}

body {
	background: #fff;
	font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

.card-shadow {
	box-shadow: 0 10px 30px rgba(162, 198, 23, 0.15);
}

.product-tag {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.warning-pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.search-results {
	max-height: 300px;
	overflow-y: auto;
}

.search-item:hover {
	background-color: #f5f9e8;
}

/* Custom scrollbar */
.search-results::-webkit-scrollbar {
	width: 8px;
}

.search-results::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
	background: var(--netamin-green);
	border-radius: 10px;
}

.netamin-btn {
	background: linear-gradient(135deg, var(--netamin-green-dark) 0%, var(--netamin-green) 100%);
}

.netamin-btn:hover {
	background: linear-gradient(135deg, #7a9c10 0%, var(--netamin-green-dark) 100%);
}

.product-dosage-pdf {
	display: none !important;
}

.only-show-in-generation {
	display: none;
}

.pdf-generation .only-show-in-generation {
	display: block !important;
}

.pdf-generation .only-hide-in-generation {
	display: none !important;
}

.pdf-generation .pdf-header {
	background-color: #f9fafb !important;
	padding: 16px 24px 16px 24px;
	margin-bottom: 20px;
}

.pdf-generation h2 {
	text-align: center;
	font-size: 20px !important;
	line-height: 25px !important;
	font-weight: 600 !important;
	margin-bottom: 0 !important;
}

.pdf-generation h3 {
	font-size: 15px !important;
	line-height: 19px !important;
	font-weight: 600 !important;
}

.pdf-generation .slot-icon {
	width: 40px !important;
	height: 40px !important;
}

.pdf-generation .slot-icon img {
	width: 25px !important;
}

.pdf-generation .slot-description {
	font-size: 14px !important;
	line-height: 16px !important;
}

.pdf-generation .product-container {
	padding-left: 0 !important;
}

.pdf-generation .product-row {
	padding-top: 6px !important;
	padding-bottom: 6px !important;
}

.pdf-generation .product-column {
	padding-left: 6px !important;
	padding-right: 6px !important;

	font-size: 12px !important;
	line-height: 15px !important;
}

.pdf-generation .product-dosage {
	display: none !important;
}

.pdf-generation .product-dosage-pdf {
	display: flex !important;
}

.pdf-generation .product-warnings {
	font-weight: 400 !important;
}

.sheet-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 999;
}

.bottom-sheet {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff url('/images/subscribe-bg.jpg') no-repeat right center;
	background-size: cover;
	border-radius: 20px 20px 0 0;
	padding: 15px 20px 30px;
	z-index: 1000;

	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
	.bottom-sheet {
		max-width: 500px;
		margin: 0 auto;
	}
}

.sheet-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.bottom-sheet.active {
	transform: translateY(0);
}

.sheet-header {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-bottom: 20px;
}

.close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}