/*
Theme Name: Maavni Designs
Description: WordPress block theme matching the live Shopify Dawn build at
  vx88sq-j8.myshopify.com — brand palette (#b3145a pink / #ff4f7b accent), Assistant
  typeface, mega-menu navigation, and WooCommerce PDP/collection layout ported from
  ../../themes/theme_export__vx88sq-j8-myshopify-com-dawn__08JUN2026-0734pm and
  ../../src/liquid/maavni-custom.css. Standalone block theme (theme.json-based),
  no parent theme — required by this site's WordPress Studio AGENTS.md, which
  mandates block themes over classic PHP-template themes.
Author: Maavni Designs
Version: 0.2.0
Requires Plugins: woocommerce
*/

/* Header row layout — the logo and utility icons must never shrink; the nav
   is the one flexible element. Without this, the browser's default
   flex-shrink:1 on every child (including the logo <img>) compresses ALL of
   them proportionally, which is what made the logo nearly disappear —
   confirmed against a live screenshot, not a guess.
   No overflow-x/y here, deliberately, after two failed attempts: `auto`
   clipped every dropdown panel (CSS forces both axes into scroll-clipping
   once either one isn't `visible`), and `clip` also clipped the dropdown
   panels that happen to overflow horizontally (e.g. Work With Us, positioned
   near the nav's right edge — its panel is a descendant of this container,
   so overflow-x:clip cut it off sideways even though overflow-y was
   `visible`) AND clipped real nav items ("About Us") whenever the search
   overlay's own icon/whatever competed for width. Root-caused both: the
   real fix was (1) making the search icon truly zero-width-impact (fixed-
   position overlay, see .maavni-search-overlay below, not an inline
   expanding input) and (2) making dropdown panels reposition themselves via
   JS instead of relying on a container clip (see the edge-detection script
   in maavni-mega-menu.php). With both of those, this container doesn't need
   overflow control at all. */
.maavni-header__row {
	flex-wrap: nowrap;
}
.maavni-header__logo,
.maavni-header__utility {
	flex-shrink: 0;
}
.maavni-header__nav {
	flex: 1 1 auto;
	min-width: 0; /* required for a flex child to shrink below its content's natural width */
}

/* Mobile nav hamburger — hidden on desktop, shown only under the 782px
   breakpoint (see the media query below), where it toggles the mega menu's
   top-level list between hidden and a full-width stacked panel. */
.maavni-mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.4rem;
	color: var(--wp--preset--color--text);
	cursor: pointer;
}
.maavni-mobile-nav-toggle:hover {
	color: var(--wp--preset--color--brand-pink);
}

/* Search icon + overlay — position:fixed means this can NEVER compete with
   the header's flex layout for width, unlike the WP core Search block's
   expand-in-place behavior (which is what caused the "About Us" nav item to
   get clipped whenever the input expanded — confirmed live). */
.maavni-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.4rem;
	color: var(--wp--preset--color--text);
	cursor: pointer;
}
.maavni-search-icon:hover {
	color: var(--wp--preset--color--brand-pink);
}
.maavni-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--wp--preset--color--white);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	padding: 1rem 1.5rem;
}
.maavni-search-overlay__form {
	display: flex;
	gap: 0.5rem;
	max-width: 640px;
	margin: 0 auto;
}
.maavni-search-overlay__form input {
	flex: 1;
	padding: 0.6rem 1rem;
	border: 1px solid var(--wp--preset--color--sand);
	border-radius: 4px;
	font-size: 1rem;
}
.maavni-search-overlay__form button {
	padding: 0.6rem 1rem;
	background: var(--wp--preset--color--brand-pink);
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* Mega menu — ported structure/spacing from the Dawn build's header-mega-menu.liquid,
   colors from theme.json custom properties (kept out of theme.json's `styles` block
   since these are structural/layout rules, not token values). */

.maavni-mega-menu__list {
	display: flex;
	align-items: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap; /* keep each "Home & Living" style label on one line, never wrap mid-word */
}

.maavni-mega-menu__item {
	position: relative;
}

.maavni-mega-menu__link-wrap {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.maavni-mega-menu__link {
	display: block;
	padding: 1.5rem 0;
	color: var(--wp--preset--color--text);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
}

.maavni-mega-menu__item:hover > .maavni-mega-menu__link-wrap > .maavni-mega-menu__link,
.maavni-mega-menu__link:focus {
	color: var(--wp--preset--color--brand-pink);
}

/* Click-to-open, matching Dawn's tray behavior (not hover) — toggled via
   .is-open by the JS in maavni-mega-menu.php's enqueued script. */
.maavni-mega-menu__item.has-dropdown.is-open > .maavni-mega-menu__panel {
	display: block;
}

.maavni-mega-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.25rem;
	margin: 0;
	color: var(--wp--preset--color--text-secondary);
	cursor: pointer;
	transition: transform 0.15s ease, color 0.15s ease;
}

.maavni-mega-menu__toggle:hover {
	color: var(--wp--preset--color--brand-pink);
}

.maavni-mega-menu__item.is-open .maavni-mega-menu__toggle {
	transform: rotate(180deg);
	color: var(--wp--preset--color--brand-pink);
}

/* Left-aligned to the trigger by default (not centered) — centering looked
   consistent for items in the middle of a 9-item nav but visually disconnected
   for items near either edge (confirmed live: "Home & Living", first item,
   had roughly half its panel spilling left of the trigger toward the logo,
   while items in the middle looked centered as intended — the inconsistency
   itself was the bug, not any single item). Left-align matches the reference
   site's own dropdown behavior and reads the same for every item. */
/* width: max-content (not a fixed min/max-width) -- the box must hug its own
   content, not the other way around. A fixed 560px was forcing every panel
   to the same width regardless of column count: Gifts (6 single-link
   columns) and Fashion (4 columns) both need more room than that, so their
   content overflowed the box's visible edge -- confirmed live, that's
   exactly the "content extending past the white box" bug. max-width here is
   purely a viewport-edge safety cap, not a target width. */
.maavni-mega-menu__panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--wp--preset--color--white);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	padding: 1.5rem;
	z-index: 100;
	width: max-content;
	min-width: 280px;
	max-width: calc(100vw - 3rem);
}

/* Applied by JS on open, only when the default left-aligned panel would
   overflow the viewport's right edge (e.g. "Work With Us", "About Us", near
   the end of the nav) — see the edge-detection script in maavni-mega-menu.php. */
.maavni-mega-menu__panel--align-right {
	left: auto;
	right: 0;
}

.maavni-mega-menu__columns {
	display: flex;
	gap: 2.5rem;
}

.maavni-mega-menu__column {
	min-width: 140px;
}

.maavni-mega-menu__column-title {
	display: block;
	font-weight: 600;
	color: var(--wp--preset--color--text);
	text-decoration: none;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

.maavni-mega-menu__column-title:hover {
	color: var(--wp--preset--color--brand-pink);
}

.maavni-mega-menu__column-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.maavni-mega-menu__column-link {
	margin-bottom: 0.5rem;
}

.maavni-mega-menu__column-link a {
	color: var(--wp--preset--color--text-secondary);
	text-decoration: none;
	font-size: 0.875rem;
}

.maavni-mega-menu__column-link a:hover {
	color: var(--wp--preset--color--brand-pink);
}

/* Footer nav reuses the same walker/classes as the header mega menu — override
   for contrast against the footer's brand-pink background (no dropdown panel
   needed here since FOOTER_MENU items have no children). */
footer .maavni-mega-menu__link {
	color: var(--wp--preset--color--white);
	padding: 0.25rem 0;
}
footer .maavni-mega-menu__link:hover {
	color: var(--wp--preset--color--sand);
}
footer .maavni-mega-menu__list {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}

@media (max-width: 782px) {
	.maavni-mega-menu__panel {
		position: static;
		transform: none;
		min-width: 0;
		box-shadow: none;
	}
	.maavni-mega-menu__columns {
		flex-direction: column;
		gap: 1rem;
	}

	/* Logo + utility icons (now including the hamburger) stay on one row;
	   the nav is forced onto its own full-width row below via flex-basis:100%
	   (a flex item asking for 100% of the line's width can never share a line
	   with anything else, so this reliably wraps regardless of icon count). */
	.maavni-header__row {
		flex-wrap: wrap;
	}
	.maavni-header__logo {
		order: 1;
	}
	.maavni-header__utility {
		order: 2;
	}
	.maavni-header__nav {
		order: 3;
		flex: 1 1 100%;
	}
	.maavni-mobile-nav-toggle {
		display: inline-flex;
	}

	/* Top-level nav list: hidden until the hamburger toggles .is-mobile-open
	   on the <nav class="maavni-mega-menu"> wrapper, then stacks vertically
	   as a full-width panel below the header row. */
	.maavni-mega-menu__list {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		white-space: normal;
	}
	.maavni-mega-menu.is-mobile-open .maavni-mega-menu__list {
		display: flex;
	}
	.maavni-mega-menu__link {
		padding: 0.85rem 0;
		border-bottom: 1px solid var(--wp--preset--color--sand);
	}
	.maavni-mega-menu__link-wrap {
		justify-content: space-between;
		width: 100%;
	}
}

/* Breadcrumb — ported from maavni-breadcrumb.liquid's visual markup */

.maavni-bc {
	padding: 1rem 0;
	font-size: 0.875rem;
}

.maavni-bc ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.maavni-bc li {
	color: var(--wp--preset--color--text-secondary);
}

.maavni-bc a {
	color: var(--wp--preset--color--text-secondary);
	text-decoration: none;
}

.maavni-bc a:hover {
	color: var(--wp--preset--color--brand-pink);
}

.maavni-bc-sep {
	margin: 0 0.5rem;
	color: var(--wp--preset--color--sand);
}

/* Variant pill — matches Dawn's always-visible option pill (e.g. "Size | Color:
   16 inches Multicolor"), shown even for single-value options since WooCommerce's
   default only surfaces these in the Additional Information tab. */
.mpv-attribute {
	margin-bottom: 1rem;
}
.mpv-attribute-label {
	display: block;
	font-size: 0.8rem;
	color: var(--wp--preset--color--text-secondary);
	margin-bottom: 0.4rem;
}
.mpv-attribute-pill {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 500;
}

/* Product card price — brand accent color for the sale price, matching Dawn's
   secondary_button_label token (#c41515-family reds/pinks used for pricing). */

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--wp--preset--color--brand-pink);
	font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════
   PDP tabs, buy-zone, top badges, delivery strip — ported verbatim from
   ../../src/liquid/maavni-custom.css lines 349-2004 (mpt-/mpb-/mpd-/mptb-
   prefixed classes). Some selectors here (.maavni-bc, .mf-*, price-slider)
   duplicate/extend rules already defined earlier in this file — harmless,
   CSS cascade resolves them consistently since both sources agree.
   ═══════════════════════════════════════════════════════════════════════ */

.mpt-pdp-content {
  padding-top: 4px;
}

.mpt-section {
  padding: 36px 0;
  border-top: 1px solid #e8e3dc;
}

.mpt-section-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a9490;
  margin: 0 0 20px;
}

/* Key Highlights strip (full-width below gallery) */
.mpt-features {
  margin: 24px 0 0;
  padding: 20px 0 16px;
  border-top: 1px solid #e8e3dc;
}

/* ── Top badges + rating (maavni-pdp-topbadge, above product title) ─────── */
.mptb-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.mptb-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.mptb-badge--gi {
  background: #eaf7ed;
  color: #1a7a35;
  border: 1px solid #b2dfbb;
}

.mptb-badge--gi svg {
  color: #1a7a35;
}

.mptb-badge--artform {
  background: #f3f0eb;
  color: #4a4440;
  border: 1px solid #d8d2c8;
}

.mptb-badge--sale {
  background: #fff3e0;
  color: #b45309;
  border: 1px solid #fcd97a;
}

.mptb-rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  font-size: 13px;
}

.mptb-stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
}

.mptb-stars::before {
  content: '★★★★★';
  color: #d9d3cc;
  letter-spacing: 1px;
}

.mptb-stars::after {
  content: '★★★★★';
  color: #f59e0b;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: calc(var(--r, 5) / 5 * 100%);
}

.mptb-rating-num {
  font-weight: 600;
  color: #2d2925;
  font-size: 13px;
}

.mptb-rating-count {
  color: #6b6764;
  font-size: 12.5px;
  text-decoration: none;
}

.mptb-rating-count:hover {
  text-decoration: underline;
}

/* ── Free delivery banner (maavni-pdp-delivery, before Add to Cart) ─────── */
.mpd-delivery-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #f6faf6;
  border: 1px solid #c3dfc7;
  border-radius: 8px;
}

.mpd-delivery-icon {
  color: #2d7a3a;
  flex-shrink: 0;
}

.mpd-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mpd-delivery-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a4d22;
}

.mpd-delivery-sub {
  font-size: 11.5px;
  color: #4a7a52;
  line-height: 1.4;
}

/* ── Buy-zone additions (maavni-pdp-buyone, inside <product-info>) ────────── */
.mpb-buy-zone {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e3dc;
}

/* Trust strip — 4 equal columns */
.mpb-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mpb-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: #fafaf8;
  border: 0.5px solid #e8e3dc;
  border-radius: 8px;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.3;
  color: #6b6764;
}

.mpb-trust-item svg {
  color: #8a7560;
  flex-shrink: 0;
}

.mpb-trust-item--gi svg {
  color: #b59a3a;
}

/* Customisable chip */
.mpb-customise-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #fdf8f2;
  border: 1px solid #dfc99a;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #7a5f38;
  text-decoration: none;
  transition: background 0.15s;
}

.mpb-customise-chip:hover {
  background: #faf0e0;
  color: #5a4020;
}

.mpb-customise-chip svg {
  flex-shrink: 0;
  color: #25d366;
}

/* Bulk order CTA */
.mpb-bulk {
  border: 0.5px solid #e0dbd5;
  border-radius: 10px;
  overflow: hidden;
}

.mpb-bulk-trigger {
  display: grid;
  grid-template-columns: 20px 1fr auto 18px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  width: 100%;
  padding: 13px 16px;
  background: #fdf8f2;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.mpb-bulk-trigger:hover,
.mpb-bulk-trigger[aria-expanded="true"] {
  background: #faf0e2;
}

.mpb-bulk-trigger svg:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: #8a7560;
  align-self: center;
}

.mpb-bulk-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 13px;
  font-weight: 600;
  color: #2d2925;
  display: block;
}

.mpb-bulk-sub {
  grid-column: 2;
  grid-row: 2;
  font-size: 11px;
  color: #8a8480;
  display: block;
  margin-top: 1px;
}

.mpb-bulk-arrow {
  grid-column: 4;
  grid-row: 1 / span 2;
  color: #8a8480;
  align-self: center;
  transition: transform 0.2s;
}

.mpb-bulk-trigger[aria-expanded="true"] .mpb-bulk-arrow {
  transform: rotate(180deg);
}

.mpb-bulk-panel {
  background: #fff;
  border-top: 0.5px solid #e8e3dc;
  padding: 16px;
}

.mpb-bulk-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpb-bulk-intro {
  font-size: 12.5px;
  color: #5a5653;
  margin: 0;
  line-height: 1.6;
}

.mpb-bulk-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mpb-bulk-qty-label {
  font-size: 12px;
  color: #6b6764;
  white-space: nowrap;
}

.mpb-bulk-select {
  flex: 1;
  min-width: 120px;
  padding: 8px 10px;
  border: 1px solid #d8d3cc;
  border-radius: 6px;
  font-size: 12.5px;
  background: #fff;
  color: #2d2925;
}

.mpb-bulk-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.mpb-bulk-wa-btn:hover {
  background: #1db954;
  color: #fff;
}

.mpb-bulk-note {
  font-size: 11px;
  color: #9a9490;
  margin: 0;
}

@media (max-width: 749px) {
  .mpb-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .mpb-bulk-trigger {
    grid-template-columns: 18px 1fr 16px;
  }

  .mpb-bulk-arrow {
    grid-column: 3;
  }

  .mpb-bulk-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mpb-bulk-wa-btn {
    justify-content: center;
  }
}

/* ── About This Piece ── */
.mpt-section--about .mpt-ai-summary {
  margin-bottom: 0;
  font-size: 14.5px;
  line-height: 1.78;
  font-style: normal;
  border-left: 3px solid #c9b99a;
  background: #fdf8f2;
  color: #3a3937;
  padding: 16px 18px;
  border-radius: 0 6px 6px 0;
}

/* ── Artisan Spotlight ── */
.mpt-artisan-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fdf8f2;
  border: 1px solid #eedcc0;
  border-radius: 10px;
  padding: 20px;
}

.mpt-artisan-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3ece0;
  border: 2px solid #dfc99a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #9a7a5a;
  flex-shrink: 0;
  font-family: inherit;
}

.mpt-artisan-avatar svg {
  color: #b4965a;
}

.mpt-artisan-bio {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.mpt-artisan-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2a;
  margin: 0 0 4px;
}

.mpt-artisan-detail {
  font-size: 13px;
  color: #6b6460;
  margin: 0 0 8px;
  line-height: 1.5;
}

.mpt-artisan-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #8a8480;
  margin: 0 0 10px;
}

.mpt-artisan-location svg {
  flex-shrink: 0;
  color: #b4a89a;
}

.mpt-artisan-credential {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #3a8a3a;
  background: #f0f7f0;
  border: 0.5px solid #a8d5a2;
  border-radius: 20px;
  padding: 4px 10px;
  margin: 0 0 10px;
}

.mpt-artisan-credential svg { color: #3a8a3a; flex-shrink: 0; }

.mpt-artisan-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #7a5c35;
  text-decoration: none;
  border-bottom: 1px solid #c9a876;
  padding-bottom: 1px;
}

.mpt-artisan-profile-link:hover { color: #5a3f20; border-color: #5a3f20; }
.mpt-artisan-profile-link svg { transition: transform 0.15s; }
.mpt-artisan-profile-link:hover svg { transform: translateX(3px); }

@media (max-width: 480px) {
  .mpt-artisan-card { padding: 16px; gap: 14px; }
  .mpt-artisan-avatar { width: 56px; height: 56px; font-size: 22px; }
  .mpt-artisan-name { font-size: 15px; }
}

/* ── Product Specifications — definition list ── */
.mpt-specs-dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  margin: 0 0 4px;
}

.mpt-specs-term,
.mpt-specs-def {
  padding: 11px 0;
  border-bottom: 0.5px solid #e8e7e2;
  font-size: 13.5px;
  margin: 0;
}

.mpt-specs-term {
  color: #8a8480;
  font-weight: 500;
  padding-right: 12px;
}

.mpt-specs-def {
  color: #2c2c2a;
}

.mpt-specs-def--care {
  color: #5f5e5a;
  line-height: 1.6;
}

.mpt-specs-dl dt:last-of-type,
.mpt-specs-dl dd:last-of-type {
  border-bottom: none;
}

.mpt-specs-dl a {
  color: #6b5a3e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .mpt-specs-dl {
    grid-template-columns: 120px 1fr;
  }
  .mpt-specs-term,
  .mpt-specs-def {
    font-size: 12.5px;
  }
}

/* ── Shipping & Delivery — 4-icon strip ── */
.mpt-shipping-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mpt-shipping-item {
  text-align: center;
  padding: 18px 10px;
  border: 0.5px solid #e8e3dc;
  border-radius: 10px;
  background: #fafaf8;
}

.mpt-shipping-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3ede6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #9a7a5a;
}

.mpt-shipping-title {
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2a;
  margin: 0 0 3px;
  line-height: 1.35;
}

.mpt-shipping-sub {
  font-size: 11px;
  color: #8a8480;
  margin: 0;
  line-height: 1.35;
}

.mpt-craft-note {
  background: #f8f5f0;
  border-left: 3px solid #c9b99a;
  padding: 11px 14px;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #4a4845;
  font-style: italic;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .mpt-shipping-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* AI Summary / GEO Answer Block — lead paragraph above the product description.
   Left accent bar in Maavni brand terracotta (#993c1d) to match active filter/clear colours. */
.mpt-ai-summary {
  margin-bottom: 18px;
  padding: 14px 16px 14px 18px;
  border-left: 3px solid #993c1d;
  background: #fdf9f7;
  border-radius: 0 4px 4px 0;
  font-size: 13.5px;
  line-height: 1.72;
  color: #3a3937;
  font-style: italic;
}

/* Description */
.mpt-desc {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #3a3937;
}

/* Specs table */
.mpt-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-bottom: 20px;
}

.mpt-specs th,
.mpt-specs td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 0.5px solid #e8e7e2;
  vertical-align: top;
}

.mpt-specs th {
  width: 36%;
  color: #888;
  font-weight: 500;
}

.mpt-specs td {
  color: #2c2c2a;
}

.mpt-specs a {
  color: #6b5a3e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Artisan link */
.mpt-artisan-link {
  color: #6b5a3e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Care instructions */
.mpt-care {
  margin-top: 20px;
  padding: 14px 16px;
  background: #f9f8f5;
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #3a3937;
}

.mpt-care-heading {
  font-weight: 600;
  margin: 0 0 8px;
  color: #2c2c2a;
}

/* Shipping & auth tab */
.mpt-ship-note,
.mpt-auth-note {
  margin-bottom: 24px;
  padding: 16px 18px;
  background: #f9f8f5;
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #3a3937;
}

.mpt-ship-heading,
.mpt-auth-heading {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 10px;
  color: #2c2c2a;
}

/* FAQ tab — collapsible accordion using native <details>/<summary> (zero JS) */
.mpt-faq {
  margin: 0;
}

/* Each <details> is one collapsible Q&A row */
.mpt-faq-item {
  border-bottom: 0.5px solid #e8e7e2;
}
.mpt-faq-item:last-child {
  border-bottom: none;
}

/* <summary> = question row — remove browser triangle, add +/− icon */
.mpt-faq-question {
  font-weight: 600;
  font-size: 14px;
  color: #2c2c2a;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;            /* Firefox */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.mpt-faq-question::-webkit-details-marker { display: none; } /* Chrome/Safari */
.mpt-faq-question::marker              { display: none; }    /* Firefox */

/* + icon (collapsed) */
.mpt-faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #5f5e5a;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.15s;
}

/* − icon (expanded) */
details[open] > .mpt-faq-question::after {
  content: '\2212'; /* Unicode minus */
}

/* Answer body */
.mpt-faq-answer {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5f5e5a;
  padding: 0 24px 16px 0;
}

/* Policy tab */
.mpt-policy-notice {
  font-size: 13px;
  background: #fef9ec;
  border: 0.5px solid #e8d99a;
  border-radius: 6px;
  padding: 12px 14px;
  color: #7a6a30;
  margin-bottom: 20px;
  line-height: 1.5;
}

.mpt-policy-block {
  margin-bottom: 18px;
}

.mpt-policy-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2a;
  margin: 0 0 6px;
}

.mpt-policy-block p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5f5e5a;
  margin: 0;
}

.mpt-policy-block a {
  color: #6b5a3e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-grid{
    column-gap:24px !important;
    row-gap:32px !important;
}
/* Desktop collection layout */
@media screen and (min-width: 990px){

  #product-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:24px !important;
  }

  #product-grid .grid__item{
    width:100% !important;
    max-width:none !important;
  }
}

/* Filter sidebar */
.maavni-has-filter > #maavni-filters{
    width:260px !important;
    padding-right:15px !important;
}

#maavni-filters .mf-group{
    border-bottom:1px solid #e5e5e5 !important;
    border-top:none !important;
    border-left:none !important;
    border-right:none !important;
    border-radius:0 !important;
    margin-bottom:6px !important;
    background:#fff;
    padding-bottom:2px !important;
 }

#maavni-filters .mf-group-toggle{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;

    width:100% !important;
    padding:10px 0 !important;

    font-size:12px !important;
    font-weight:600 !important;
    letter-spacing:.05em !important;
    text-transform:uppercase !important;
}

/* Filter option pills */
/* Fix filter checkbox alignment */
.mf-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 8px 0 !important;
}

.mf-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.mf-checkbox span {
    display: inline-block !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
}
.mf-checkbox{
    margin:0 !important;
    padding:0 !important;
}

.mf-checkbox span{
    line-height:1.2 !important;
}

.mf-options{
    flex-direction:column !important;
    gap:10px !important;
}

.mf-options.mf-collapsed{
    display:none !important;
}

.maavni-bc{
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
  }
/* Align filter and product grid */

.maavni-layout{
    display:flex !important;
    align-items:flex-start !important;
  }

#maavni-filters{
    margin-top:0 !important;
 }

#ProductGridContainer,
.collection,
.product-grid-container{
    margin-top:0 !important;
    padding-top:0 !important;
}
/* Remove top spacing from product grid section */

[class*="product-grid-padding"]{
    padding-top:0 !important;
}
 /* ==========================================
   FINAL FILTER SPACING
========================================== */

.mf-options{
    display:flex;
    flex-direction:column;
    gap:1px !important;
    padding-top:2px !important;
}


.mf-checkbox input{
    width:16px;
    height:16px;
    margin:0;
}

#maavni-filters .mf-group{
    margin-bottom:6px !important;
}

/* ==========================================
   MOBILE COLLECTION FIX
========================================== */

@media (max-width: 749px){

    #maavni-filters{
        width:100% !important;
        max-width:100% !important;
    }

    .mf-group{
        width:100% !important;
        margin-bottom:12px !important;
    }

    .mf-pill,
    .mf-options label{
        display:flex !important;
        width:100% !important;
        text-align:left !important;
        white-space:normal !important;
    }

    .product-grid-container{
        width:100% !important;
        margin-left:0 !important;
    }
 /* Force same spacing for all filter options */

#maavni-filters .mf-options label,
#maavni-filters .mf-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

    margin: 0 !important;
    padding: 4px 0 !important;
    min-height: auto !important;
}

#maavni-filters .mf-checkbox span,
#maavni-filters .mf-options label span {
    line-height: 1.2 !important;
    margin: 0 !important;
}

#maavni-filters .mf-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}
/* Fix filter checkbox alignment */

#maavni-filters .mf-checkbox,
#maavni-filters .mf-options label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 0 !important;
    margin: 0 !important;
}

#maavni-filters .mf-checkbox input,
#maavni-filters .mf-options input[type="checkbox"] {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

#maavni-filters .mf-checkbox span,
#maavni-filters .mf-options span {
    display: inline-block !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}    
/* FIX FILTER CHECKBOX ALIGNMENT */

#maavni-filters .mf-options label,
#maavni-filters .mf-checkbox {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    min-height: auto !important;
}

#maavni-filters .mf-checkbox input,
#maavni-filters input[type="checkbox"]{
    margin: 0 !important;
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
}

#maavni-filters .mf-checkbox span,
#maavni-filters label span{
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    vertical-align: middle !important;
}

#maavni-filters .mf-options{
    display:flex !important;
    flex-direction:column !important;
    gap:10px !important;
}
#maavni-filters .mf-checkbox{
    display:flex !important;
    align-items:center !important;
    flex-direction:row !important;
    gap:8px !important;
    margin:0 0 10px 0 !important;
    padding:0 !important;
}

#maavni-filters .mf-checkbox span{
    display:inline-block !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1.2 !important;
    font-size:14px !important;
    flex-shrink:0 !important;
    vertical-align:middle !important;
}


.mf-options.mf-collapsed{
    display:none !important;
}

.mf-group-toggle{
    cursor:pointer;
}
/* FINAL FILTER VALUE SPACING */

#maavni-filters .mf-options{
    gap: 20px !important;
}

#maavni-filters .mf-checkbox,
#maavni-filters .mf-options label{
    margin: 0 !important;
    padding: 2px 0 !important;
}
}

/* PRICE SLIDER */

.price-slider{
    position:relative;
    width:100%;
    height:28px;
    margin-top:12px;
}

.price-slider::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
    height:4px;
    background:#d9d9d9;
    border-radius:999px;
}

.price-slider-track{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    height:4px;
    background:#ff4f7b;
    border-radius:999px;
    z-index:2;
}

.price-slider input[type="range"]{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:100%;
    margin:0;
    background:transparent;
    -webkit-appearance:none;
    appearance:none;
    pointer-events:none;
}

/* hide native tracks */
.price-slider input[type="range"]::-webkit-slider-runnable-track{
    height:4px;
    background:transparent;
    border:none;
}

.price-slider input[type="range"]::-moz-range-track{
    height:4px;
    background:transparent;
    border:none;
}

/* thumbs */
.price-slider input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#ff4f7b;
    border:2px solid #fff;
    box-shadow:0 0 0 1px #ff4f7b;
    cursor:pointer;
    pointer-events:auto;
    margin-top:-7px;
    position:relative;
    z-index:5;
}

.price-slider input[type="range"]::-moz-range-thumb{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#ff4f7b;
    border:2px solid #fff;
    cursor:pointer;
    pointer-events:auto;
}
.price-values {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.price-values span {
    display: inline-block;
    white-space: nowrap;
}
/* Fix price labels */
.price-values{
    display:flex !important;
    justify-content:space-between !important;
    width:100%;
    margin-bottom:12px;
}

.price-values span{
    white-space:nowrap;
}

/* Chrome / Edge slider track */
.price-slider input[type="range"]::-webkit-slider-runnable-track{
    height:4px;
    background:#ff4f7b !important;
    border-radius:20px;
}

/* Chrome / Edge slider thumb */
.price-slider input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#ff4f7b !important;
    border:2px solid #fff;
    margin-top:-7px;
    cursor:pointer;
}

/* Firefox */
.price-slider input[type="range"]::-moz-range-track{
    height:4px;
    background:#ff4f7b !important;
    border-radius:20px;
}

.price-slider input[type="range"]::-moz-range-thumb{
    width:18px;
    height:18px;
    border:none;
    border-radius:50%;
    background:#ff4f7b !important;
}
#filter-price {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Hide arrow only for PRICE filter */
button[aria-controls="filter-price"]::after,
button[aria-controls="filter-price"] svg {
    display: none !important;
}
@media screen and (max-width: 749px){

  .maavni-has-filter{
    display:block !important;
  }

  #maavni-filters{
    width:100% !important;
    position:static !important;
    margin-bottom:20px;
  }

  #mf-count{
    margin:10px 0;
  }
}



/* ── WhatsApp floating button (PDP) ── */
.mpt-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.mpt-whatsapp-float:hover { background: #1da851; box-shadow: 0 6px 20px rgba(0,0,0,0.22); color: #fff; }
.mpt-whatsapp-float svg { flex-shrink: 0; }
@media screen and (max-width: 749px) {
  .mpt-whatsapp-float span { display: none; }
  .mpt-whatsapp-float { padding: 12px; border-radius: 50%; }
}

/* WhatsApp link inside Returns tab */
.mpt-policy-whatsapp {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ece8e3;
  text-align: center;
}
.mpt-policy-whatsapp p { font-size: 13px; color: #5f5e5a; margin-bottom: 10px; }
.mpt-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.mpt-whatsapp-btn:hover { background: #1da851; color: #fff; }

/* Craft variation note (positive framing) */
.mpt-policy-craft-note {
  background: #f8f5f0;
  border-left: 3px solid #c9b99a;
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #4a4845;
  margin-bottom: 18px;
  font-style: italic;
}

/* ── Key Highlights feature strip ────────────────────────────────────────── */
/* .mpt-features spacing now set in PDP Scroll Sections block above */

.mpt-features-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a9490;
  margin: 0 0 14px;
}

.mpt-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mpt-feature-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f7f4f0;
  border: 1px solid #e2dbd3;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.3;
  flex: 0 1 auto;
  max-width: 100%;
}

.mpt-feature-chip--highlight {
  background: #fdf3e7;
  border-color: #e8c98a;
}

.mpt-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #8a7d72;
}

.mpt-feature-chip--highlight .mpt-feature-icon { color: #b8821a; }

.mpt-feature-label {
  font-weight: 600;
  color: #4a4845;
  white-space: nowrap;
}

.mpt-feature-value {
  color: #6b6460;
  word-break: break-word;
}

@media (max-width: 749px) {
  .mpt-feature-chip {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* Clickable action chip */
.mpt-feature-chip--action { cursor: pointer; }
.mpt-feature-chip--action:hover { border-color: #c9a876; background: #fdf3e7; }
.mpt-chip-action-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.mpt-feature-chip--action .mpt-feature-value { color: #b8821a; font-weight: 600; }

/* Bulk Order CTA moved to .mpb-bulk-* (maavni-pdp-buyone, buy zone) */

/* GI Certified chip */
.mpt-feature-chip--gi {
  background: #f0f7f0;
  border-color: #a8d5a2;
}
.mpt-feature-chip--gi .mpt-feature-icon { color: #3a8a3a; fill: #3a8a3a; }
.mpt-feature-chip--gi .mpt-feature-label { color: #2d6e2d; }
.mpt-feature-chip--gi .mpt-feature-value { color: #4a7a4a; }

/* Artisan attribution chip */
.mpt-feature-chip--artisan { background: #fdf8f2; border-color: #e8d5b8; }
.mpt-feature-chip--artisan .mpt-feature-icon { color: #9a7a5a; }
a.mpt-artisan-link {
  color: #7a5c35;
  text-decoration: underline;
  text-decoration-color: #c9a876;
  text-underline-offset: 2px;
  font-weight: 600;
}
a.mpt-artisan-link:hover { color: #5a3f20; }

/* ── Article author byline ────────────────────────────────────────────────── */
.mab-byline {
  margin: -8px 0 24px;
  padding: 10px 0 14px;
  border-bottom: 1px solid #ede9e3;
}
.mab-byline-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b6460;
  line-height: 1.4;
}
.mab-byline-by { color: #8a8480; }
.mab-byline-name { color: #3a3835; font-weight: 600; }
.mab-byline-sep { color: #c4bfba; }
.mab-byline-credential {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #3a8a3a;
  letter-spacing: 0.2px;
}
.mab-byline-credential svg { color: #3a8a3a; flex-shrink: 0; }

/* ── Out of Stock badge on product cards ── */
.product-card { position: relative; }
.mpc-oos-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  pointer-events: none;
}

/* ── Product card "Customisable" badge ── */
.product-card__badge--customisable {
  display: inline-block;
  background: #f0e8dc;
  color: #7a4928;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.2px;
  margin-top: 4px;
}

/* ── Newsletter signup bar (above footer, Sprint 3 AC-18) ── */
.maavni-nl {
  background: #1e1108;
  color: #f5ece3;
  padding: 40px 0;
  border-top: 1px solid #3a2210;
}
.maavni-nl-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.maavni-nl-copy {
  flex: 1 1 260px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.maavni-nl-icon {
  flex-shrink: 0;
  color: #c4a882;
  margin-top: 2px;
}
.maavni-nl-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: #f5ece3;
  line-height: 1.3;
}
.maavni-nl-sub {
  font-size: 0.82rem;
  margin: 0;
  color: #9a7e63;
  line-height: 1.5;
}
.maavni-nl-form { flex: 1 1 300px; }
.maavni-nl-fields {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.maavni-nl-input {
  flex: 1 1 200px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #4a3320;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #f5ece3;
  font-size: 0.875rem;
  outline-offset: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.maavni-nl-input::placeholder { color: #6a5040; }
.maavni-nl-input:focus { border-color: #c4a882; background: rgba(255,255,255,0.1); outline: 2px solid #c4a88240; }
.maavni-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 22px;
  background: #b06a30;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.maavni-nl-btn:hover { background: #9a5c28; }
.maavni-nl-btn:active { transform: scale(0.98); }
.maavni-nl-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #7ec87e;
  margin: 0;
  font-weight: 500;
}
.maavni-nl-error {
  color: #f08080;
  font-size: 0.8rem;
  margin: 8px 0 0;
}
@media (max-width: 600px) {
  .maavni-nl { padding: 28px 0; }
  .maavni-nl-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .maavni-nl-fields { flex-direction: column; }
  .maavni-nl-input { flex: 1 1 auto; width: 100%; }
  .maavni-nl-btn { width: 100%; justify-content: center; }
}

/* ── PDP "Watch the Craft" video embed (maavni-pdp-tabs section 4.5) ──────── */
.mpt-section--video .mpt-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mpt-section-icon {
  flex-shrink: 0;
  color: #b06a30;
}

/* 16:9 responsive wrapper for YouTube */
.mpt-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0f0f0f;
  margin-bottom: 10px;
}
.mpt-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Portrait wrapper for Instagram Reels (9:16) */
.mpt-video-wrap--reel {
  padding-bottom: 0;
  height: 560px;
  max-width: 320px;
}
.mpt-video-frame--reel {
  height: 100%;
}

.mpt-video-caption {
  font-size: 12px;
  color: #888780;
  margin: 0;
}

/* ── Collection hero video (maavni-collection-video) ────────────────────── */
.maavni-col-vid {
  margin: 20px auto 28px;
}

/* 16:9 responsive wrapper */
.maavni-col-vid-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #0f0f0f;
  margin-bottom: 8px;
}
.maavni-col-vid-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  object-fit: cover;
}

.maavni-col-vid-caption {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888780;
  margin: 0;
}
.maavni-col-vid-caption svg {
  flex-shrink: 0;
  color: #b06a30;
}

@media (max-width: 749px) {
  .mpt-video-wrap--reel { height: 420px; }
}
