/* Hero */
.vp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .vp-hero { padding-top: 2rem; margin-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .vp-hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    margin-bottom: 6rem;
  }
}
.blob-bg { background-image: radial-gradient(circle at 50% 50%, #e9f2db 0%, transparent 60%); }
.vp-hero__content {
  text-align: center;
  z-index: 1;
  width: 100%;
  order: 2;
}
@media (min-width: 1024px) {
  .vp-hero__content {
    text-align: right;
    width: 50%;
    order: 1;
    margin-top: 0;
  }
}
.vp-hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(90,140,61,.1); color: var(--vp-green); font-weight: 700; padding: .35rem 1rem; border-radius: 999px; font-size: .75rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .vp-hero__badge { font-size: .875rem; padding: .4rem 1rem; margin-bottom: 1.25rem; } }
.vp-hero__dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--vp-green); animation: vp-ping 1s infinite; }
@media (min-width: 768px) { .vp-hero__dot { width: .625rem; height: .625rem; } }
@keyframes vp-ping { 75%,100% { transform: scale(1.5); opacity: 0; } }
.vp-hero__title { font-size: clamp(2rem, 8vw, 4.5rem); font-weight: 900; line-height: 1.1; margin: 0 0 1rem; color: var(--vp-dark); letter-spacing: -0.02em; }
@media (min-width: 640px) { .vp-hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); } }
.vp-hero__hl { color: var(--vp-orange); position: relative; display: inline-block; }
.vp-hero__underline { position: absolute; width: 100%; height: .75rem; bottom: -.25rem; left: 0; color: var(--vp-yellow); }
@media (max-width: 767px) { .vp-hero__underline { height: .5rem; bottom: -.15rem; } }
.vp-hero__desc { font-size: 1rem; color: #666; margin-bottom: 1.5rem; line-height: 1.7; padding: 0 .25rem; }
@media (min-width: 768px) { .vp-hero__desc { font-size: 1.125rem; margin-bottom: 2rem; padding: 0; } }
.vp-hero__btn { display: inline-flex; align-items: center; justify-content: center; background: var(--vp-orange); color: #fff; font-weight: 700; padding: .75rem 1.75rem; border-radius: 999px; text-decoration: none; box-shadow: 0 10px 20px rgba(242,140,40,.3); transition: transform .2s; font-size: .95rem; }
@media (min-width: 768px) { .vp-hero__btn { padding: .85rem 2rem; font-size: 1rem; } }
@media (min-width: 1024px) { .vp-hero__btn { font-size: 1.125rem; padding: 1rem 2.5rem; } }
.vp-hero__btn:hover { transform: translateY(-4px); color: #fff; }
.vp-hero__media {
  position: relative;
  width: 100%;
  max-width: min(100%, 280px);
  order: 1;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) { .vp-hero__media { max-width: 24rem; padding: 0; } }
@media (min-width: 1024px) { .vp-hero__media { width: 50%; max-width: 28rem; order: 2; } }
.vp-hero__stamp { position: absolute; top: -1rem; right: -1rem; z-index: 2; width: 5rem; height: 5rem; background: var(--vp-yellow); border-radius: 50%; border: 4px solid #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 900; font-size: .75rem; line-height: 1.15; text-align: center; animation: vp-wiggle 2s ease-in-out infinite; }
@media (min-width: 768px) { .vp-hero__stamp { width: 6rem; height: 6rem; top: -1.5rem; right: -1rem; } }
@media (min-width: 1024px) { .vp-hero__stamp { width: 7rem; height: 7rem; } }
.vp-hero__stamp-top { font-size: 1rem; }
@media (min-width: 768px) { .vp-hero__stamp-top { font-size: 1.15rem; } }
.vp-hero__stamp-bottom { font-size: .65rem; font-weight: 800; }
@media (min-width: 768px) { .vp-hero__stamp-bottom { font-size: .75rem; } }
.vp-hero__img-wrap { position: relative; }
.vp-hero__glow { position: absolute; inset: 0; background: var(--vp-green); border-radius: 3rem; transform: rotate(-6deg) scale(1.05); opacity: .2; }
.vp-hero__img { position: relative; z-index: 1; width: 100%; border-radius: 3rem; border: 4px solid #fff; box-shadow: var(--vp-shadow); animation: vp-float 4s ease-in-out infinite; }
@media (min-width: 768px) { .vp-hero__img { border-width: 6px; border-radius: 3.5rem; } }
@media (min-width: 1024px) { .vp-hero__img { border-width: 8px; border-radius: 3rem; } }

/* Section title */
.vp-section-title { text-align: center; font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 900; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; gap: .75rem; color: var(--vp-dark); }

/* Features */
.vp-features { margin-bottom: 4rem; }
.vp-features__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .vp-features__grid { grid-template-columns: repeat(3,1fr); } }
.vp-features__card { background: rgba(255,255,255,.8); backdrop-filter: blur(8px); border-radius: 1.5rem; padding: 1.25rem; display: flex; gap: 1rem; align-items: center; border: 2px solid transparent; transition: border-color .2s, transform .3s; }
.vp-features__card:hover { border-color: rgba(242,140,40,.3); transform: translateY(-4px); }
.vp-features__icon { width: 3.5rem; height: 3.5rem; background: rgba(242,140,40,.1); border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.vp-features__card h4 { margin: 0 0 .25rem; font-weight: 700; }
.vp-features__card p { margin: 0; font-size: .875rem; color: #777; }

/* Categories */
.vp-categories { margin-bottom: 4rem; text-align: center; }
.vp-categories__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 768px) { .vp-categories__grid { grid-template-columns: repeat(4,1fr); gap: 2rem; } }
.vp-categories__card { background: #fff; border-radius: 2rem; padding: 1rem; border: 2px solid transparent; transition: border-color .3s, transform .3s; }
.vp-categories__card:hover { border-color: rgba(90,140,61,.2); transform: translateY(-8px); }
.vp-categories__img img { transition: transform .5s ease; }
.vp-categories__card:hover .vp-categories__img img { transform: scale(1.05); }
.vp-categories__img { height: 7rem; overflow: hidden; margin-bottom: 1rem; border: 4px solid var(--vp-bg); position: relative; }
@media (min-width: 768px) { .vp-categories__img { height: 12rem; } }
.vp-categories__img img { width: 100%; height: 100%; object-fit: cover; }
.vp-categories__card h3 { font-weight: 900; margin-bottom: .75rem; }
.vp-categories__btn { display: block; width: 100%; background: var(--vp-bg); border: 0; border-radius: 999px; padding: .5rem; font-weight: 700; cursor: pointer; text-decoration: none; color: var(--vp-dark); }
.vp-categories__card:hover .vp-categories__btn { background: var(--vp-green); color: #fff; }

/* Products — card shell in product-cards.css */
.vp-products { margin-bottom: 4rem; }
.vp-products__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .vp-products__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .vp-products__grid { grid-template-columns: repeat(4,1fr); } }

/* Promo */
.vp-promo {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	padding: 2rem;
	border-radius: 2rem;
	border: 4px solid #fff;
	margin-bottom: 4rem;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.vp-promo {
		flex-direction: row;
		text-align: right;
		padding: 3.5rem;
		border-radius: 3rem;
		align-items: center;
	}
}
.vp-promo__content { position: relative; z-index: 1; flex: 1; min-width: 0; }
.vp-promo h3 { font-size: clamp(1.5rem,3vw,3rem); font-weight: 900; margin-bottom: .75rem; }
.vp-promo p { color: #666; margin-bottom: 1.25rem; }
.vp-promo__btn { display: inline-flex; background: var(--vp-dark); color: #fff; padding: .65rem 1.5rem; border-radius: 999px; text-decoration: none; font-weight: 700; }
.vp-promo__media {
	--vp-promo-media-size: 120px;
	flex: 0 0 auto;
	width: min(var(--vp-promo-media-size), 42vw);
	height: min(var(--vp-promo-media-size), 42vw);
	max-width: 220px;
	max-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	animation: vp-bounce 3s infinite;
}
.vp-promo__emoji {
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	line-height: 1;
}
.vp-promo__icon {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vp-promo__icon svg {
	width: 85%;
	height: 85%;
	display: block;
}
.vp-promo__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 1.25rem;
}
@keyframes vp-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Diet */
.vp-diet { background: rgba(255,255,255,.95); border-radius: 2rem; padding: 1.5rem; margin-bottom: 4rem; border: 1px solid rgba(90,140,61,.1); }
@media (min-width: 768px) { .vp-diet { padding: 3rem; border-radius: 3rem; } }
.vp-diet__head { text-align: center; max-width: 48rem; margin: 0 auto 2rem; }
.vp-diet__badge { display: inline-block; background: var(--vp-green); color: var(--vp-bg); font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; margin-bottom: .75rem; }
.vp-diet__grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .vp-diet__grid { grid-template-columns: 5fr 7fr; } }
.vp-diet__form { background: rgba(244,241,234,.5); padding: 1.5rem; border-radius: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.vp-diet__form input, .vp-diet__form textarea { width: 100%; border: 1px solid #e5e5e5; border-radius: .75rem; padding: .5rem .75rem; font-family: inherit; }
.vp-diet__form button { background: var(--vp-green); color: #fff; border: 0; border-radius: 1rem; padding: .75rem; font-weight: 700; cursor: pointer; }
.vp-diet__types { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.vp-diet__types label { background: #fff; border: 2px solid transparent; border-radius: 1rem; padding: .5rem; text-align: center; cursor: pointer; font-size: .75rem; font-weight: 700; }
.vp-diet__types label:has(input:checked) { border-color: var(--vp-green); background: rgba(90,140,61,.05); }
.vp-diet__row { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.vp-diet__result { min-height: 18rem; border: 2px dashed rgba(90,140,61,.2); border-radius: 1.5rem; padding: 1.5rem; background: var(--vp-bg); text-align: center; }
.vp-diet__placeholder div { font-size: 3rem; margin-bottom: .5rem; }
.vp-spinner { width: 3rem; height: 3rem; border: 4px solid var(--vp-green); border-top-color: transparent; border-radius: 50%; animation: vp-spin .8s linear infinite; margin: 0 auto 1rem; }
@keyframes vp-spin { to { transform: rotate(360deg); } }

/* Chat */
.vp-chat { position: fixed; bottom: 1rem; left: 1rem; z-index: 9999; }
html[dir="ltr"] .vp-chat { left: auto; right: 1rem; }
body.elementor-editor-active .vp-chat--global,
.elementor-editor-active .vp-chat--global { display: none !important; }
.vp-chat__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 3rem;
	padding: 0.45rem 0.9rem 0.45rem 0.55rem;
	border-radius: 999px;
	border: 0;
	background: var(--vp-green);
	color: #fff;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.vp-chat__toggle-icon { font-size: 1.35rem; line-height: 1; }
.vp-chat__toggle-label { white-space: nowrap; }
.vp-chat__window[hidden] { display: none !important; }
.vp-chat__window:not([hidden]) {
  position: absolute;
  bottom: calc(100% + .75rem);
  left: 0;
  right: auto;
  width: min(calc(100vw - 2rem), 24rem);
  height: 28rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(74,59,50,.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(90,140,61,.1);
}
html[dir="ltr"] .vp-chat__window:not([hidden]) {
  left: auto;
  right: 0;
}
.vp-chat__header { background: var(--vp-green); color: #fff; padding: .75rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.vp-chat__header small { display: block; opacity: .85; font-size: .65rem; }
.vp-chat__close { background: rgba(255,255,255,.15); border: 0; color: #fff; width: 1.75rem; height: 1.75rem; border-radius: 50%; cursor: pointer; }
.vp-chat__history { flex: 1; overflow-y: auto; padding: .75rem; background: rgba(252,250,243,.4); }
.vp-chat__msg { display: flex; gap: .5rem; margin-bottom: .75rem; max-width: 90%; }
.vp-chat__msg--bot div { background: #fff; padding: .75rem; border-radius: 1rem; border-top-right-radius: 0; box-shadow: 0 1px 3px rgba(0,0,0,.06); font-size: .8rem; }
.vp-chat__msg--user { margin-right: auto; flex-direction: row-reverse; }
.vp-chat__msg--user div { background: var(--vp-orange); color: #fff; padding: .75rem; border-radius: 1rem; border-top-left-radius: 0; font-size: .8rem; }
.vp-chat__quick { display: flex; gap: .5rem; padding: .5rem .75rem; overflow-x: auto; border-top: 1px solid #eee; }
.vp-chat__quick button { border: 0; background: var(--vp-light); border-radius: 999px; padding: .35rem .75rem; font-size: .65rem; white-space: nowrap; cursor: pointer; }
.vp-chat__input { display: flex; gap: .5rem; padding: .5rem; border-top: 1px solid #eee; }
.vp-chat__input input { flex: 1; border: 1px solid transparent; background: var(--vp-light); border-radius: .75rem; padding: .5rem .75rem; font-size: .75rem; }
.vp-chat__input button { background: var(--vp-green); color: #fff; border: 0; border-radius: .75rem; padding: 0 .75rem; cursor: pointer; }

/* Diet output */
.vp-diet__output-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; border-bottom: 1px solid rgba(90,140,61,.1); padding-bottom: 1rem; margin-bottom: 1rem; text-align: right; }
.vp-diet__cal { background: var(--vp-orange); color: #fff; padding: .35rem .85rem; border-radius: 999px; font-weight: 700; font-size: .85rem; white-space: nowrap; }
.vp-diet__cols { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; text-align: right; }
@media (min-width: 640px) { .vp-diet__cols { grid-template-columns: 1fr 1fr; } }
.vp-diet__box { background: #fff; border: 1px solid #eee; border-radius: 1rem; padding: 1rem; }
.vp-diet__box--warn h4 { color: #e53e3e; }
.vp-diet__box ul { margin: 0; padding-right: 1.25rem; font-size: .85rem; color: #666; }
.vp-diet__meal { border-bottom: 1px solid #f0f0f0; padding: .5rem 0; }
.vp-diet__meal span { font-size: .75rem; color: #999; margin-right: .5rem; }
.vp-diet__tips { background: rgba(90,140,61,.05); border: 1px solid rgba(90,140,61,.2); border-radius: 1rem; padding: 1rem; text-align: right; }
