/**
 * Shopify-style homepage + contact page
 */

/* ── Variables ── */
.sh-home {
	--sh-bg: #ffffff;
	--sh-text: #121212;
	--sh-muted: rgba(18, 18, 18, 0.65);
	--sh-border: rgba(18, 18, 18, 0.08);
	--sh-accent: #B8860B;
	--sh-btn-bg: #121212;
	--sh-btn-text: #ffffff;
	--sh-radius: 0;
	--sh-gap: 24px;
	background: var(--sh-bg);
	color: var(--sh-text);
}

/* ── Buttons ── */
.sh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: opacity 0.2s ease, background 0.2s ease;
	cursor: pointer;
	text-decoration: none;
}
.sh-btn-primary {
	background: var(--sh-btn-bg);
	color: var(--sh-btn-text);
}
.sh-btn-primary:hover { opacity: 0.85; color: var(--sh-btn-text); }
.sh-btn-secondary {
	background: transparent;
	color: var(--sh-text);
	border-color: var(--sh-text);
}
.sh-btn-secondary:hover { background: var(--sh-text); color: #fff; }
.sh-btn-outline {
	background: transparent;
	border: 1px solid var(--sh-text);
	color: var(--sh-text);
}
.sh-btn-outline:hover { background: var(--sh-text); color: #fff; }
.sh-btn-block { width: 100%; }

/* ── Section headings ── */
.sh-section-head { margin-bottom: 32px; }
.sh-section-head--center { text-align: center; }
.sh-section-head h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}
.sh-section-head p { color: var(--sh-muted); font-size: 16px; }

/* ── Hero — full-width container-fluid (zulferaaz.shop) ── */
.sh-hero-fluid {
	position: relative;
	width: 100%;
	min-height: clamp(420px, 88vh, 920px);
	overflow: hidden;
	background: #1a1a1a;
}
.sh-hero-fluid .sh-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.sh-hero-fluid .sh-hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.sh-hero-fluid-inner {
	position: relative;
	z-index: 1;
	min-height: clamp(420px, 88vh, 920px);
	display: flex;
	align-items: flex-end;
	padding-bottom: clamp(36px, 7vw, 80px);
}
.sh-hero-fluid-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(44px, 9vw, 96px);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.sh-hero-fluid-title em {
	font-style: italic;
	font-weight: 400;
}

/* Legacy contained hero */
.sh-hero-contained {
	padding: 20px 0 8px;
}
.sh-hero-card {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	min-height: clamp(340px, 72vh, 760px);
	background: #1a1a1a;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.sh-hero-card-img {
	width: 100%;
	height: 100%;
	min-height: clamp(340px, 72vh, 760px);
	object-fit: cover;
	object-position: center center;
	display: block;
}
.sh-hero-card-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: clamp(24px, 5vw, 56px);
	background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.45) 100%);
}
.sh-hero-card-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(42px, 8vw, 84px);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.sh-hero-card-title em {
	font-style: italic;
	font-weight: 400;
}
.sh-btn-hero {
	background: rgba(255, 255, 255, 0.95);
	color: #121212 !important;
	border: none;
	padding: 14px 32px;
}
.sh-btn-hero:hover {
	background: #fff;
	opacity: 1;
}

/* Legacy split hero (unused) */
.sh-hero {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 70vh;
}
.sh-hero-media {
	position: relative;
	overflow: hidden;
	min-height: 320px;
}
.sh-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sh-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 48px 24px;
	background: var(--sh-bg);
}
.sh-hero-eyebrow {
	font-family: 'Noto Nastaliq Urdu', 'Segoe UI', serif;
	font-size: 22px;
	color: var(--sh-accent);
	margin-bottom: 12px;
}
.sh-hero-title {
	font-size: clamp(36px, 6vw, 56px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}
.sh-hero-desc {
	font-size: 17px;
	color: var(--sh-muted);
	line-height: 1.6;
	max-width: 440px;
	margin-bottom: 28px;
}
.sh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (min-width: 900px) {
	.sh-hero {
		grid-template-columns: 1fr 1fr;
		min-height: 85vh;
	}
	.sh-hero-content { padding: 64px 48px; }
}

body.zer-front-page .zer-announcement-bar {
	background: #6b4a2e;
}
body.zer-front-page .sh-home {
	overflow-x: hidden;
}
body.zer-front-page .sh-collection {
	padding-top: 48px;
}

.sh-trust-strip {
	border-top: 1px solid var(--sh-border);
	border-bottom: 1px solid var(--sh-border);
	padding: 16px 0;
	background: #fafafa;
}
.sh-trust-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 32px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sh-muted);
}

/* ── Product grid (Shopify cards) ── */
.sh-collection { padding: 64px 0; }
.sh-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sh-gap);
	list-style: none;
	margin: 0;
	padding: 0;
}
.sh-collection .zer-product-card-inner {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}
.sh-collection .zer-product-image-wrap {
	position: relative;
	overflow: hidden;
	background: #f3f3f3;
	aspect-ratio: 4 / 5;
}
.sh-collection .zer-product-image-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.sh-collection .zer-product-card:hover .zer-product-image-link img {
	transform: scale(1.04);
}
.sh-collection .zer-product-card-body {
	padding: 12px 0 0;
	text-align: left;
}
.sh-collection .woocommerce-loop-product__title {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 4px;
}
.sh-collection .price {
	font-size: 15px;
	font-weight: 600;
}
.sh-collection .zer-view-product {
	display: none;
}
.sh-collection .zer-sale-badge {
	top: 8px;
	left: 8px;
	font-size: 11px;
	padding: 4px 8px;
}
.sh-collection-footer { text-align: center; margin-top: 40px; }

@media (min-width: 768px) {
	.sh-product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ── Split banner ── */
.sh-split-banner {
	display: grid;
	grid-template-columns: 1fr;
}
.sh-split-banner-media img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}
.sh-split-banner-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 48px 24px;
	background: #fafafa;
}
.sh-split-banner-content h2 {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 500;
	margin-bottom: 12px;
}
.sh-split-banner-content p {
	color: var(--sh-muted);
	margin-bottom: 24px;
	max-width: 400px;
}
@media (min-width: 900px) {
	.sh-split-banner { grid-template-columns: 1fr 1fr; }
	.sh-split-banner-content { padding: 64px; }
}

/* ── YouTube carousel (big portrait videos) ── */
.sh-videos {
	padding: 80px 0 48px;
	background: #faf8f5;
	color: #121212;
}
.sh-videos .sh-section-head h2 {
	color: #121212;
	font-size: clamp(28px, 4vw, 40px);
}
.sh-videos-eyebrow {
	font-size: 15px;
	color: rgba(18, 18, 18, 0.65);
	margin-bottom: 8px;
}
.sh-youtube-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 100%;
	margin-top: 40px;
	padding: 0 8px;
}
.sh-youtube-track-wrap {
	flex: 1;
	overflow: hidden;
}
.sh-youtube-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px 16px 24px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.sh-youtube-track::-webkit-scrollbar { display: none; }
.sh-youtube-slide {
	flex: 0 0 clamp(260px, 28vw, 340px);
	scroll-snap-align: start;
}
.sh-youtube-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	min-height: 460px;
	overflow: hidden;
	background: #000;
	border-radius: 14px;
	border: 2px solid #6b4a2e;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.sh-youtube-player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.sh-youtube-title {
	font-size: 14px;
	font-weight: 500;
	margin-top: 12px;
	padding: 0 4px;
	color: rgba(18, 18, 18, 0.8);
	text-align: center;
}
.sh-youtube-arrow {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #121212;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 2;
}
.sh-youtube-arrow:hover {
	opacity: 0.85;
	transform: scale(1.05);
}
.sh-youtube-scroll-hint {
	text-align: center;
	font-size: 14px;
	color: rgba(18, 18, 18, 0.55);
	margin-top: 8px;
	padding-bottom: 16px;
}
@media (min-width: 900px) {
	.sh-youtube-slide {
		flex: 0 0 clamp(280px, 24vw, 360px);
	}
	.sh-youtube-frame {
		min-height: 560px;
	}
	.sh-youtube-carousel {
		padding: 0 24px;
	}
}

/* ── Order Journey timeline ── */
.sh-order-journey {
	padding: 80px 0;
	background: #faf8f5;
}
.sh-order-journey .sh-section-head h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
}
.sh-journey-timeline {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 0 24px;
	max-width: 720px;
	margin: 48px auto 0;
}
.sh-journey-line {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 0;
}
.sh-journey-line::before {
	content: '';
	position: absolute;
	top: 32px;
	bottom: 32px;
	left: 50%;
	width: 2px;
	background: #121212;
	transform: translateX(-50%);
}
.sh-journey-marker {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
}
.sh-journey-marker--dot,
.sh-journey-marker--dot-dark {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #6b4a2e;
	margin: auto 0;
}
.sh-journey-marker--dot-dark {
	background: #121212;
}
.sh-journey-marker--box {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #faf8f5;
	border: 2px solid #6b4a2e;
	color: #6b4a2e;
	margin: auto 0;
}
.sh-journey-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sh-journey-card {
	background: #fff;
	border: 2px solid #6b4a2e;
	border-radius: 14px;
	padding: 24px 28px;
}
.sh-journey-card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #121212;
}
.sh-journey-card p {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(18, 18, 18, 0.65);
	margin: 0;
}
@media (min-width: 768px) {
	.sh-journey-timeline {
		grid-template-columns: 72px 1fr;
		gap: 0 40px;
		max-width: 800px;
	}
	.sh-journey-card {
		padding: 28px 32px;
	}
}

/* ── Instagram gallery (big scrolling strip) ── */
.sh-instagram {
	padding: 80px 0 72px;
	background: #fafafa;
	overflow: hidden;
}
.sh-instagram .sh-section-head--center { text-align: center; margin-bottom: 8px; }
.sh-instagram-track-wrap {
	margin-top: 36px;
	overflow: hidden;
	width: 100%;
}
.sh-instagram-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: sh-insta-scroll 35s linear infinite;
	padding: 0 16px;
}
.sh-instagram-track:hover { animation-play-state: paused; }
@keyframes sh-insta-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.sh-instagram-card {
	position: relative;
	flex: 0 0 clamp(260px, 28vw, 380px);
	aspect-ratio: 1;
	border-radius: 14px;
	overflow: hidden;
	background: #e8e4df;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sh-instagram-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 36px rgba(0,0,0,0.16);
}
.sh-instagram-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.sh-instagram-hover {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.sh-instagram-card:hover .sh-instagram-hover { opacity: 1; }
.sh-instagram-cta {
	text-align: center;
	margin-top: 40px;
}
.sh-btn-outline-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border: 2px solid #1a1a1a;
	color: #1a1a1a;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.sh-btn-outline-dark:hover {
	background: #1a1a1a;
	color: #fff;
}
@media (min-width: 900px) {
	.sh-instagram-card {
		flex: 0 0 clamp(300px, 22vw, 420px);
	}
}

/* ── Reviews / FAQ on homepage ── */
.sh-home .zer-reviews { background: #fafafa; }
.sh-home .zer-faq-section { padding-bottom: 80px; }
.sh-home .zer-section-header h2 {
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 500;
}

/* ── Contact page ── */
.zer-contact-page { padding: 48px 0 80px; }
.zer-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}
.zer-contact-info .zer-page-title {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 500;
	margin-bottom: 16px;
}
.zer-contact-details {
	list-style: none;
	margin-top: 24px;
}
.zer-contact-details li {
	padding: 12px 0;
	border-bottom: 1px solid var(--sh-border, rgba(0,0,0,0.08));
	font-size: 15px;
}
.zer-contact-form-wrap {
	background: #fafafa;
	padding: 32px;
	border: 1px solid rgba(0,0,0,0.08);
}
.zer-field {
	display: block;
	margin-bottom: 16px;
}
.zer-field span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.zer-field input,
.zer-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(0,0,0,0.15);
	font-size: 15px;
	font-family: inherit;
	background: #fff;
}
.zer-field input:focus,
.zer-field textarea:focus {
	outline: 2px solid #121212;
	outline-offset: 0;
}
.zer-contact-notice {
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: 14px;
}
.zer-contact-notice--success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}
.zer-contact-notice--error {
	background: #ffebee;
	color: #c62828;
	border: 1px solid #ef9a9a;
}
@media (min-width: 768px) {
	.zer-contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
