/**
 * 2-offer-lp — scoped landing styles (RTL, light theme).
 * Font: assets/fonts/DG-Ghayaty-Regular-F.ttf
 */

html {
	scroll-behavior: smooth;
}

@font-face {
	font-family: "OfferLP";
	src: url("fonts/DG-Ghayaty-Regular-F.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

.itssonic-landing {
	--lp-bg:           #ffffff;
	--lp-surface:      #f5f7fa;
	--lp-surface-2:    #eaedf1;
	--lp-accent:       #9d2734;
	--lp-accent-hover: #755394;
	--lp-wa:           #25d366;
	--lp-wa-hover:     #1eb55a;
	--lp-navy:         #1a163a;
	--lp-navy-dark:    #16113a;
	--lp-cream:        #fff9f0;
	--lp-faq-bg:       #8b1a20;
	--lp-text:         #1a163a;
	--lp-muted:        #6b7280;
	--lp-border:       rgba(0, 0, 0, 0.09);
	--lp-radius:       14px;
	--lp-shadow:       0 2px 16px rgba(0, 0, 0, 0.08);
	--lp-gap:          1.25rem;

	box-sizing: border-box;
	direction: rtl;
	font-family: "OfferLP", "Segoe UI", Tahoma, system-ui, sans-serif;
	background: var(--lp-bg);
	color: var(--lp-text);
	line-height: 1.65;
	max-width: 100%;
	overflow-x: hidden;
}

.itssonic-landing *,
.itssonic-landing *::before,
.itssonic-landing *::after {
	box-sizing: border-box;
}

.itssonic-landing a {
	/* color: inherit; */
	text-decoration: none;
}

.itssonic-landing img {
	max-width: 100%;
	height: auto;
	display: block;
}

.itssonic-landing .itssonic-lp-container {
	width: 100%;
	margin-inline: auto;
}

.itssonic-landing .itssonic-lp-container--boxed {
	width: min(1100px, 100% - 2rem);
}

.itssonic-landing .itssonic-lp-container--full {
	width: 100%;
}

/* ── Color utilities ─────────────────────────────────────── */
.itssonic-lp-color-red   { color: #9d2734; }
.itssonic-lp-color-navy  { color: #1a163a; }
.itssonic-lp-color-white { color: #ffffff; }
.itssonic-lp-color-lb    { color: rgb(189, 216, 253); }

/* ── Shipping topbar (dark navy) ─────────────────────────── */
.itssonic-lp-topbar {
	background: var(--lp-navy-dark);
	color: #ffffff;
	padding: 0.6rem 0;
	font-size: 0.95rem;
	font-weight: 700;
}

.itssonic-lp-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.itssonic-lp-topbar-inner img {
	width: 38px;
	height: auto;
	flex-shrink: 0;
	display: inline-block;
}

/* ── Header (cream, 3-column CTA row) ────────────────────── */
.itssonic-lp-header {
	background: var(--lp-cream);
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.itssonic-lp-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
}

.itssonic-lp-contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	color: #8b1a20;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.itssonic-lp-contact-item:hover {
	opacity: 0.75;
}

.itssonic-lp-contact-item img {
	width: 30px;
	height: 30px;
	display: block;
}

.itssonic-lp-contact-item--wa {
	justify-self: end;
}

.itssonic-lp-contact-item--phone {
	justify-self: start;
}

.itssonic-lp-header-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	padding: 0.6rem 2.5rem;
	background: #8b1a20;
	color: #ffffff;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	transition: background 0.15s ease;
	box-shadow: 0 3px 14px rgba(139, 26, 32, 0.4);
}

.itssonic-lp-header-cta:hover {
	background: #1a163a;
	color: #ffffff !important;
}

.itssonic-lp-header-cta-title {
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.2;
	display: block;
}

.itssonic-lp-header-cta-sub {
	font-size: 0.78rem;
	font-weight: 500;
	opacity: 0.9;
	display: block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.itssonic-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 2rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	font-family: inherit;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
	text-align: center;
	white-space: nowrap;
}

.itssonic-lp-btn--primary{
	background: var(--lp-accent);
	color: #fff;
	box-shadow: 0 3px 12px rgba(157, 39, 52, 0.35);
}

.itssonic-lp-btn--primary:hover,
.itssonic-lp-btn--primary:focus-visible{
	background: #1a163a;
	color: #ffffff;
	box-shadow: 0 4px 18px rgba(26, 22, 58, 0.45);
}

button.itssonic-lp-btn--primary {
	background: var(--lp-accent);
	color: #fff;
	box-shadow: 0 3px 12px rgba(157, 39, 52, 0.35);
	border-radius: 999px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    text-align: center;
    white-space: nowrap;
}
button.itssonic-lp-btn--primary:hover, 
button.itssonic-lp-btn--primary:focus-visible {
	background: #1a163a;
	color: #ffffff;
	box-shadow: 0 4px 18px rgba(26, 22, 58, 0.45);
}
.itssonic-lp-btn--wa {
	background: var(--lp-wa);
	color: #fff;
	box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}

.itssonic-lp-btn--wa:hover,
.itssonic-lp-btn--wa:focus-visible {
	background: var(--lp-wa-hover);
}

/* Button with subtitle (bundle cards) */
.itssonic-lp-btn--sub {
	flex-direction: column;
	gap: 0.05rem;
	padding: 0.75rem 2.5rem;
}

.itssonic-lp-btn--sub .btn-title {
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.25;
}

.itssonic-lp-btn--sub small {
	font-size: 0.72rem;
	font-weight: 500;
	opacity: 0.85;
}

/* Full-width button for bundle cards */
.itssonic-lp-btn--bundle {
	width: 100%;
	font-size: 1.05rem;
	font-weight: 900;
}

/* ── Bands ───────────────────────────────────────────────── */
.itssonic-lp-band {
	padding: 3rem 0;
	background-image: url("img/69e98960cef785.90756013_كولاعلياصولهاباكجراوند.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.itssonic-lp-band--tight {
	padding: 1.5rem 0;
}

.itssonic-lp-band--alt {
	background: var(--lp-surface);
}

.itssonic-lp-band--flavors {
	background: #DAE7FA;
}

.itssonic-lp-band--story {
	padding-top: 0;
	padding-bottom: 0;
}

.itssonic-lp-band--social-proof {
	background: #ffffff;
	padding: 2.25rem 0 2rem;
}

.itssonic-lp-band--social-proof .itssonic-lp-title {
	margin-bottom: 0.45rem;
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	line-height: 1.15;
}

.itssonic-lp-band--social-proof .itssonic-lp-subtitle {
	margin-bottom: 0;
	max-width: 100%;
	color: inherit;
	font-size: clamp(1.5rem, 3.2vw, 2.55rem);
	line-height: 1.2;
	font-weight: 800;
}

.itssonic-lp-band--reels {
	background: #f4e9ee;
	padding-top: 1rem;
	padding-bottom: 1.5rem;
}

.itssonic-lp-band--social-proof.itssonic-lp-band--reels {
	padding-left: 100px;
	padding-right: 100px;
}

.itssonic-lp-reels-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 1rem;
}

.itssonic-lp-reel-card {
	border-radius: 8px;
	overflow: hidden;
	background: #000;
}

.itssonic-lp-reel-card video {
	width: 100%;
	height: 100%;
	display: block;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

@media (max-width: 900px) {
	.itssonic-lp-band--social-proof.itssonic-lp-band--reels {
		padding-left: 32px;
		padding-right: 32px;
	}

	.itssonic-lp-reels-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.itssonic-lp-band--social-proof.itssonic-lp-band--reels {
		padding-left: 16px;
		padding-right: 16px;
	}

	.itssonic-lp-reels-grid {
		grid-template-columns: 1fr;
	}
}

.itssonic-lp-band--story .itssonic-lp-story-grid {
	gap: 0;
	align-items: stretch;
}

.itssonic-lp-band--story .itssonic-lp-story-text-col {
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem clamp(1rem, 4vw, 4rem);
}

.itssonic-lp-band--story .itssonic-lp-story-text-col .itssonic-lp-btn {
	align-self: center;
	min-width: 290px;
}

.itssonic-lp-band--story .itssonic-lp-story-img-col img {
	border-radius: 0;
}

.itssonic-lp-band--story .itssonic-lp-story-text-col .itssonic-lp-title,
.itssonic-lp-band--story .itssonic-lp-story-text-col .itssonic-lp-subtitle {
	text-align: center;
}

.itssonic-lp-band--story .itssonic-lp-story-text-col .itssonic-lp-title {
	font-size: clamp(2rem, 4.1vw, 3.25rem);
	line-height: 1.15;
	margin-bottom: 0.5rem;
}

.itssonic-lp-band--story .itssonic-lp-story-text-col .itssonic-lp-subtitle {
	max-width: 32rem;
	margin: 0 auto 1rem;
	font-size: clamp(1.1rem, 2vw, 1.7rem);
	line-height: 1.25;
}

/* ── Typography ──────────────────────────────────────────── */
.itssonic-lp-title {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 0.75rem;
	text-align: center;
	color: var(--lp-text);
}

.itssonic-lp-subtitle {
	color: var(--lp-muted);
	text-align: center;
	margin: 0 auto 1.5rem;
	max-width: 42rem;
	font-size: 1.05rem;
}

/* ── Center CTA ──────────────────────────────────────────── */
.itssonic-lp-center-cta {
	display: flex;
	justify-content: center;
	margin-top: 1.75rem;
}

/* ── Video + Hero 2-col ──────────────────────────────────── */
.itssonic-lp-video-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.itssonic-lp-video-col {
	display: flex;
	align-items: center;
	overflow: hidden;
}

.itssonic-lp-video-col video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.itssonic-lp-hero-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: 2.5rem 1.5rem;
	text-align: center;
	background: #bdd8fd;
}

.itssonic-lp-hero-col .itssonic-lp-logo {
	height: 80px;
	width: auto;
	display: block;
}

.itssonic-lp-hero-col .itssonic-lp-banner-img {
	border-radius: 0;
	border: none;
	box-shadow: none;
	margin: 0;
}

@media (max-width: 768px) {
	.itssonic-lp-video-hero {
		grid-template-columns: 1fr;
	}

	.itssonic-lp-video-col video {
		max-height: 55vw;
		object-fit: cover;
	}

	.itssonic-lp-hero-col {
		padding: 1.5rem 1rem;
	}
}

/* ── Benefits carousel ───────────────────────────────────── */
.products-wrap {
	width: 100%;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 14px;
	overflow: hidden;
	box-sizing: border-box;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	align-items: center;
}

.product-card {
	width: 100%;
	height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	background: transparent;
}

.product-card img {
	width: 115%;
	max-width: 220px;
	height: auto;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.product-dots {
	display: none;
}

@media (max-width: 900px) {
	.products-wrap {
		max-width: 100%;
		padding: 0;
		overflow: hidden;
	}

	.products-grid {
		position: relative;
		display: block;
		width: 100%;
		height: 285px;
		overflow: hidden;
	}

	.product-card {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 285px;
		opacity: 0;
		transform: translateX(20px);
		transition: opacity 0.35s, transform 0.35s;
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	.product-card.is-active {
		opacity: 1;
		transform: translateX(0);
		pointer-events: auto;
	}

	.product-card img {
		width: 141%;
		max-width: none;
		max-height: 257px;
		height: auto;
		object-fit: contain;
	}

	.product-dots {
		display: none;
	}

	.product-dot {
		width: 8px;
		height: 8px;
		border: 0;
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.25);
		padding: 0;
		margin: 0;
		cursor: pointer;
		transition: width 0.2s ease, background 0.2s ease;
	}

	.product-dot.is-active {
		width: 22px;
		background: rgba(0, 0, 0, 0.75);
	}
}

/* ── Flavors full-width wrapper ──────────────────────────── */
.itssonic-lp-flavors-full {
	width: 100%;
	padding: 0 60px;
	box-sizing: border-box;
}

/* ── Flavors hover grid ──────────────────────────────────── */
.products-hover-wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding-bottom: 1.5rem;
}

.products-hover-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	width: 100%;
	margin: 0 auto;
}

.products-hover-grid.swiper {
	overflow: visible;
}

.products-hover-grid .swiper-wrapper {
	align-items: stretch;
}

.product-hover-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	overflow: visible;
	height: auto;
}

.product-hover-img-wrap {
	position: relative;
	width: 100%;
	height: auto;
	overflow: visible;
}

.product-hover-img-wrap img {
	position: relative;
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	transition: opacity 0.2s ease;
	pointer-events: none;
	object-position: center bottom;
}

.product-img-default {
	opacity: 1;
}

.product-img-hover {
	position: absolute !important;
	inset: 0;
	height: 100% !important;
	opacity: 0;
}

.product-hover-card:hover .product-img-default {
	opacity: 0;
}

.product-hover-card:hover .product-img-hover {
	opacity: 1;
}

.product-hover-label {
	margin-top: 0.25rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	position: relative;
	z-index: 3;
}

.product-hover-name {
	color: #9d2734;
	font-weight: 700;
	font-size: 0.95rem;
	font-family: inherit;
	line-height: 1.2;
}

.product-hover-stars {
	color: #f5a623;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
}

@media (max-width: 900px) {
	.itssonic-lp-flavors-full {
		padding: 0 1rem;
	}

	.products-hover-wrap {
		overflow: hidden;
	}

	.product-hover-card {
		width: 100%;
		height: auto;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.product-hover-img-wrap {
		width: 100%;
		max-width: 300px;
		height: 260px;
		aspect-ratio: unset;
		overflow: hidden;
		margin: 0 auto;
	}

	.product-hover-img-wrap img {
		transform: scale(1);
		transform-origin: bottom center;
	}

	.product-img-hover {
		display: none;
	}
}

/* ── Bundle cards (2-col, 2-img each) ───────────────────── */
.itssonic-lp-bundles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--lp-gap);
	margin-top: 1.5rem;
}

.itssonic-lp-bundle-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.itssonic-lp-bundle-imgs {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.itssonic-lp-bundle-imgs img {
	width: 100%;
	height: auto;
	display: block;
}

.itssonic-lp-bundle-imgs img:nth-child(2) {
	max-width: 80%;
}

@media (max-width: 600px) {
	.itssonic-lp-bundles {
		grid-template-columns: 1fr;
	}
}

/* ── Offers / Friday deals section ──────────────────────── */
.itssonic-lp-band--offers {
	background: #ffffff;
	background-image: none;
}

.itssonic-lp-band--offers__title {
	color: #9d2734;
	font-size: clamp(2.5rem, 7vw, 5rem);
}

.itssonic-lp-band--offers__subtitle {
	color: #1a163a;
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	font-weight: 700;
}

.itssonic-lp-bundle-card--save {
	background: #f5f0e4;
	border: 2px solid #ddd0b8;
	border-radius: 1rem;
	padding: 1.5rem;
}

.itssonic-lp-bundle-card--refresh {
	background: #dae7fa;
	border: 2px solid #b8d0f0;
	border-radius: 1rem;
	padding: 1.5rem;
}

/* ── Story 2-col (img left, text right) ─────────────────── */
.itssonic-lp-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.itssonic-lp-story-img-col img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--lp-radius);
}

.itssonic-lp-story-text-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.itssonic-lp-story-text-col .itssonic-lp-title {
	text-align: start;
	margin-bottom: 0;
}

.itssonic-lp-story-text-col .itssonic-lp-subtitle {
	text-align: start;
	margin: 0;
}

@media (max-width: 768px) {
	.itssonic-lp-story-grid {
		grid-template-columns: 1fr;
	}

	.itssonic-lp-story-text-col .itssonic-lp-title,
	.itssonic-lp-story-text-col .itssonic-lp-subtitle {
		text-align: center;
	}

	.itssonic-lp-story-text-col {
		align-items: center;
	}
}

/* ── FAQ section ─────────────────────────────────────────── */
.itssonic-lp-band--faq {
	background: var(--lp-faq-bg);
}

.itssonic-lp-band--faq .itssonic-lp-title {
	color: #ffffff;
}

.itssonic-lp-band--faq .itssonic-lp-subtitle {
	color: rgb(189, 216, 253);
}

.itssonic-lp-faq {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	align-items: start;
}

@media (max-width: 600px) {
	.itssonic-lp-faq {
		grid-template-columns: 1fr;
	}
}

/* FAQ item card */
.itssonic-lp-faq-item {
	background: #efefef;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	overflow: hidden;
}

/* Question button */
.itssonic-lp-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.95rem 1.1rem 0.95rem 2.6rem;
	background: transparent;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	color: #8b1a20;
	text-align: right;
	direction: rtl;
	line-height: 1.3;
	position: relative;
	transition: opacity 0.15s ease;
}

.itssonic-lp-faq-q span {
	flex: 1;
	text-align: right;
}

.itssonic-lp-faq-item.is-open .itssonic-lp-faq-q {
	border-radius: 8px;
}

.itssonic-lp-faq-q:hover {
	opacity: 0.92;
}

/* Chevron icon — absolute on the left */
.itssonic-lp-faq-chevron {
	position: absolute;
	left: 0.55rem;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	color: #ffffff;
	transition: transform 0.3s ease;
	background: #9d2734;
	border-radius: 50%;
	padding: 2px;
}

.itssonic-lp-faq-item.is-open .itssonic-lp-faq-chevron {
	transform: translateY(-50%) rotate(180deg);
}

/* Animated answer body */
.itssonic-lp-faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.itssonic-lp-faq-item.is-open .itssonic-lp-faq-body {
	max-height: 400px;
}

.itssonic-lp-faq-a {
	color: #4a4949;
	font-size: 0.88rem;
	line-height: 1.65;
	margin: 0;
	padding: 0.2rem 1.1rem 1.2rem;
	border-top: none;
	background: transparent;
	border-radius: 0;
	text-align: right;
	direction: rtl;
}

/* ── Contact section (white bg, dark navy cards) ─────────── */
.itssonic-lp-band--contact {
	background: #ffffff;
}

.itssonic-lp-band--contact .itssonic-lp-subtitle {
	color: var(--lp-accent);
}

.itssonic-lp-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.itssonic-lp-contact-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	background: var(--lp-navy);
	border-radius: var(--lp-radius);
	padding: 1.25rem 1rem;
}

.itssonic-lp-contact-col img {
	width: 38px;
	height: 38px;
	display: block;
	filter: brightness(0) invert(1);
}

.itssonic-lp-contact-icon {
	font-size: 2.05rem;
	line-height: 1;
	color: #ffffff;
}

.itssonic-lp-contact-col a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	font-weight: 700;
	transition: color 0.15s;
}

.itssonic-lp-contact-col a:hover {
	color: #ffffff;
}

@media (max-width: 600px) {
	.itssonic-lp-contact-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* ── Full-width image ────────────────────────────────────── */
.itssonic-lp-fullwidth-img {
	display: block;
	width: 100%;
	height: auto;
}

/* ── Footer (dark navy 3-col) ────────────────────────────── */
.itssonic-lp-footer {
	background: var(--lp-navy);
	color: rgba(255, 255, 255, 0.8);
	padding: 1.5rem 0;
	font-size: 0.88rem;
}

/* ══════════════════════════════════════════════════════════
   Multi-step: Step indicator
══════════════════════════════════════════════════════════ */
.itssonic-lp-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 2rem;
}

.itssonic-lp-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.step-circle {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 2px solid #ccc;
	background: #fff;
	color: #aaa;
	font-size: 1.1rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.step-label {
	font-size: 0.82rem;
	color: #aaa;
	font-weight: 600;
	white-space: nowrap;
	transition: color 0.25s;
}

.itssonic-lp-step.is-active .step-circle,
.itssonic-lp-step.is-done .step-circle {
	background: #9d2734;
	border-color: #9d2734;
	color: #fff;
}

.itssonic-lp-step.is-active .step-label,
.itssonic-lp-step.is-done .step-label {
	color: #9d2734;
}

.itssonic-lp-step-line {
	flex: 1;
	height: 2px;
	background: #ddd;
	margin: 0 0.75rem;
	margin-bottom: 1.4rem;
	max-width: 8rem;
	transition: background 0.25s;
}

.itssonic-lp-step-line.is-done {
	background: #9d2734;
}

/* ── Step panels ─────────────────────────────────────────── */
.itssonic-lp-step-panel[hidden] {
	display: none;
}

/* ══════════════════════════════════════════════════════════
   Checkout form (Step 2)
══════════════════════════════════════════════════════════ */
.itssonic-lp-form-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	padding: 1.75rem 2rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* 2-col grid (name | phone) */
.itssonic-lp-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.5rem;
	margin-bottom: 1rem;
}

.itssonic-lp-form-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* 2-col row (governorate | city) */
.itssonic-lp-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.itssonic-lp-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.itssonic-lp-field:last-child {
	margin-bottom: 0;
}

.itssonic-lp-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a163a;
	text-align: right;
}

.itssonic-lp-label .req {
	color: #9d2734;
}

.itssonic-lp-label .optional {
	font-weight: 400;
	color: #888;
}

.itssonic-lp-input {
	width: 100%;
	padding: 0.65rem 0.9rem;
	border: 1.5px solid #d1d5db;
	border-radius: 0.5rem;
	background: #f0fdf9;
	font-family: inherit;
	font-size: 0.95rem;
	color: #1a163a;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
	direction: rtl;
	text-align: right;
}

.itssonic-lp-input:focus {
	border-color: #9d2734;
	box-shadow: 0 0 0 3px rgba(157, 39, 52, 0.12);
}

.itssonic-lp-input.is-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.itssonic-lp-select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a163a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 0.75rem center;
	background-size: 1rem;
	padding-left: 2.2rem;
}

.itssonic-lp-textarea {
	resize: vertical;
	min-height: 80px;
}

/* Phone wrap */
.itssonic-lp-phone-wrap {
	display: flex;
	align-items: stretch;
	border: 1.5px solid #d1d5db;
	border-radius: 0.5rem;
	overflow: hidden;
	background: #f0fdf9;
}

.itssonic-lp-phone-wrap:focus-within {
	border-color: #9d2734;
	box-shadow: 0 0 0 3px rgba(157, 39, 52, 0.12);
}

.itssonic-lp-phone-code {
	flex-shrink: 0;
	padding: 0.65rem 0.8rem;
	background: #e9f5ef;
	border-left: 1.5px solid #d1d5db;
	font-size: 0.88rem;
	font-weight: 700;
	color: #1a163a;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.itssonic-lp-phone-wrap .itssonic-lp-input {
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	flex: 1;
	direction: ltr;
	text-align: left;
}

.itssonic-lp-phone-wrap .itssonic-lp-input:focus {
	border: none;
	box-shadow: none;
}

/* ── Order summary ───────────────────────────────────────── */
.itssonic-lp-order-summary {
	background: #2e2060;
	border-radius: 1rem;
	padding: 1.5rem 1.75rem;
	color: #fff;
	margin-bottom: 1.25rem;
	direction: rtl;
}

.itssonic-sum-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 1.1rem;
	justify-content: flex-end;
}

.itssonic-sum-rows {
	border-bottom: 1px solid rgba(255,255,255,0.15);
	margin-bottom: 0.9rem;
	padding-bottom: 0.75rem;
}

.itssonic-sum-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.35rem 0;
	font-size: 0.92rem;
}

.sum-key {
	color: rgba(255,255,255,0.7);
}

.sum-val {
	font-weight: 600;
}

.itssonic-sum-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

.sum-total-key {
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
}

.sum-total-val {
	font-size: 1.5rem;
	font-weight: 900;
	color: #fbbf24;
}

.itssonic-sum-savings {
	text-align: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fb7185;
	margin-bottom: 0.6rem;
}

.itssonic-sum-cod {
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.75);
}

/* ── Form actions ────────────────────────────────────────── */
.itssonic-lp-form-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

/* Submit — large full-width red pill */
.itssonic-lp-form-actions .itssonic-lp-btn--primary {
	width: 100%;
	justify-content: center;
	background: #9d2734;
	border-radius: 0.6rem;
	font-size: 1.15rem;
	font-weight: 800;
	padding: 1rem 1.5rem;
	letter-spacing: 0.01em;
	box-shadow: 0 4px 18px rgba(157, 39, 52, 0.35);
}

.itssonic-lp-form-actions .itssonic-lp-btn--primary:hover,
.itssonic-lp-form-actions .itssonic-lp-btn--primary:focus-visible {
	background: #7a1e28;
	box-shadow: 0 6px 22px rgba(157, 39, 52, 0.45);
	color: #ffffff;
}

/* Back — plain text link, centered */
.itssonic-lp-btn--ghost {
	width: 100%;
	background: transparent;
	border: none;
	color: #9d2734;
	padding: 0.85rem 1rem;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.2s;
	text-align: center;
}

.itssonic-lp-btn--ghost:hover {
	background: #1a163a;
	color: #ffffff;
}

.itssonic-lp-form-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	text-align: center;
	margin-bottom: 0.75rem;
}

/* ── Success state ───────────────────────────────────────── */
.itssonic-lp-order-success {
	text-align: center;
	padding: 3rem 1rem;
}

.itssonic-lp-order-success .success-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.itssonic-lp-order-success h3 {
	font-size: 1.8rem;
	font-weight: 800;
	color: #1a163a;
	margin-bottom: 0.5rem;
}

.itssonic-lp-order-success p {
	color: #555;
	font-size: 1rem;
}

/* ── Submit button loading state ─────────────────────────── */
.itssonic-lp-btn--loading {
	opacity: 0.7;
	pointer-events: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 680px) {
	.itssonic-lp-form-grid {
		grid-template-columns: 1fr;
	}

	.itssonic-lp-field-row {
		grid-template-columns: 1fr;
	}

	.itssonic-lp-form-card {
		padding: 1.25rem 1rem;
	}

}

.itssonic-lp-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}


.itssonic-lp-footer-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.itssonic-lp-footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	font-size: 0.85rem;
}

.itssonic-lp-footer-links a:hover {
	color: #ffffff;
}

.itssonic-lp-footer-social {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	align-items: center;
}

.itssonic-lp-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.itssonic-lp-footer-social img {
	width: 36px;
	height: 36px;
	display: block;
	filter: brightness(0) invert(1);
	transition: opacity 0.15s;
}

.itssonic-lp-footer-social a:hover img {
	opacity: 0.75;
}

@media (max-width: 600px) {
	.itssonic-lp-footer-inner {
		flex-direction: column;
		align-items: center;
		gap: 1.25rem;
	}

	.itssonic-lp-footer-social {
		justify-content: center;
	}
}

/* ── Header responsive ───────────────────────────────────── */
@media (max-width: 768px) {
	.itssonic-lp-header-inner {
		grid-template-columns: 1fr;
	}

	.itssonic-lp-header .itssonic-lp-contact-item--wa,
	.itssonic-lp-header .itssonic-lp-contact-item--phone {
		display: none;
	}

	.itssonic-lp-header-cta {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.itssonic-lp-header-cta {
		padding: 0.5rem 1.2rem;
	}

	.itssonic-lp-header-cta-title {
		font-size: 1.15rem;
	}

	.itssonic-lp-contact-item {
		font-size: 0.78rem;
	}
}

/* ══════════════════════════════════════════════════════════
   Flavor picker (Step 2)
══════════════════════════════════════════════════════════ */
.itssonic-flavor-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.itssonic-flavor-badge {
	background: #2e2060;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	white-space: nowrap;
	flex-shrink: 0;
}

.itssonic-flavor-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.itssonic-flavor-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 0.85rem 0.5rem 0.75rem;
	transition: border-color 0.2s, background 0.2s;
}

.itssonic-flavor-card.is-selected {
	border-color: #9d2734;
	background: #fff5f5;
}

.itssonic-flavor-card img {
	width: 100%;
	max-height: 110px;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.itssonic-flavor-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: #1a163a;
	text-align: center;
	line-height: 1.3;
}

.itssonic-flavor-qty-wrap {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	direction: ltr;
}

.itssonic-flavor-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #9d2734;
	background: #fff;
	color: #9d2734;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
	line-height: 1;
	padding: 0;
	flex-shrink: 0;
}

.itssonic-flavor-btn:hover {
	background: #9d2734;
	color: #fff;
}

.itssonic-flavor-qty {
	min-width: 1.6rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 800;
	color: #1a163a;
}

.itssonic-flavor-hint {
	text-align: center;
	font-size: 0.92rem;
	color: #6b7280;
	margin-bottom: 1.25rem;
	font-weight: 600;
	min-height: 1.4em;
}

@media (max-width: 480px) {
	.itssonic-flavor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
