/* =========================================================
   RISHI STORE - STYLE SHEET
========================================================= */

:root {
 --green: #36b82f;
 --green-dark: #168522;
 --green-deep: #075b18;
 --green-soft: #effbea;
 --yellow: #f5c51b;
 --dark: #172019;
 --text: #647068;
 --muted: #8a948d;
 --border: #e3ebe3;
 --white: #ffffff;
 --shadow: 0 18px 45px rgba(16, 48, 23, 0.10);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	color: var(--dark);
	background: #fff;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.container-custom {
	width: 100%;
	max-width: 1180px;
	margin: auto;
	padding: 0 20px;
}
/* =========================================================
   TOP BAR
========================================================= */

.topbar {
	background: var(--green-deep);
	color: #fff;
	font-size: 12px;
	padding: 8px 0;
}
.topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar i {
	margin-right: 6px;
}
/* =========================================================
   HEADER
========================================================= */

.header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}
.logo-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
}
.logo-name {
	font-size: 23px;
	font-weight: 800;
	line-height: 1;
}
.logo-name span {
	color: var(--green);
}
.logo-tagline {
	font-size: 10px;
	color: #78837b;
	margin-top: 5px;
}
.nav {
	display: flex;
	align-items: center;
	gap: 27px;
}
.nav a {
	color: #4d584f;
	font-size: 13px;
	font-weight: 700;
}
.nav a:hover, .nav a.active {
	color: var(--green-dark);
}
.call-btn {
	background: var(--green-soft);
	color: var(--green-dark);
	padding: 10px 15px;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}
/* =========================================================
   PROFESSIONAL HERO
========================================================= */

.hero {
	background:
 radial-gradient(circle at 78% 15%, rgba(210, 247, 202, .8), transparent 24%),  linear-gradient(135deg, #f4fbf2 0%, #ffffff 62%, #eff9ed 100%);
	overflow: hidden;
	position: relative;
}
 .hero::before {
 content: "";
 position: absolute;
 width: 380px;
 height: 380px;
 border-radius: 50%;
 background: rgba(54, 184, 47, .055);
 right: -120px;
 top: -130px;
}
.hero-inner {
	min-height: 555px;
	display: grid;
	grid-template-columns: 51% 49%;
	align-items: center;
	gap: 25px;
	position: relative;
	z-index: 1;
}
.hero-content {
	padding: 55px 0;
}
.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green-dark);
	background: #e9f8e6;
	border: 1px solid #d5ecd1;
	padding: 8px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 18px;
}
.hero-title {
	font-size: clamp(43px, 5vw, 65px);
	line-height: 1.04;
	letter-spacing: -2.4px;
	font-weight: 800;
	margin: 0 0 20px;
	max-width: 620px;
}
.hero-title .green {
	color: var(--green-dark);
}
.hero-description {
	max-width: 570px;
	color: var(--text);
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 27px;
}
.hero-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 20px;
	border-radius: 9px;
	background: var(--green-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	border: 0;
 transition: .2s;
}
.btn-primary:hover {
	background: #0d6e1b;
	color: #fff;
	transform: translateY(-1px);
}
.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 9px;
	background: #fff;
	color: var(--green-dark);
	border: 1px solid #cfe4d0;
	font-size: 13px;
	font-weight: 800;
}
.btn-secondary:hover {
	border-color: var(--green);
	color: var(--green-dark);
}
/* Hero photo composition */

.hero-visual {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-photo-frame {
	width: min(490px, 100%);
	height: 390px;
	position: relative;
	border-radius: 28px;
	padding: 9px;
	background: #fff;
	box-shadow: var(--shadow);
}
 .hero-photo-frame::before {
 content: "";
 position: absolute;
 inset: -14px 28px 25px -18px;
 background: #dff3dc;
 border-radius: 30px;
 z-index: -1;
}
.hero-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
	border-radius: 21px;
}
.hero-photo-label {
	position: absolute;
	left: -23px;
	bottom: 25px;
	background: #fff;
	border-radius: 14px;
	padding: 13px 17px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .13);
	transform: rotate(-1.2deg);
}
.hero-photo-label strong {
	display: block;
	color: var(--green-dark);
	font-size: 18px;
}
.hero-photo-label span {
	display: block;
	color: var(--text);
	font-size: 10px;
	margin-top: 2px;
}
.hero-delivery-card {
	position: absolute;
	top: 48px;
	right: -3px;
	background: var(--yellow);
	color: #172019;
	padding: 12px 15px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
	font-size: 11px;
	font-weight: 800;
}
.hero-delivery-card i {
	margin-right: 5px;
}
/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlights {
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
	position: relative;
	z-index: 3;
}
.highlight-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.highlight {
	padding: 23px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-right: 1px solid var(--border);
}
.highlight:last-child {
	border-right: 0;
}
.highlight-icon {
	width: 43px;
	height: 43px;
	border-radius: 11px;
	background: var(--green-soft);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.highlight strong {
	display: block;
	font-size: 13px;
}
.highlight span {
	font-size: 11px;
	color: var(--text);
}
/* =========================================================
   COMMON SECTIONS
========================================================= */

.section {
	padding: 75px 0;
}
.section-light {
	background: #f7faf7;
}
.section-heading {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 42px;
}
.section-label {
	color: var(--green-dark);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	margin-bottom: 8px;
}
.section-heading h2 {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 10px;
}
.section-heading p {
	color: var(--text);
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
}
/* =========================================================
   ABOUT
========================================================= */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.about-photo {
	position: relative;
}
.about-photo img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 22px;
}
.photo-badge {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: #fff;
	border-radius: 13px;
	padding: 13px 17px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}
.photo-badge strong {
	display: block;
	color: var(--green-dark);
	font-size: 19px;
}
.photo-badge span {
	font-size: 11px;
	color: var(--text);
}
.about-content h2 {
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	margin: 8px 0 17px;
}
.about-content p {
	color: var(--text);
	font-size: 14px;
	line-height: 1.9;
}
.points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 13px;
	margin-top: 24px;
}
.point {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
}
.point i {
	color: var(--green-dark);
}
/* =========================================================
   WHAT WE OFFER
========================================================= */

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.category {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 15px;
	padding: 24px 18px;
	text-align: center;
 transition: .2s;
}
.category:hover {
	transform: translateY(-4px);
	border-color: #b5dcb9;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}
.category-icon {
	width: 62px;
	height: 62px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
}
.category h5 {
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 5px;
}
.category p {
	color: var(--text);
	font-size: 11px;
	margin: 0;
}
/* =========================================================
   STORE PHOTOS
========================================================= */

.photos-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 18px;
}
.store-photo {
	position: relative;
	overflow: hidden;
	border-radius: 17px;
	min-height: 280px;
	background: #eaf5ea;
}
.store-photo:first-child {
	min-height: 580px;
}
.store-photo img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
 transition: .4s;
}
.store-photo:first-child img {
	min-height: 580px;
}
.store-photo:hover img {
	transform: scale(1.03);
}
.photo-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 45px 20px 18px;
	color: #fff;
	background: linear-gradient(transparent, rgba(0, 0, 0, .72));
	font-size: 14px;
	font-weight: 800;
}
/* =========================================================
   BUSINESS
========================================================= */

.business-section {
	background: var(--green-soft);
}
.business-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.business-card {
	background: #fff;
	border: 1px solid #dce9de;
	border-radius: 17px;
	padding: 27px;
}
.business-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.business-title-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--green-soft);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.business-title h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
}
.info-row {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}
.info-row:last-child {
	border-bottom: 0;
}
.info-row > i {
	width: 20px;
	color: var(--green-dark);
	margin-top: 3px;
}
.info-row strong {
	display: block;
	color: #87918a;
	font-size: 11px;
	margin-bottom: 3px;
}
.info-row span, .info-row a {
	color: var(--dark);
	font-size: 13px;
}
/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px;
}
.contact-content h2 {
	font-size: 35px;
	font-weight: 800;
	margin: 7px 0 14px;
}
.contact-content > p {
	color: var(--text);
	font-size: 14px;
	line-height: 1.8;
}
.contact-item {
	display: flex;
	gap: 13px;
	margin-top: 21px;
}
.contact-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--green-soft);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-item strong {
	display: block;
	font-size: 12px;
	margin-bottom: 3px;
}
.contact-item span, .contact-item a {
	font-size: 13px;
	color: var(--text);
}
.contact-form {
	border: 1px solid var(--border);
	border-radius: 17px;
	padding: 28px;
}
.contact-form h4 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 20px;
}
.form-control-custom {
	width: 100%;
	height: 45px;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 0 13px;
	font-size: 13px;
	outline: none;
	margin-bottom: 13px;
}
textarea.form-control-custom {
	height: 110px;
	padding-top: 12px;
	resize: none;
}
.form-control-custom:focus {
	border-color: var(--green);
}
.submit {
	border: 0;
	padding: 12px 19px;
	border-radius: 8px;
	background: var(--green-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}
.map-box {
	height: 210px;
	margin-top: 25px;
	border-radius: 17px;
	background: #e8f4e9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--green-dark);
}
.map-box i {
	font-size: 40px;
	margin-bottom: 9px;
}
.map-box strong {
	font-size: 14px;
}
.map-box span {
	font-size: 11px;
	color: var(--text);
	margin-top: 4px;
}
/* =========================================================
   LEGAL
========================================================= */

.legal {
	background: #f7faf7;
}
.legal-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 18px;
}
.legal-box h3 {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 13px;
}
.legal-box h4 {
	font-size: 14px;
	font-weight: 800;
	margin-top: 18px;
}
.legal-box p, .legal-box li {
	color: var(--text);
	font-size: 12px;
	line-height: 1.8;
}
/* =========================================================
   FOOTER
========================================================= */

footer {
	background: #112018;
	color: #fff;
	padding-top: 55px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}
.footer-logo {
	font-size: 23px;
	font-weight: 800;
	margin-bottom: 12px;
}
.footer-logo span {
	color: #64dc6a;
}
.footer-desc {
	max-width: 310px;
	color: #98a59c;
	font-size: 12px;
	line-height: 1.8;
}
footer h5 {
	font-size: 14px;
	margin-bottom: 17px;
}
.footer-links a {
	display: block;
	color: #98a59c;
	font-size: 12px;
	margin-bottom: 10px;
}
.footer-links a:hover {
	color: #fff;
}
.footer-contact {
	color: #98a59c;
	font-size: 12px;
	line-height: 2;
}
.social {
	display: flex;
	gap: 8px;
	margin-top: 17px;
}
.social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 16px 0;
	color: #768279;
	font-size: 10px;
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
 .nav {
 gap: 15px;
}
 .nav a:nth-child(3) {
 display: none;
}
 .hero-inner {
 grid-template-columns: 52% 48%;
}
}
 @media (max-width: 900px) {
 .about-grid,  .contact-grid {
 grid-template-columns: 1fr;
}
 .business-grid {
 grid-template-columns: 1fr;
}
 .footer-grid {
 grid-template-columns: 1fr 1fr;
}
}
 @media (max-width: 700px) {
 .container-custom {
 padding: 0 15px;
}
 .topbar .right {
 display: none;
}
 .topbar-inner {
 justify-content: center;
}
 .header-inner {
 min-height: 70px;
}
 .nav,  .call-btn {
 display: none;
}
 .hero-inner {
 min-height: auto;
 display: flex;
 flex-direction: column;
 gap: 0;
 align-items: stretch;
}
 .hero-content {
 padding: 55px 0 25px;
}
 .hero-title {
 font-size: 42px;
 letter-spacing: -1.2px;
}
 .hero-description {
 font-size: 14px;
}
 .hero-visual {
 min-height: 340px;
 padding: 10px 0 35px;
}
 .hero-photo-frame {
 width: 100%;
 max-width: 480px;
 height: 290px;
 transform: none;
}
 .hero-photo-label {
 left: 8px;
 bottom: 17px;
 transform: none;
}
 .hero-delivery-card {
 right: 8px;
 top: 25px;
}
 .highlight-grid {
 grid-template-columns: 1fr;
}
 .highlight {
 border-right: 0;
 border-bottom: 1px solid var(--border);
}
 .highlight:last-child {
 border-bottom: 0;
}
 .section {
 padding: 55px 0;
}
 .section-heading h2 {
 font-size: 28px;
}
 .about-content h2,  .contact-content h2 {
 font-size: 29px;
}
 .about-photo img {
 height: 330px;
}
 .points {
 grid-template-columns: 1fr;
}
 .category-grid {
 grid-template-columns: 1fr 1fr;
}
 .photos-grid {
 grid-template-columns: 1fr;
}
 .store-photo,  .store-photo:first-child {
 min-height: 300px;
}
 .store-photo img,  .store-photo:first-child img {
 min-height: 300px;
}
 .footer-grid {
 grid-template-columns: 1fr;
}
 .footer-bottom-inner {
 flex-direction: column;
 gap: 6px;
}
}
/* =========================================================
   FINAL HOMEPAGE HERO - REFERENCE DESIGN
========================================================= */
.hero {
	position:relative;
	min-height:620px;
	overflow:hidden;
	background:linear-gradient(110deg, #f6fcf4 0%, #fff 50%, #f0faee 100%)
}
.hero-inner {
	min-height:620px;
	display:grid;
	grid-template-columns:43% 57%;
	align-items:center;
	gap:0;
	position:relative;
	z-index:2
}
.hero-orb {
	position:absolute;
	border-radius:50%;
	background:rgba(40, 170, 48, .05)
}
.orb-one {
	width:360px;
	height:360px;
	left:-190px;
	top:100px
}
.orb-two {
	width:450px;
	height:450px;
	right:-160px;
	top:-190px
}
.hero-content {
	padding:45px 0 65px;
	position:relative;
	z-index:5
}
.hero-label {
	display:inline-flex;
	align-items:center;
	gap:8px;
	background:#e9f8e6;
	border:1px solid #d6edd3;
	color:#08791a;
	padding:10px 16px;
	border-radius:30px;
	font-size:12px;
	font-weight:800;
	margin-bottom:25px
}
.hero-title {
	max-width:520px;
	font-size:clamp(48px, 5vw, 70px);
	line-height:.98;
	letter-spacing:-3px;
	font-weight:800;
	margin:0
}
.hero-title .green {
	color:#0e861f
}
.hero-description {
	max-width:535px;
	color:#68736b;
	font-size:16px;
	line-height:1.8;
	margin:24px 0 25px
}
.hero-buttons {
	display:flex;
	gap:13px;
	flex-wrap:wrap
}
.btn-primary, .btn-secondary {
	min-height:48px;
	padding:0 21px;
	border-radius:9px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:9px;
	font-size:13px;
	font-weight:800
}
.btn-primary {
	background:#08791a;
	color:#fff
}
.btn-primary:hover {
	background:#056814;
	color:#fff
}
.btn-secondary {
	background:#fff;
	color:#08791a;
	border:1px solid #bfdcc1
}
.btn-secondary:hover {
	color:#08791a;
	border-color:#08791a
}
.delivery-mini {
	margin-top:28px;
	width:max-content;
	display:flex;
	align-items:center;
	gap:12px;
	background:#fff;
	border:1px solid #e1ebe1;
	border-radius:13px;
	padding:10px 15px 10px 10px;
	box-shadow:0 10px 25px rgba(20, 70, 25, .06)
}
.delivery-icon {
	width:40px;
	height:40px;
	border-radius:10px;
	background:#eaf8e8;
	color:#08791a;
	display:flex;
	align-items:center;
	justify-content:center
}
.delivery-mini strong, .delivery-mini small {
	display:block
}
.delivery-mini strong {
	font-size:12px;
	color:#08791a
}
.delivery-mini small {
	font-size:10px;
	color:#6f7972;
	margin-top:3px
}
.hero-dots {
	display:flex;
	gap:7px;
	margin-top:19px
}
.hero-dots span {
	width:9px;
	height:9px;
	border-radius:50%;
	background:#d3ddd4
}
.hero-dots span.active {
	width:24px;
	border-radius:10px;
	background:#1b9b2a
}
.hero-visual {
	height:100%;
	min-height:620px;
	position:relative
}
.photo-backdrop {
	position:absolute;
	width:720px;
	height:500px;
	right:-80px;
	top:55px;
	border-radius:45% 0 0 45%;
	background:#e1f3de
}
.hero-photo-frame {
	position:absolute;
	width:700px;
	height:475px;
	right:-35px;
	top:47px;
	overflow:hidden;
	border:10px solid rgba(255, 255, 255, .95);
	box-shadow:0 25px 55px rgba(31, 80, 36, .16);
	background:#ddd
}
.hero-photo-frame img {
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center
}
.hero-delivery-card {
	position:absolute;
	right:18px;
	top:18px;
	background:#f6c51c;
	color:#172016;
	padding:13px 17px;
	border-radius:13px;
	box-shadow:0 10px 22px rgba(0, 0, 0, .12);
	font-size:12px;
	font-weight:800
}
.hero-delivery-card i {
	margin-right:6px
}
.hero-photo-label {
	position:absolute;
	left:3px;
	bottom:125px;
	z-index:5;
	background:#fff;
	border-radius:15px;
	padding:15px 20px;
	box-shadow:0 12px 35px rgba(23, 60, 28, .15)
}
.hero-photo-label strong {
	display:block;
	color:#0e861f;
	font-size:20px
}
.hero-photo-label span {
	display:block;
	color:#748078;
	font-size:10px;
	margin-top:3px
}
.leaf-decoration {
	position:absolute;
	right:3px;
	bottom:65px;
	color:#36a93b;
	transform:rotate(-25deg);
	z-index:4
}
.leaf-decoration i {
	display:block;
	font-size:42px;
	margin-top:-18px
}
.leaf-decoration i:nth-child(2) {
margin-left:28px;
font-size:54px
}
.leaf-decoration i:nth-child(3) {
margin-left:65px;
font-size:33px
}
.hero-benefits {
	position:absolute;
	z-index:6;
	left:80px;
	right:-15px;
	bottom:42px;
	height:112px;
	background:rgba(9, 101, 23, .94);
	border-radius:18px;
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	box-shadow:0 18px 38px rgba(15, 75, 21, .20);
	backdrop-filter:blur(8px)
}
.benefit {
	color:#fff;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	position:relative
}
.benefit:not(:last-child)::after {
content:"";
position:absolute;
right:0;
top:25px;
width:1px;
height:63px;
background:rgba(255, 255, 255, .22)
}
.benefit>i {
	font-size:22px;
	margin-bottom:8px
}
.benefit strong {
	font-size:12px
}
.benefit span {
	font-size:9px;
	line-height:1.45;
	color:rgba(255, 255, 255, .78);
	margin-top:4px
}
.highlights {
	background:#fff;
	box-shadow:0 5px 22px rgba(0, 0, 0, .04);
	position:relative;
	z-index:8
}
.highlight-grid {
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:14px;
	padding:24px 0
}
.highlight {
	border:1px solid #edf2ed;
	border-radius:13px;
	padding:16px 18px;
	display:flex;
	align-items:center;
	gap:12px;
	background:#fff
}
.highlight-icon {
	width:46px;
	height:46px;
	flex:0 0 46px;
	border-radius:11px;
	background:#eaf8e8;
	color:#08791a;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:20px
}
.highlight strong {
	display:block;
	font-size:12px
}
.highlight span {
	display:block;
	font-size:10px;
	line-height:1.45;
	color:#69746c;
	margin-top:4px
}
@media(max-width:900px) {
.hero-inner {
grid-template-columns:1fr;
min-height:auto
}
.hero-content {
padding:60px 0 20px
}
.hero-visual {
min-height:520px
}
.hero-photo-frame {
width:700px;
max-width:92vw;
right:0
}
.hero-benefits {
left:7%;
right:0
}
.highlight-grid {
grid-template-columns:1fr 1fr
}
}
@media(max-width:600px) {
.hero-title {
font-size:46px;
letter-spacing:-2px
}
.hero-description {
font-size:14px
}
.hero-visual {
min-height:430px
}
.photo-backdrop {
width:100%;
height:320px;
top:30px;
right:-50px
}
.hero-photo-frame {
width:100%;
height:310px;
top:25px;
border-radius:35% 0 0 35%
}
.hero-delivery-card {
font-size:10px;
padding:10px 12px;
right:10px;
top:13px
}
.hero-photo-label {
left:0;
bottom:85px;
padding:12px 15px
}
.hero-photo-label strong {
font-size:16px
}
.hero-benefits {
left:0;
right:0;
bottom:0;
height:78px;
border-radius:12px
}
.benefit>i {
font-size:16px;
margin-bottom:4px
}
.benefit strong {
font-size:8px
}
.benefit span, .leaf-decoration {
display:none
}
.highlight-grid {
grid-template-columns:1fr
}
.delivery-mini {
width:100%;
max-width:340px
}
}




.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #d6ead6;
    border-radius: 10px;
    background: #eaf7e8;
    color: #08751a;
    font-size: 17px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .call-btn {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 70px;
        height: auto;
        padding: 8px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid #e3ebe4;
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 13px 15px;
        border-radius: 8px;
    }

    .nav a:hover,
    .nav a.active {
        background: #eaf7e8;
    }

    .nav a::after {
        display: none;
    }

}
