/* ==========================================================================
   Egyptian Mimo — Papyrus shop skin (shop archive + single product)
   Design = skin, WooCommerce = engine. All classes scoped under .emshop.
   ========================================================================== */

html:has(body.emshop-body) { background: #F4ECDD; }
body.emshop-body {
	margin: 0;
	/* !important: the Elementor kit stylesheet loads after ours and sets its own body background */
	background: #F4ECDD !important;
	font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
	color: #2A2018;
	-webkit-font-smoothing: antialiased;
}

.emshop {
	--papy: #F4ECDD;
	--card: #FBF6EC;
	--ink: #2A2018;
	--ink-soft: #4A3E2E;
	--text-soft: #6B5D4A;
	--muted: #8A7A60;
	--teal: #234E63;
	--teal-text: #B9CBD4;
	--cream: #EBDCBF;
	--clay: #B8532E;
	--gold: #C99A3B;
	--line: #E7DBC4;
	--strike: #A89474;

	max-width: 1440px;
	margin: 0 auto;
	background: var(--papy);
	min-height: 100vh;
	overflow-x: hidden;
}

.emshop *, .emshop *::before, .emshop *::after { box-sizing: border-box; }
.emshop h1, .emshop h2, .emshop h3 { margin: 0; font-weight: 400; }
.emshop p { margin: 0; }
.emshop a { text-decoration: none; color: inherit; }
.emshop button { font-family: inherit; cursor: pointer; }

.emshop-section { padding: 24px clamp(18px, 3.5vw, 48px) 40px; }
.emshop-eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
.emshop-brand-en { font-family: 'Marcellus', serif; font-size: 26px; letter-spacing: .02em; color: var(--ink); }
.emshop-brand-ar { font-family: 'Amiri', serif; font-size: 22px; color: var(--clay); }

/* Buttons */
.emshop-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 20px; border: 0; border-radius: 10px;
	font-size: 14px; font-weight: 600; line-height: 1.2; text-align: center;
	transition: transform .15s ease, filter .15s ease;
}
.emshop-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.emshop-btn svg { width: 18px; height: 18px; flex: none; }
/* `.emshop a { color: inherit }` out-ranks a bare class, so anchor buttons need the element in the selector */
.emshop .emshop-btn-clay, .emshop a.emshop-btn-clay, .emshop button.emshop-btn-clay { background: var(--clay); color: #fff; }
.emshop .emshop-btn-teal, .emshop a.emshop-btn-teal, .emshop button.emshop-btn-teal { background: var(--teal); color: var(--papy); }
.emshop .emshop-btn-gold, .emshop a.emshop-btn-gold, .emshop button.emshop-btn-gold { background: var(--gold); color: #221606; }
.emshop a.emshop-btn-gold:hover, .emshop a.emshop-btn-gold:focus, .emshop a.emshop-btn-gold:active,
.emshop button.emshop-btn-gold:hover, .emshop button.emshop-btn-gold:focus, .emshop button.emshop-btn-gold:active {
	background: var(--gold); color: #221606;
}
.emshop-btn-sm { padding: 11px 18px; }
.emshop-btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.emshop .added_to_cart { display: inline-block; margin-left: 10px; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: underline; }
.emshop-add.loading { opacity: .6; pointer-events: none; }

/* Papyrus nav injected on the homepage (wrapper only carries the tokens) */
.emshop-front { min-height: 0; overflow: visible; border-radius: 0; max-width: none; width: 100%; flex: none; align-self: stretch; }
.emshop-front .emshop-nav { max-width: 1440px; margin: 0 auto; }

/* Topbar + nav */
.emshop-topbar { background: var(--teal); color: var(--cream); text-align: center; font-size: 13px; letter-spacing: .06em; padding: 9px 14px; }
.emshop-nav {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	padding: 22px clamp(18px, 3.5vw, 48px); border-bottom: 1px solid var(--line);
}
.emshop-brand { display: flex; align-items: center; gap: 10px; }
.emshop-brand-logo { display: block; width: 44px; height: 44px; object-fit: contain; flex: 0 0 44px; }
.emshop-nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-size: 15px; color: var(--ink-soft); flex-wrap: wrap; }
.emshop-nav-links > a:hover { color: var(--clay); }
.emshop-nav-links > a.is-current { color: var(--clay); font-weight: 600; }
.emshop-nav-cta { background: var(--clay); color: #fff !important; padding: 9px 18px; border-radius: 999px; font-weight: 600; }
.emshop-nav-ghost { border: 1px solid var(--teal); color: var(--teal) !important; padding: 8px 16px; border-radius: 999px; font-weight: 600; }
.emshop-nav-cart { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 500; }
.emshop-cart-count {
	min-width: 22px; height: 22px; padding: 0 6px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--clay); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 700;
}
.emshop-burger { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; font-size: 18px; padding: 6px 12px; color: var(--ink); }

.emshop-notices { padding: 0 clamp(18px, 3.5vw, 48px); }
.emshop-notices .woocommerce-message, .emshop-notices .woocommerce-info, .emshop-notices .woocommerce-error {
	margin: 14px 0 0; border-radius: 10px; background: var(--card); border: 1px solid var(--line); color: var(--ink); padding: 12px 16px; list-style: none;
}
.emshop-notices a.button { background: var(--teal); color: var(--papy); border-radius: 8px; padding: 6px 12px; }

/* Hero */
.emshop-hero { padding: 46px clamp(18px, 3.5vw, 48px) 30px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.emshop-hero-copy { max-width: 640px; }
.emshop-hero h1 { font-family: 'Marcellus', serif; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; margin-top: 12px; color: var(--ink); }
.emshop-hero p { font-size: 16px; color: var(--text-soft); margin-top: 16px; max-width: 520px; }
.emshop-hero-mark { font-family: 'Amiri', serif; font-size: clamp(70px, 10vw, 130px); line-height: .8; color: var(--teal); opacity: .14; flex: none; }

/* All-Access */
.emshop-aa-wrap { padding-top: 12px; }
.emshop-aa {
	position: relative; overflow: hidden; background: var(--teal); border-radius: 22px;
	padding: clamp(28px, 4vw, 52px); display: grid; grid-template-columns: 1fr 360px; gap: clamp(24px, 4vw, 52px); align-items: center;
}
.emshop-aa-watermark { position: absolute; right: -30px; bottom: -70px; font-family: 'Amiri', serif; font-size: 240px; line-height: 1; color: rgba(244,236,221,.07); pointer-events: none; }
.emshop-aa-chip { display: inline-block; background: var(--gold); color: #221606; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; }
.emshop-aa h2 { font-family: 'Marcellus', serif; font-size: clamp(26px, 3vw, 38px); color: var(--papy); margin-top: 18px; }
.emshop-aa-copy > p { color: var(--teal-text); font-size: 15px; margin-top: 12px; max-width: 520px; }
.emshop-aa-feats { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 24px; }
.emshop-aa-feats li { position: relative; padding-left: 20px; color: var(--cream); font-size: 14.5px; }
.emshop-aa-feats li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 3px; }
.emshop-aa-card { position: relative; background: var(--card); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 10px; text-align: center; }
.emshop-aa-low { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.emshop-aa-price { font-family: 'Marcellus', serif; font-size: 46px; color: var(--teal); }
.emshop-aa-price span { font-size: 15px; font-family: 'Instrument Sans', sans-serif; color: var(--muted); margin-left: 8px; }
.emshop-aa-save { font-size: 13px; color: var(--clay); font-weight: 600; }
.emshop-aa-card .emshop-btn { margin-top: 8px; }
.emshop-aa-note { font-size: 12.5px; color: var(--muted); }

/* Bundles */
.emshop-bundles { background: var(--teal); border-radius: 22px; padding: clamp(24px, 3.5vw, 40px); }
.emshop-bundles-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.emshop-bundles-head h2 { font-family: 'Marcellus', serif; font-size: 28px; color: var(--papy); }
.emshop-bundles-head p { color: var(--teal-text); font-size: 14px; margin-top: 4px; }
.emshop-gold-chip { background: var(--gold); color: #221606; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; flex: none; }
.emshop-bundle-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.emshop-bundle-card { background: var(--card); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 14px; border: 1px solid rgba(201,154,59,.5); }
.emshop-bundle-top { display: flex; justify-content: space-between; align-items: flex-start; }
.emshop-bundle-glyph { font-family: 'Amiri', serif; font-size: 34px; color: var(--teal); line-height: 1; }
.emshop-bundle-glyph.has-image { width: 72px; height: 72px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.emshop-bundle-glyph.has-image .emshop-tile-img { width: 100%; height: 100%; object-fit: cover; }
.emshop-save-chip { background: var(--clay); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.emshop-bundle-title { font-family: 'Marcellus', serif; font-size: 19px; line-height: 1.2; color: var(--ink); }
.emshop-bundle-title:hover { color: var(--clay); }
.emshop-bundle-sub { font-size: 13px; color: var(--muted); }
.emshop-bundle-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.emshop-price-now { font-family: 'Marcellus', serif; font-size: 26px; color: var(--teal); }
.emshop-price-was { font-size: 15px; color: var(--strike); text-decoration: line-through; }

/* Courses grid + filters */
.emshop-filter-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-bottom: 6px; }
.emshop-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.emshop-tab {
	background: none; border: 1px solid var(--line); color: var(--ink-soft);
	padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
	transition: all .15s ease;
}
.emshop-tab:hover { border-color: var(--clay); color: var(--clay); }
.emshop-tab.is-active { background: var(--teal); border-color: var(--teal); color: var(--papy); font-weight: 600; }
.emshop-filter-right { display: flex; align-items: center; gap: 16px; }
.emshop-results { font-size: 13px; color: var(--muted); white-space: nowrap; }
.emshop-search { display: flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; min-width: 210px; }
.emshop-search span { color: var(--clay); }
.emshop-search input { border: 0; outline: 0; background: none; font-size: 14px; color: var(--ink); width: 100%; font-family: inherit; }

.emshop-course-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; padding-top: 20px; }
.emshop-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.emshop-card.is-hidden { display: none; }
.emshop-card-tile { height: 190px; background: var(--teal); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.emshop-card-glyph { font-family: 'Amiri', serif; font-size: 96px; color: var(--gold); line-height: 1; }
.emshop-tile-img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; border-radius: 0; }
.emshop-card-tag { position: absolute; top: 14px; left: 14px; background: rgba(244,236,221,.92); color: var(--teal); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.emshop-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.emshop-card-title { font-family: 'Marcellus', serif; font-size: 20px; line-height: 1.15; color: var(--ink); }
.emshop-card-title:hover { color: var(--clay); }
.emshop-card-ar { font-family: 'Amiri', serif; font-size: 16px; color: var(--clay); }
.emshop-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; flex-wrap: wrap; }
.emshop-card-foot .emshop-price-now { font-size: 24px; }

.emshop-empty { text-align: center; color: var(--muted); font-size: 15px; padding: 40px 0; }

/* Pagination */
.emshop-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding-top: 32px; flex-wrap: wrap; }
.emshop-pagination:empty { display: none; }
.emshop-page-btn {
	min-width: 42px; height: 42px; padding: 0 12px;
	background: var(--card); border: 1px solid var(--line); border-radius: 10px;
	color: var(--ink-soft); font-size: 14px; font-weight: 600;
	transition: all .15s ease;
}
.emshop-page-btn:hover:not(:disabled):not(.is-current) { border-color: var(--clay); color: var(--clay); }
.emshop-page-btn.is-current { background: var(--teal); border-color: var(--teal); color: var(--papy); cursor: default; }
.emshop-page-btn:disabled { opacity: .4; cursor: default; }

/* --------------------------------------------------------------------------
   Guard against the theme/Elementor-kit button states (pink accent) leaking
   into the skin on hover/focus/active — every interactive state pinned.
   -------------------------------------------------------------------------- */
.emshop .emshop-page-btn:hover, .emshop .emshop-page-btn:focus, .emshop .emshop-page-btn:active {
	background: var(--card); color: var(--clay); border-color: var(--clay);
}
.emshop .emshop-page-btn.is-current, .emshop .emshop-page-btn.is-current:hover,
.emshop .emshop-page-btn.is-current:focus, .emshop .emshop-page-btn.is-current:active {
	background: var(--teal); color: var(--papy); border-color: var(--teal);
}
.emshop .emshop-page-btn:disabled, .emshop .emshop-page-btn:disabled:hover,
.emshop .emshop-page-btn:disabled:focus { background: var(--card); color: var(--ink-soft); border-color: var(--line); }

.emshop .emshop-tab:hover, .emshop .emshop-tab:focus, .emshop .emshop-tab:active {
	background: transparent; color: var(--clay); border-color: var(--clay);
}
.emshop .emshop-tab.is-active, .emshop .emshop-tab.is-active:hover,
.emshop .emshop-tab.is-active:focus, .emshop .emshop-tab.is-active:active {
	background: var(--teal); color: var(--papy); border-color: var(--teal);
}

.emshop a.emshop-btn-clay:hover, .emshop a.emshop-btn-clay:focus, .emshop a.emshop-btn-clay:active,
.emshop button.emshop-btn-clay:hover, .emshop button.emshop-btn-clay:focus, .emshop button.emshop-btn-clay:active {
	background: var(--clay); color: #fff;
}
.emshop a.emshop-btn-teal:hover, .emshop a.emshop-btn-teal:focus, .emshop a.emshop-btn-teal:active,
.emshop button.emshop-btn-teal:hover, .emshop button.emshop-btn-teal:focus, .emshop button.emshop-btn-teal:active {
	background: var(--teal); color: var(--papy);
}

.emshop .emshop-burger:hover, .emshop .emshop-burger:focus, .emshop .emshop-burger:active {
	background: transparent; color: var(--ink); border-color: var(--line);
}

.emshop button:focus, .emshop a:focus { outline: none; }
.emshop button:focus-visible, .emshop a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Method */
.emshop-method { text-align: left; }
.emshop-method h2, .emshop-testi h2, .emshop-faq h2 { font-family: 'Marcellus', serif; font-size: clamp(24px, 3vw, 34px); color: var(--ink); margin-top: 10px; }
.emshop-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 28px; }
.emshop-step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.emshop-step span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: var(--clay); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; }
.emshop-step h3 { font-family: 'Marcellus', serif; font-size: 19px; margin-top: 14px; color: var(--ink); }
.emshop-step p { font-size: 14px; line-height: 1.6; color: var(--text-soft); margin-top: 8px; }

/* Stats */
.emshop-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.emshop-stats > div { background: var(--papy); text-align: center; padding: 30px 10px; }
.emshop-stats strong { display: block; font-family: 'Marcellus', serif; font-weight: 400; font-size: 34px; color: var(--teal); }
.emshop-stats strong em { font-style: normal; font-size: 18px; color: var(--muted); }
.emshop-stats span { font-size: 13px; color: var(--muted); }

/* Testimonials */
.emshop-testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 28px; }
.emshop-quote { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.emshop-stars { color: var(--gold); letter-spacing: 3px; }
.emshop-quote p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.emshop-quote footer { margin-top: auto; display: flex; flex-direction: column; }
.emshop-quote strong { font-size: 14px; color: var(--ink); }
.emshop-quote footer span { font-size: 12.5px; color: var(--muted); }

/* Real student review screenshots (old-site t1..t5) - sliding carousel */
.emshop-slider { position: relative; margin-top: 28px; padding: 0 54px; }
.emshop-slider-track {
	display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
	-ms-overflow-style: none; scrollbar-width: none; padding: 4px 2px 8px;
}
.emshop-slider-track::-webkit-scrollbar { display: none; }
.emshop-shot {
	flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start;
	background: var(--card); border: 1px solid var(--line); border-radius: 16px;
	padding: 14px; display: flex; align-items: center; justify-content: center;
}
.emshop-shot img { width: 100%; height: auto; border-radius: 10px; display: block; }
.emshop-slider-btn {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--card); border: 1px solid var(--line); color: var(--clay);
	font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center;
	transition: all .15s ease; padding: 0 0 3px;
}
.emshop-slider-prev { left: 0; }
.emshop-slider-next { right: 0; }
.emshop .emshop-slider-btn:hover, .emshop .emshop-slider-btn:focus, .emshop .emshop-slider-btn:active {
	background: var(--clay); border-color: var(--clay); color: #fff;
}
.emshop-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.emshop-slider-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: #D8CBB0; transition: all .15s ease; }
.emshop .emshop-slider-dot:hover, .emshop .emshop-slider-dot:focus { background: var(--gold); }
.emshop .emshop-slider-dot.is-active, .emshop .emshop-slider-dot.is-active:hover { background: var(--clay); width: 22px; border-radius: 999px; }
@media (max-width: 900px) { .emshop-shot { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 620px) { .emshop-slider { padding: 0 44px; } .emshop-shot { flex-basis: 100%; } }

/* Teacher — real photo beside the copy, copy centered */
.emshop-teacher { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; text-align: center; }
.emshop-teacher-photo { border-radius: 22px; overflow: hidden; background: var(--teal); }
.emshop-teacher-photo img { display: block; width: 100%; height: 100%; max-height: 380px; object-fit: cover; margin: 0; }
.emshop-teacher h2 { font-family: 'Marcellus', serif; font-size: clamp(24px, 3vw, 34px); color: var(--ink); margin-top: 10px; }
.emshop-teacher-ar { font-family: 'Amiri', serif; font-size: 20px; color: var(--teal); margin: 10px 0 16px; }
.emshop-teacher p { font-size: 16px; line-height: 1.7; color: var(--text-soft); max-width: 560px; margin: 0 auto; }
.emshop-teacher-stats { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.emshop-teacher-stats strong { display: block; font-family: 'Marcellus', serif; font-weight: 400; font-size: 26px; color: var(--teal); }
.emshop-teacher-stats span { font-size: 13px; color: var(--muted); }

/* FAQ — heading centered per user preference */
.emshop-faq { text-align: center; }
.emshop-faq-list { max-width: 760px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.emshop-faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; }
.emshop-faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: 'Marcellus', serif; font-size: 17px; color: var(--ink); position: relative; padding-right: 30px; }
.emshop-faq summary::-webkit-details-marker { display: none; }
.emshop-faq summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); color: var(--clay); font-size: 22px; }
.emshop-faq details[open] summary::after { content: "–"; }
.emshop-faq details p { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); padding: 0 0 18px; }

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */
.emshop-breadcrumb { padding: 22px clamp(18px, 3.5vw, 48px) 0; font-size: 13px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.emshop-breadcrumb a:hover { color: var(--clay); }
.emshop-breadcrumb .is-here { color: var(--ink); }

.emshop-product { display: grid; grid-template-columns: minmax(0, 520px) minmax(0, 1fr); gap: clamp(26px, 4vw, 56px); padding: 26px clamp(18px, 3.5vw, 48px) 40px; align-items: start; }
.emshop-gallery-main { background: var(--teal); border-radius: 22px; height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.emshop-gallery-main span { font-family: 'Amiri', serif; font-size: 190px; color: var(--gold); line-height: 1; }
.emshop-gallery-main.has-image { background: var(--card); border: 1px solid var(--line); }
.emshop-gallery-main .emshop-tile-img { width: 100%; height: 100%; object-fit: cover; }
.emshop-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.emshop-gallery-thumbs div { background: #9FB6C1; border-radius: 12px; height: 74px; display: flex; align-items: center; justify-content: center; font-family: 'Amiri', serif; font-size: 30px; color: var(--teal); overflow: hidden; }
.emshop-gallery-thumbs div.has-image { background: var(--card); border: 1px solid var(--line); }

.emshop-product-chip { position: static; display: inline-block; background: rgba(35,78,99,.1); }
.emshop-product-info h1 { font-family: 'Marcellus', serif; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; color: var(--ink); margin-top: 14px; }
.emshop-product-ar { font-family: 'Amiri', serif; font-size: 20px; color: var(--clay); margin-top: 8px; }
.emshop-product-desc { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); margin-top: 16px; max-width: 560px; }
.emshop-product-pricing { display: flex; align-items: baseline; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.emshop-product-price { font-family: 'Marcellus', serif; font-size: 34px; color: var(--teal); }
.emshop-product-price del { color: var(--strike); font-size: 20px; margin-right: 8px; }
.emshop-product-price ins { text-decoration: none; }
.emshop-pp-now { font-family: 'Marcellus', serif; font-size: 34px; color: var(--teal); }
.emshop-pp-was { font-size: 20px; color: var(--strike); text-decoration: line-through; }
.emshop-card-price { display: inline-flex; align-items: baseline; gap: 8px; }
.emshop-card-price .emshop-price-now { font-size: 24px; }
.emshop-card-price .emshop-price-was { font-size: 14px; }
.emshop-journey-meta em .emshop-price-now { font-size: 18px; }
.emshop-journey-meta em .emshop-price-was { font-size: 13px; }
.emshop-product-meta { font-size: 13.5px; color: var(--muted); }
.emshop-product-ctas { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; max-width: 560px; }
.emshop-product-ctas .emshop-btn-clay,
.emshop-product-ctas .emshop-btn-teal { flex: 1 1 0; min-height: 58px; font-size: 16px; padding: 16px 28px; border-radius: 14px; }
/* "or" separator between purchase buttons and the All-Access CTA */
.emshop-or { display: flex; align-items: center; gap: 14px; max-width: 560px; margin: 16px 0 4px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.emshop-or::before, .emshop-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
/* All-Access CTA row sits below, full row width */
.emshop-product-ctas--aa { margin-top: 8px; }
.emshop-product-ctas--aa .emshop-btn-gold { flex: 1 1 0; min-height: 54px; font-size: 15px; border-radius: 14px; }

.emshop-included { margin-top: 30px; }
.emshop-included h3 { font-family: 'Marcellus', serif; font-size: 18px; color: var(--ink); margin-bottom: 12px; }
.emshop-included ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 24px; }
.emshop-included li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--ink-soft); }
.emshop-included li::before { content: "◆"; position: absolute; left: 0; top: 3px; color: var(--gold); font-size: 11px; }

.emshop-journey h2 { font-family: 'Marcellus', serif; font-size: clamp(22px, 2.6vw, 30px); color: var(--ink); margin-bottom: 20px; }
.emshop-journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.emshop-journey-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease; }
.emshop-journey-card:hover { transform: translateY(-2px); }
.emshop-journey-tile { background: var(--teal); height: 130px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.emshop-journey-tile span { font-family: 'Amiri', serif; font-size: 56px; color: var(--gold); }
.emshop-journey-tile .emshop-card-glyph { font-size: 56px; }
.emshop-journey-tile.has-image { background: var(--card); }
.emshop-journey-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; }
.emshop-journey-meta strong { font-family: 'Marcellus', serif; font-weight: 400; font-size: 16px; color: var(--ink); }
.emshop-journey-meta em { font-style: normal; font-family: 'Marcellus', serif; font-size: 18px; color: var(--teal); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.emshop-course-grid, .emshop-method-grid, .emshop-testi-grid, .emshop-journey-grid, .emshop-bundle-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.emshop-aa { grid-template-columns: 1fr; }
	.emshop-teacher { grid-template-columns: 1fr; }
	.emshop-teacher-tile { height: 220px; }
	.emshop-product { grid-template-columns: 1fr; }
	.emshop-gallery-main { height: 320px; }
}

@media (max-width: 900px) {
	.emshop-nav { flex-wrap: wrap; }
	.emshop-burger { display: block; margin-left: auto; }
	.emshop-nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 14px; }
	.emshop-nav-links.is-open { display: flex; }
	.emshop-nav-links > a { padding: 10px 4px; border-bottom: 1px solid var(--line); }
	.emshop-nav-cta, .emshop-nav-ghost { text-align: center; justify-content: center; border-bottom: 0 !important; }
	.emshop-stats { grid-template-columns: repeat(2, 1fr); }
	.emshop-hero-mark { display: none; }
}

@media (max-width: 620px) {
	.emshop-course-grid, .emshop-method-grid, .emshop-testi-grid, .emshop-journey-grid, .emshop-bundle-grid { grid-template-columns: 1fr; }
	.emshop-included ul { grid-template-columns: 1fr; }
	.emshop-aa-feats { grid-template-columns: 1fr; }
	.emshop-filter-row { flex-direction: column; align-items: stretch; }
	.emshop-filter-right { justify-content: space-between; }
	.emshop-product-ctas .emshop-btn { flex: 1 1 100%; }
}
