/* =============================================================
   RZ Traders — Main Stylesheet
   Light, warm, produce-export business theme.
   ============================================================= */

:root{
	--rzt-primary: #3f7d3a;
	--rzt-primary-dark: #2e5c2b;
	--rzt-accent: #f2a93c;
	--rzt-accent-dark: #d9781f;
	--rzt-ink: #1f2d1c;
	--rzt-body: #4b564a;
	--rzt-bg: #fbf9f4;
	--rzt-bg-alt: #f3f0e6;
	--rzt-cream: #fdf7ea;
	--rzt-line: #e7e2d3;
	--rzt-white: #ffffff;
	--rzt-radius: 16px;
	--rzt-radius-sm: 10px;
	--rzt-shadow: 0 10px 30px rgba(63,125,58,0.08);
	--rzt-shadow-lg: 0 20px 50px rgba(31,45,28,0.12);
	--font-head: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
	font-family: var(--font-body);
	color: var(--rzt-body);
	background: var(--rzt-bg);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--rzt-primary); text-decoration: none; transition: color .2s ease; }
a:hover{ color: var(--rzt-accent-dark); }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6{
	font-family: var(--font-head);
	color: var(--rzt-ink);
	line-height: 1.25;
	margin: 0 0 16px;
	font-weight: 700;
}
p{ margin: 0 0 16px; }
.container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
section{ padding: 80px 0; }
@media (max-width: 782px){
	section{ padding: 50px 0; }
}

/* ---------- Buttons ---------- */
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	font-family: var(--font-head);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.btn-primary{ background: var(--rzt-primary); color: #fff; }
.btn-primary:hover{ background: var(--rzt-primary-dark); color: #fff; transform: translateY(-2px); }
.btn-accent{ background: var(--rzt-accent); color: var(--rzt-ink); }
.btn-accent:hover{ background: var(--rzt-accent-dark); color: #fff; transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: var(--rzt-primary); color: var(--rzt-primary); }
.btn-outline:hover{ background: var(--rzt-primary); color: #fff; }
.btn-lg{ padding: 16px 36px; font-size: 16px; }

/* ---------- Section headings ---------- */
.section-eyebrow{
	display: inline-block;
	color: var(--rzt-primary);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 10px;
}
.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.5vw, 40px); }
.section-head.light .section-eyebrow{ color: var(--rzt-accent); }
.section-head.light h2, .section-head.light p{ color: #fff; }

/* =============================================================
   TOP BAR
   ============================================================= */
.topbar{
	background: var(--rzt-ink);
	color: #d9e3d6;
	font-size: 13px;
}
.topbar-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
	flex-wrap: wrap;
	gap: 8px;
}
.topbar-left, .topbar-right{ display: flex; align-items: center; gap: 20px; }
.topbar-item{ display: inline-flex; align-items: center; gap: 6px; color: #d9e3d6; }
.topbar-item a{ color: #d9e3d6; }
.topbar-item a:hover{ color: var(--rzt-accent); }
.social-links{ display: flex; gap: 10px; }
.social-links a{
	width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}
.social-links a:hover{ background: var(--rzt-primary); color: #fff; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header{
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	position: sticky;
	top: 0;
	z-index: 200;
}
.header-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
}
.site-branding img, .custom-logo{ max-height: 52px; width: auto; }
.main-navigation{ flex: 1; display: flex; justify-content: center; }
.primary-menu{ display: flex; gap: 34px; }
.primary-menu a{
	color: var(--rzt-ink);
	font-weight: 600;
	font-family: var(--font-head);
	font-size: 15px;
	padding: 8px 0;
	position: relative;
}
.primary-menu a::after{
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--rzt-primary);
	transition: width .25s ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after{ width: 100%; }
.primary-menu .sub-menu{
	position: absolute;
	background: #fff;
	box-shadow: var(--rzt-shadow-lg);
	border-radius: 10px;
	padding: 10px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .2s ease;
}
.primary-menu li{ position: relative; }
.primary-menu li:hover > .sub-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu a{ display: block; padding: 8px 12px; }
.header-cta{ display: flex; }
.menu-toggle{
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.menu-toggle span{ width: 24px; height: 2px; background: var(--rzt-ink); }

@media (max-width: 960px){
	.main-navigation{
		position: fixed;
		top: 0; right: -100%;
		height: 100vh;
		width: 280px;
		background: #fff;
		flex-direction: column;
		padding: 90px 30px;
		box-shadow: -10px 0 30px rgba(0,0,0,0.1);
		transition: right .3s ease;
		z-index: 300;
	}
	.main-navigation.is-open{ right: 0; }
	.primary-menu{ flex-direction: column; gap: 20px; }
	.primary-menu .sub-menu{ position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 12px; }
	.header-cta{ display: none; }
	.menu-toggle{ display: flex; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section{
	background: linear-gradient(120deg, var(--rzt-cream) 0%, #f2f7ee 100%);
	padding: 90px 0;
	overflow: hidden;
}
.hero-inner{
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
}
.hero-text .eyebrow{
	display: inline-block;
	color: var(--rzt-primary);
	font-weight: 700;
	letter-spacing: 3px;
	font-size: 14px;
	margin-bottom: 14px;
}
.hero-text h1{
	font-size: clamp(34px, 5vw, 54px);
	margin-bottom: 20px;
}
.hero-text p{
	font-size: 17px;
	max-width: 520px;
	margin-bottom: 28px;
}
.hero-btns{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-offices{
	font-size: 14px;
	color: var(--rzt-body);
	padding-top: 16px;
	border-top: 1px solid var(--rzt-line);
	max-width: 480px;
}
.hero-image img{
	border-radius: var(--rzt-radius);
	box-shadow: var(--rzt-shadow-lg);
}
@media (max-width: 900px){
	.hero-inner{ grid-template-columns: 1fr; text-align: center; }
	.hero-text p{ margin-left: auto; margin-right: auto; }
	.hero-btns{ justify-content: center; }
	.hero-offices{ margin-left: auto; margin-right: auto; }
}

/* =============================================================
   USP STRIP
   ============================================================= */
.usp-strip{ background: var(--rzt-primary); padding: 0; }
.usp-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
}
.usp-item{
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 28px 24px;
	border-right: 1px solid rgba(255,255,255,0.15);
	color: #fff;
}
.usp-item:last-child{ border-right: none; }
.usp-item i{ font-size: 26px; flex-shrink: 0; }
.usp-item strong{ display: block; font-family: var(--font-head); font-size: 16px; }
.usp-item span{ font-size: 13px; opacity: .85; }
@media (max-width: 900px){
	.usp-grid{ grid-template-columns: repeat(2, 1fr); }
	.usp-item{ border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

/* =============================================================
   ICONS (simple CSS-drawn, no icon font dependency)
   ============================================================= */
.rzt-ic{ display: inline-block; width: 1em; height: 1em; }
.rzt-ic::before{ content: "•"; }
.rzt-ic-clock::before{ content: "⏰"; }
.rzt-ic-mail::before{ content: "✉"; }
.rzt-ic-phone::before{ content: "☎"; }
.rzt-ic-pin::before{ content: "📍"; }
.rzt-ic-globe::before{ content: "🌍"; }
.rzt-ic-leaf::before{ content: "🌿"; }
.rzt-ic-box::before{ content: "📦"; }
.rzt-ic-award::before{ content: "🏆"; }

/* =============================================================
   ABOUT / CEO SECTION
   ============================================================= */
.about-section{ background: var(--rzt-bg); }
.about-grid{
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.about-media{ position: relative; }
.about-img-main{
	border-radius: var(--rzt-radius);
	box-shadow: var(--rzt-shadow);
	width: 100%;
	aspect-ratio: 4/3.4;
	object-fit: cover;
	background: var(--rzt-cream);
}
.about-badge{
	position: absolute;
	bottom: -24px;
	left: 24px;
	background: #fff;
	border-radius: var(--rzt-radius-sm);
	box-shadow: var(--rzt-shadow-lg);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.about-badge img{ width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.about-badge strong{ display: block; font-family: var(--font-head); font-size: 14px; color: var(--rzt-ink); }
.about-badge span{ font-size: 12px; color: var(--rzt-primary); }
.about-content ul.about-checklist{ margin: 20px 0 28px; }
.about-checklist li{
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	color: var(--rzt-body);
}
.about-checklist li::before{
	content: "✓";
	position: absolute;
	left: 0; top: 0;
	width: 20px; height: 20px;
	background: var(--rzt-primary);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px){
	.about-grid{ grid-template-columns: 1fr; }
	.about-badge{ position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
}

/* =============================================================
   SERVICES GRID
   ============================================================= */
.services-section{ background: var(--rzt-bg-alt); }
.services-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.service-card{
	background: #fff;
	border-radius: var(--rzt-radius);
	padding: 28px;
	box-shadow: var(--rzt-shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--rzt-shadow-lg); }
.service-img{
	width: 76px; height: 76px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--rzt-cream);
}
.service-img img{ width: 100%; height: 100%; object-fit: cover; }
.service-card h3{ font-size: 19px; margin-bottom: 10px; }
.service-card p{ font-size: 14.5px; margin-bottom: 14px; }
.card-link{ font-weight: 600; font-size: 14px; color: var(--rzt-primary); }
.card-link:hover{ color: var(--rzt-accent-dark); }
@media (max-width: 1000px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   SUPPLY CHAIN / EXPERIENCE
   ============================================================= */
.supply-section{ background: var(--rzt-bg); }
.supply-grid{
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.supply-media{ position: relative; padding-bottom: 30px; }
.supply-img{ border-radius: var(--rzt-radius-sm); box-shadow: var(--rzt-shadow); object-fit: cover; }
.supply-img-1{ width: 78%; aspect-ratio: 4/5; }
.supply-img-2{
	width: 55%;
	aspect-ratio: 4/5;
	position: absolute;
	right: 0; bottom: 0;
	border: 6px solid var(--rzt-bg);
}
.experience-badge{
	position: absolute;
	top: 10px; left: 10px;
	background: var(--rzt-primary);
	color: #fff;
	border-radius: 50%;
	width: 120px; height: 120px;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	text-align: center;
	box-shadow: var(--rzt-shadow-lg);
}
.exp-number{ font-family: var(--font-head); font-size: 34px; font-weight: 800; line-height: 1; }
.exp-label{ font-size: 11px; letter-spacing: .5px; margin-top: 4px; }
@media (max-width: 900px){
	.supply-grid{ grid-template-columns: 1fr; }
	.supply-media{ max-width: 420px; margin: 0 auto; }
}

/* =============================================================
   VIDEO SECTION
   ============================================================= */
.video-section{ background: var(--rzt-bg-alt); }
.video-wrap{
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 40px;
	align-items: center;
	background: #fff;
	border-radius: var(--rzt-radius);
	box-shadow: var(--rzt-shadow);
	padding: 24px;
}
.video-embed{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: var(--rzt-radius-sm);
	overflow: hidden;
}
.video-embed iframe{
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: 0;
}
.video-caption h3{ font-size: 22px; }
@media (max-width: 900px){ .video-wrap{ grid-template-columns: 1fr; } }

/* =============================================================
   MANGO VARIETIES
   ============================================================= */
.varieties-section{ background: var(--rzt-bg); }
.varieties-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.variety-card{
	background: #fff;
	border-radius: var(--rzt-radius);
	overflow: hidden;
	box-shadow: var(--rzt-shadow);
	transition: transform .3s ease;
}
.variety-card:hover{ transform: translateY(-6px); }
.variety-card img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.variety-card h3, .variety-card p, .variety-card a{ padding-left: 24px; padding-right: 24px; }
.variety-card h3{ margin-top: 20px; font-size: 20px; }
.variety-card a{ display: inline-block; margin-bottom: 24px; }
@media (max-width: 900px){ .varieties-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   SHIPMENTS GALLERY
   ============================================================= */
.shipments-section{ background: var(--rzt-bg-alt); }
.shipments-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.shipment-item{
	position: relative;
	border-radius: var(--rzt-radius-sm);
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--rzt-shadow);
}
.shipment-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.shipment-item:hover img{ transform: scale(1.08); }
.shipment-overlay{
	position: absolute;
	inset: auto 0 0 0;
	background: linear-gradient(0deg, rgba(31,45,28,0.88), rgba(31,45,28,0));
	color: #fff;
	padding: 40px 20px 16px;
}
.shipment-overlay h4{ color: #fff; font-size: 17px; margin-bottom: 4px; }
.shipment-overlay p{ font-size: 12.5px; margin: 0; opacity: .85; }
@media (max-width: 900px){ .shipments-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .shipments-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   FREIGHT & LOGISTICS
   ============================================================= */
.freight-section{
	background: var(--rzt-ink);
	background: linear-gradient(135deg, #1f2d1c 0%, #2e5c2b 100%);
}
.freight-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.freight-card{
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--rzt-radius);
	padding: 30px;
	text-align: center;
}
.freight-card img{ width: 96px; margin: 0 auto 18px; border-radius: 12px; }
.freight-card h3{ color: #fff; font-size: 18px; }
.freight-card p{ color: #d9e3d6; font-size: 14.5px; margin: 0; }
@media (max-width: 900px){ .freight-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   STATS COUNTER
   ============================================================= */
.stats-section{ background: var(--rzt-accent); padding: 56px 0; }
.stats-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.stat-item{ color: var(--rzt-ink); font-family: var(--font-head); font-size: 15px; font-weight: 600; }
.stat-number{ font-size: 44px; font-weight: 800; display: block; line-height: 1; margin-bottom: 6px; }
.stat-label{ display: block; font-size: 14px; font-weight: 500; opacity: .85; }
@media (max-width: 700px){ .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-section{ background: var(--rzt-bg); }
.testimonials-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.testimonial-card{
	background: #fff;
	border-radius: var(--rzt-radius);
	padding: 30px;
	box-shadow: var(--rzt-shadow);
}
.stars{ color: var(--rzt-accent); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p{ font-style: italic; color: var(--rzt-body); }
.testimonial-author{ display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-author img{ width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong{ display: block; font-size: 14.5px; color: var(--rzt-ink); }
.testimonial-author span{ font-size: 12.5px; color: var(--rzt-primary); }
@media (max-width: 900px){ .testimonials-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   OFFICES
   ============================================================= */
.offices-section{ background: var(--rzt-bg-alt); }
.offices-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.office-card{
	background: #fff;
	border-radius: var(--rzt-radius);
	overflow: hidden;
	box-shadow: var(--rzt-shadow);
	text-align: center;
	transition: transform .3s ease;
}
.office-card:hover{ transform: translateY(-6px); }
.office-card img{ width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.office-card h3{ margin: 16px 0; font-size: 18px; }
@media (max-width: 900px){ .offices-grid{ grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-section{ background: var(--rzt-bg); }
.contact-grid{
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 50px;
}
.contact-block{ margin-bottom: 20px; }
.contact-block h4{ font-size: 15px; margin-bottom: 4px; color: var(--rzt-primary); }
.contact-block p{ margin: 0; }
.contact-form-wrap{
	background: #fff;
	border-radius: var(--rzt-radius);
	box-shadow: var(--rzt-shadow-lg);
	padding: 36px;
}
.contact-form-wrap h3{ font-size: 22px; }
.rzt-contact-form input,
.rzt-contact-form textarea,
.footer-newsletter input{
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--rzt-line);
	border-radius: var(--rzt-radius-sm);
	font-family: var(--font-body);
	font-size: 14.5px;
	margin-bottom: 16px;
	background: var(--rzt-bg);
	color: var(--rzt-ink);
}
.rzt-contact-form input:focus,
.rzt-contact-form textarea:focus{
	outline: none;
	border-color: var(--rzt-primary);
	background: #fff;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px){
	.contact-grid{ grid-template-columns: 1fr; }
	.form-row{ grid-template-columns: 1fr; }
}

.map-section iframe{ border-radius: var(--rzt-radius); box-shadow: var(--rzt-shadow); }

/* =============================================================
   CTA BAND (used on Products page)
   ============================================================= */
.cta-band{
	background: linear-gradient(135deg, var(--rzt-primary) 0%, var(--rzt-primary-dark) 100%);
}
.cta-band-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.cta-band-inner h2{ color: #fff; margin: 0; font-size: 26px; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer{ background: var(--rzt-ink); color: #cdd6ca; }
.footer-top{ padding: 70px 0 40px; }
.footer-grid{
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
	gap: 40px;
}
.footer-logo{ max-height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about p{ font-size: 14px; color: #b7c2b4; }
.footer-contact-list li{ font-size: 13.5px; margin-bottom: 10px; color: #b7c2b4; display: flex; gap: 8px; }
.footer-col .widget-title{ color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ color: #b7c2b4; font-size: 14px; }
.footer-links a:hover{ color: var(--rzt-accent); }
.footer-newsletter{ display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter input{ background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #fff; margin-bottom: 0; }
.footer-newsletter input::placeholder{ color: #8b968a; }
.social-links-footer{ margin-top: 18px; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: #8b968a;
}
.footer-bottom-inner p{ margin: 0; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* =============================================================
   BACK TO TOP
   ============================================================= */
.back-to-top{
	position: fixed;
	right: 24px; bottom: 24px;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--rzt-primary);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	box-shadow: var(--rzt-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .3s ease;
	z-index: 250;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--rzt-primary-dark); color: #fff; }

/* =============================================================
   INNER / GENERIC PAGES
   ============================================================= */
.page-hero{
	background: linear-gradient(120deg, var(--rzt-cream) 0%, #f2f7ee 100%);
	padding: 60px 0 40px;
	text-align: center;
}
.page-hero h1{ font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.breadcrumb{ font-size: 14px; color: var(--rzt-body); }
.breadcrumb a{ color: var(--rzt-primary); }
.page-content-block{ padding: 60px 0; }
.page-extra-content{ padding: 40px 0 60px; }
.page-featured-img{ margin-bottom: 30px; border-radius: var(--rzt-radius); overflow: hidden; }

.content-layout{ display: grid; grid-template-columns: 2fr 1fr; gap: 50px; padding: 60px 0; }
.blog-card{ background: #fff; border-radius: var(--rzt-radius); overflow: hidden; box-shadow: var(--rzt-shadow); margin-bottom: 30px; }
.blog-thumb img{ width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body{ padding: 24px; }
.entry-title a{ color: var(--rzt-ink); }
.posted-on{ font-size: 13px; color: var(--rzt-primary); }
.pagination{ text-align: center; margin-top: 20px; }
.widget{ background: #fff; border-radius: var(--rzt-radius-sm); padding: 24px; margin-bottom: 24px; box-shadow: var(--rzt-shadow); }
.widget-title{ font-size: 16px; margin-bottom: 16px; }
@media (max-width: 900px){ .content-layout{ grid-template-columns: 1fr; } }

.single-post-block{ padding: 40px 0; }
.entry-meta{ font-size: 13px; color: var(--rzt-primary); margin-bottom: 20px; }
.single-featured-img{ margin-bottom: 30px; border-radius: var(--rzt-radius); overflow: hidden; }
.comments-area{ padding: 30px 0; border-top: 1px solid var(--rzt-line); margin-top: 30px; }

.rzt-search-form{ display: flex; gap: 10px; max-width: 400px; margin: 20px auto 0; }
.rzt-search-form input{ flex: 1; padding: 12px 16px; border: 1px solid var(--rzt-line); border-radius: var(--rzt-radius-sm); }
.rzt-search-form button{ padding: 12px 20px; background: var(--rzt-primary); color: #fff; border: none; border-radius: var(--rzt-radius-sm); cursor: pointer; }

.error-404-section{ text-align: center; padding: 100px 0; }
.error-404-img{ width: 160px; margin: 0 auto 30px; opacity: .8; }
.error-404-section h1{ font-size: 70px; color: var(--rzt-primary); margin-bottom: 0; }
