/* =========================================================
   MZYA SHOPPING - CMS / HOMEPAGE BLOCKS
   File: public/themes/shop/mzya/css/mzya-cms.css

   Usage:
   - Backend > Settings > Themes > static_content blocks
   - Homepage custom sections
   - Future CMS landing pages

   Rule:
   - HTML goes in Bagisto theme static_content.
   - CSS stays here.
========================================================= */

/* =========================================================
   01. BRAND TOKENS
========================================================= */

:root {
    --mzya-blue: #2c5792;
    --mzya-blue-dark: #163b66;
    --mzya-blue-soft: #edf4fb;

    --mzya-clay: #b85827;
    --mzya-clay-soft: #fff3ec;

    --mzya-gold: #e4a224;
    --mzya-gold-soft: #fff6dc;

    --mzya-teal: #608c90;
    --mzya-teal-soft: #edf7f6;

    --mzya-ink: #102f53;
    --mzya-text: #26384d;
    --mzya-muted: #667085;

    --mzya-white: #ffffff;
    --mzya-bg: #faf8f3;
    --mzya-bg-soft: #fffaf3;
    --mzya-border: #e8edf4;

    --mzya-shadow-sm: 0 8px 18px rgba(22, 59, 102, 0.06);
    --mzya-shadow-md: 0 14px 32px rgba(22, 59, 102, 0.10);
    --mzya-shadow-lg: 0 22px 48px rgba(22, 59, 102, 0.14);

    --mzya-radius-sm: 14px;
    --mzya-radius-md: 20px;
    --mzya-radius-lg: 28px;

    --mzya-container: 1320px;
}

/* =========================================================
   02. SAFE GLOBAL HOMEPAGE HELPERS
========================================================= */

.mzya-home-section,
.mzya-home-section * {
    box-sizing: border-box;
}

.mzya-home-section {
    width: 100%;
    padding: 44px 16px;
    color: var(--mzya-text);
}

.mzya-home-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

.mzya-home-container {
    width: 100%;
    max-width: var(--mzya-container);
    margin: 0 auto;
}

.mzya-home-container.is-wide {
    max-width: 1440px;
}

.mzya-home-container.is-narrow {
    max-width: 1040px;
}

/* =========================================================
   02B. HOMEPAGE HERO GRID
========================================================= */

.mzya-hero-shell {
    padding: 0 0rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 1440px) {
    .container {
        max-width: 1440px !important;
    }
	.mzya-hero-shell {
		padding: 0 0rem;
	}
}

	/* =========================
	   Mzya Mobile Hero Slider Height Fix
	========================= */

	@media (max-width: 767px) {
		.hero-slider {
			height: auto !important;
			min-height: 0 !important;
			overflow: hidden !important;
		}

		.hero-slider img,
		.mzya-hero-carousel-image {
			width: 100% !important;
			height: auto !important;
			max-height: none !important;
			object-fit: cover !important;
			object-position: center top !important;
		}

		.hero-slider picture,
		.mzya-hero-carousel-picture {
			display: block;
			width: 100%;
		}
	}

.hero-banners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-banner {
    overflow: hidden;
    background: #fff;
}

.hero-banner a {
    display: block;
    height: 100%;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider > *,
.hero-slider > * > div,
.hero-slider > * > div > div:first-child,
.hero-slider > * > div > div:first-child > div {
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    aspect-ratio: auto !important;
}

.hero-slider .shimmer {
    height: 100% !important;
    aspect-ratio: auto !important;
}

.hero-slider .absolute.bottom-5 {
    display: none !important;
}

@media (min-width: 640px) {
    .hero-slider {
        height: 320px;
    }

    .hero-banner {
        height: 200px;
    }
}

@media (min-width: 768px) {
    .hero-grid {
        gap: 3px;
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .hero-grid--with-banners {
        grid-template-columns: 9fr 3fr;
    }

    .hero-grid--single {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 460px;
    }

    .hero-banners {
        height: 460px;
        gap: 3px;
    }

    .hero-banner {
        flex: 1;
        height: auto;
    }
}

/* =========================================================
   03. SHARED SECTION HEADER
========================================================= */

.mzya-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.mzya-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    color: #e4a224;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mzya-section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--mzya-gold);
}

.mzya-section-title,
.mzya-section-header h2 {
    margin: 0;
    color: var(--mzya-blue-dark);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
	text-transform: uppercase;
}

.mzya-section-subtitle {
    max-width: 1200px;
    margin: 8px 0 0;
    color: var(--mzya-muted);
    font-size: 15px;
    line-height: 1.7;
}

.mzya-section-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--mzya-blue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease, gap 0.2s ease;
    text-transform : uppercase !important;
}

.mzya-section-link:hover {
    gap: 11px;
    color: var(--mzya-clay);
    text-transform : uppercase !important;
}

/* =========================================================
   04. SHARED BUTTONS / BADGES
========================================================= */

.mzya-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mzya-btn:hover {
    transform: translateY(-1px);
}

.mzya-btn-primary {
    background: var(--mzya-blue);
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(44, 87, 146, 0.18);
}

.mzya-btn-primary:hover {
    background: var(--mzya-blue-dark);
}

.mzya-btn-clay {
    background: var(--mzya-clay);
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(184, 88, 39, 0.18);
}

.mzya-btn-light {
    background: #ffffff;
    color: var(--mzya-blue) !important;
    border: 1px solid rgba(44, 87, 146, 0.16);
}

.mzya-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--mzya-blue-soft);
    color: var(--mzya-blue);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

/* =========================================================
   05. TENDANCES DU MOMENT
   Large card: image on top, content below
   Small cards: image 100x100 with content beside it
========================================================= */

.mzya-trends-section {
    padding-top: 20px;
    padding-bottom: 10px;
}

.mzya-trends-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 16px;
}

.mzya-trend-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border: 1px solid var(--mzya-border);
    border-radius: var(--mzya-radius-md);
    background:
        radial-gradient(circle at 82% 18%, rgba(228, 162, 36, 0.22), transparent 34%),
        linear-gradient(135deg, #fff8f1 0%, #ffffff 48%, #eef6f6 100%);
    box-shadow: var(--mzya-shadow-sm);
    text-decoration: none !important;
    isolation: isolate;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.mzya-trend-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 87, 146, 0.24);
    box-shadow: var(--mzya-shadow-md);
}

.mzya-trend-card::before {
    display: none;
}

.mzya-trend-card::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -42px;
    z-index: -1;
    width: 156px;
    height: 156px;
    border-radius: 999px;
    background: rgba(44, 87, 146, 0.07);
}

.mzya-trend-thumb {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(22, 59, 102, 0.12);
}

.mzya-trend-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mzya-trend-content {
    position: relative;
    z-index: 4;
    max-width: 100%;
    padding: 28px 24px 24px 136px;
}

.mzya-trend-content span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--mzya-clay);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mzya-trend-content h3 {
    margin: 0 0 8px;
    color: var(--mzya-ink);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.18;
    text-transform: uppercase;
}

.mzya-trend-content p {
    margin: 0 0 18px;
    color: var(--mzya-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.mzya-trend-content strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 8px;
    background: var(--mzya-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

/* Main large card: image block on top, text block below */
.mzya-trend-card-large {
    display: flex;
    grid-row: span 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 460px;
    padding: 24px;
    background:
        radial-gradient(circle at 76% 18%, rgba(184, 88, 39, 0.20), transparent 36%),
        linear-gradient(135deg, #fff4e8 0%, #ffffff 48%, #eaf3f4 100%);
}

.mzya-trend-card-large .mzya-trend-thumb {
    position: relative;
    top: auto;
    left: auto;
    width: 260px;
    height: 260px;
    margin-bottom: 22px;
    border-radius: 28px;
    flex: 0 0 auto;
}

.mzya-trend-card-large .mzya-trend-content {
    width: 100%;
    padding: 0;
}

.mzya-trend-card-large .mzya-trend-content h3 {
    font-size: 31px;
    letter-spacing: -0.03em;
}

.mzya-trend-card-large .mzya-trend-content p {
    max-width: 390px;
}

/* Card color variations */
.mzya-trend-card:nth-child(2) {
    background:
        radial-gradient(circle at 82% 18%, rgba(96, 140, 144, 0.20), transparent 34%),
        linear-gradient(135deg, #fffaf3 0%, #ffffff 52%, #edf7f6 100%);
}

.mzya-trend-card:nth-child(3) {
    background:
        radial-gradient(circle at 82% 18%, rgba(44, 87, 146, 0.16), transparent 34%),
        linear-gradient(135deg, #f6f9ff 0%, #ffffff 52%, #fff7e7 100%);
}

.mzya-trend-card:nth-child(4) {
    background:
        radial-gradient(circle at 82% 18%, rgba(228, 162, 36, 0.24), transparent 34%),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f2fbf6 100%);
}

.mzya-trend-card:nth-child(5) {
    background:
        radial-gradient(circle at 82% 18%, rgba(184, 88, 39, 0.15), transparent 34%),
        linear-gradient(135deg, #fff6f1 0%, #ffffff 52%, #f7f2ff 100%);
}

/* Trends responsive */
@media (max-width: 991px) {
    .mzya-trends-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mzya-trend-card-large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 400px;
    }

    .mzya-trend-card-large .mzya-trend-thumb {
        width: 140px;
        height: 140px;
    }

    .mzya-trend-card-large .mzya-trend-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .mzya-trends-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mzya-trend-card,
    .mzya-trend-card-large {
        grid-column: auto;
        min-height: 170px;
        border-radius: 18px;
    }

    .mzya-trend-card {
        display: flex;
        align-items: center;
        padding: 14px;
    }

    .mzya-trend-thumb {
        position: relative;
        top: auto;
        left: auto;
        width: 78px;
        height: 78px;
        flex: 0 0 78px;
        border-radius: 18px;
    }

    .mzya-trend-content {
        padding: 0 0 0 14px;
    }

    .mzya-trend-card-large {
        min-height: 240px;
        padding: 16px;
    }

    .mzya-trend-card-large .mzya-trend-thumb {
        margin-bottom: 14px;
        border-radius: 22px;
    }

    .mzya-trend-card-large .mzya-trend-content {
        padding: 0;
    }

    .mzya-trend-content span {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .mzya-trend-content h3,
    .mzya-trend-card-large .mzya-trend-content h3 {
        margin-bottom: 6px;
        font-size: 18px;
    }

    .mzya-trend-content p {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.45;
    }

    .mzya-trend-content strong {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    html[dir="rtl"] .mzya-trend-card {
        flex-direction: row-reverse;
    }

    html[dir="rtl"] .mzya-trend-thumb {
        right: auto;
        left: auto;
    }

    html[dir="rtl"] .mzya-trend-content {
        padding-right: 14px;
        padding-left: 0;
        text-align: right;
    }

    html[dir="rtl"] .mzya-trend-card-large {
        align-items: flex-end;
    }

    html[dir="rtl"] .mzya-trend-card-large .mzya-trend-content {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Trends RTL */
html[dir="rtl"] .mzya-trend-card::after {
    right: auto;
    left: -32px;
}

html[dir="rtl"] .mzya-trend-thumb {
    right: 18px;
    left: auto;
}

html[dir="rtl"] .mzya-trend-content {
    direction: rtl;
    padding-right: 136px;
    padding-left: 24px;
    text-align: right;
}

html[dir="rtl"] .mzya-trend-card-large {
    align-items: flex-end;
}

html[dir="rtl"] .mzya-trend-card-large .mzya-trend-thumb {
    right: auto;
    left: auto;
}

html[dir="rtl"] .mzya-trend-card-large .mzya-trend-content {
    padding-right: 0;
    padding-left: 0;
}

@media (max-width: 640px) {
    html[dir="rtl"] .mzya-trend-thumb {
        right: 14px;
        left: auto;
    }

    html[dir="rtl"] .mzya-trend-content {
        padding-right: 104px;
        padding-left: 18px;
    }

    html[dir="rtl"] .mzya-trend-card-large .mzya-trend-content {
        padding-right: 0;
        padding-left: 0;
    }
}
/* =========================================================
   06. FUTURE HOMEPAGE GRID HELPERS
   Use these for next static_content sections.
========================================================= */

.mzya-card-grid {
    display: grid;
    gap: 16px;
}

.mzya-card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mzya-card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mzya-card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mzya-card-grid.cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mzya-soft-card {
    overflow: hidden;
    border: 1px solid var(--mzya-border);
    border-radius: var(--mzya-radius-md);
    background: #ffffff;
    box-shadow: var(--mzya-shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mzya-soft-card:hover {
    transform: translateY(-3px);
    border-color: rgba(44, 87, 146, 0.22);
    box-shadow: var(--mzya-shadow-md);
}

.mzya-editorial-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--mzya-border);
    border-radius: var(--mzya-radius-md);
    background:
        radial-gradient(circle at 86% 20%, rgba(228, 162, 36, 0.20), transparent 32%),
        linear-gradient(135deg, #fff8f1 0%, #ffffff 48%, #eef6f6 100%);
    box-shadow: var(--mzya-shadow-sm);
}

.mzya-editorial-card h3 {
    margin: 0 0 8px;
    color: var(--mzya-ink);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.mzya-editorial-card p {
    max-width: 75%;
    margin: 0 0 18px;
    color: var(--mzya-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

/* =========================================================
   07. RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .mzya-card-grid.cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mzya-card-grid.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mzya-home-section {
        padding: 34px 14px;
    }

    .mzya-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .mzya-card-grid.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mzya-home-section {
        padding: 22px 12px;
    }

	.mzya-trends-section {
        padding-top: 24px;
        padding-bottom: 22px;
    }
	
	.mzya-product-section,
    .mzya-product-section--promotion-flash,
    .mzya-seller-section,
    .mzya-seller-cta-section {
        padding-top: 24px;
        padding-bottom: 28px;
    }
	
    .mzya-section-title,
    .mzya-section-header h2 {
        font-size: 24px;
		text-transform: uppercase;
    }

    .mzya-section-subtitle {
        font-size: 14px;
    }

    .mzya-section-link {
        font-size: 13px;
    }

    .mzya-card-grid.cols-2,
    .mzya-card-grid.cols-3,
    .mzya-card-grid.cols-4,
    .mzya-card-grid.cols-5 {
        grid-template-columns: 1fr;
    }

    .mzya-editorial-card p {
        max-width: 100%;
    }
}
/* =========================================================
   08. RTL SUPPORT
========================================================= */

html[dir="rtl"] .mzya-section-header {
    direction: rtl;
}

html[dir="rtl"] .mzya-section-link {
    flex-direction: row-reverse;
}
/* =========================================================
   PROMOTIONS FLASH INTRO
========================================================= */

.mzya-deals-intro-section {
    padding-top: 34px;
    padding-bottom: 14px;
    background:
        linear-gradient(180deg, rgba(250, 248, 243, 0) 0%, rgba(250, 248, 243, 0.65) 100%);
}

.mzya-deals-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(228, 162, 36, 0.32);
    border-radius: var(--mzya-radius-md);
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 58%, #f2f7fb 100%);
    box-shadow: var(--mzya-shadow-sm);
}

.mzya-deals-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mzya-deals-alert > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    background: var(--mzya-gold-soft);
    color: var(--mzya-clay);
    font-size: 19px;
}

.mzya-deals-alert strong {
    display: block;
    color: var(--mzya-blue-dark);
    font-size: 15px;
    font-weight: 500;
}

.mzya-deals-alert small {
    display: block;
    margin-top: 2px;
    color: var(--mzya-muted);
    font-size: 13px;
    line-height: 1.45;
    text-transform: uppercase;
}

.mzya-deals-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--mzya-blue);
    color: #ffffff;
    white-space: nowrap;
}

.mzya-deals-timer span {
    font-size: 12px;
    font-weight: 550;
    opacity: 0.9;
}

.mzya-deals-timer strong {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .mzya-deals-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mzya-deals-alert {
        align-items: flex-start;
    }
}

/* =========================================================
   MZYA PRODUCT SECTION
   Custom theme type: mzya_product_section
========================================================= */

/* =========================================================
   MZYA PRODUCT SECTION
   Custom theme type: mzya_product_section
========================================================= */

.mzya-product-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mzya-product-section--promotion-flash {
    padding-top: 15px;
    padding-bottom: 25px;
    background: #ffffff;
}

/* Default / non-promotion product section topbar */
.mzya-product-section-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 22px;
    padding: 14px 16px;
    border: 1px solid rgba(228, 162, 36, 0.32);
    border-radius: var(--mzya-radius-md);
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 58%, #f2f7fb 100%);
    box-shadow: var(--mzya-shadow-sm);
}

.mzya-product-section-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mzya-product-section-alert > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    background: var(--mzya-gold-soft);
    color: var(--mzya-clay);
}

.mzya-product-section-alert > span svg {
    width: 18px;
    height: 18px;
    display: block;
}

.mzya-product-section-alert strong {
    display: block;
    color: var(--mzya-blue-dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.mzya-product-section-alert small {
    display: block;
    margin-top: 2px;
    color: var(--mzya-muted);
    font-size: 13px;
    line-height: 1.45;
}

.mzya-product-section-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--mzya-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
}

/* =========================================================
   PROMOTION FLASH COMPACT HEADER
========================================================= */

.mzya-flash-compact-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    grid-template-areas:
        "icon copy link"
        "icon bottom bottom";
    align-items: center;
    gap: 6px 18px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background:
        radial-gradient(circle at 2% 0%, rgba(228, 162, 36, 0.12), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fffdf8 52%, #ffffff 100%);
    box-shadow: 0 14px 34px rgba(22, 59, 102, 0.06);
}

.mzya-flash-compact-icon {
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 4px solid rgba(228, 162, 36, 0.16);
    border-radius: 999px;
    background: #fffaf0;
    color: var(--mzya-gold);
}

.mzya-flash-compact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.mzya-flash-compact-copy {
    grid-area: copy;
    min-width: 0;
}

.mzya-flash-compact-copy h2 {
    margin: 0;
    color: var(--mzya-blue-dark);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.045em;
	text-transform: uppercase;
}

.mzya-flash-compact-copy p {
    max-width: 680px;
    margin: 6px 0 0;
    color: var(--mzya-text);
    font-size: 15px;
    line-height: 1.45;
}

.mzya-flash-compact-link {
    grid-area: link;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--mzya-blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s ease, gap 0.2s ease;
    text-transform: uppercase;
}

.mzya-flash-compact-link:hover {
    gap: 11px;
    color: var(--mzya-clay);
}

.mzya-flash-compact-bottom {
    grid-area: bottom;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding-top: 4px;
}

.mzya-flash-compact-bottom strong {
    flex: 0 0 auto;
    color: var(--mzya-blue-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
}

.mzya-flash-compact-separator {
    display: inline-block;
    width: 1px;
    height: 24px;
    flex: 0 0 1px;
    background: rgba(228, 162, 36, 0.35);
}

.mzya-flash-compact-bottom small {
    min-width: 0;
    color: var(--mzya-text);
    font-size: 14px;
    line-height: 1.4;
}

.mzya-flash-compact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin-inline-start: auto;
    padding: 0 14px;
    border: 1px solid rgba(228, 162, 36, 0.26);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.95);
    color: var(--mzya-clay);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
}

.mzya-flash-compact-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--mzya-gold);
}

/* Remove extra spacing caused by Bagisto carousel inside custom section */
.mzya-product-section-carousel > .container {
    max-width: 100% !important;
    padding-inline: 0 !important;
    margin-top: 0 !important;
}

.mzya-product-section-carousel .container {
    max-width: 100% !important;
}

/* Make default Bagisto carousel feel closer to Mzya homepage */
.mzya-product-section-carousel .mt-20 {
    margin-top: 0 !important;
}

.mzya-product-section-carousel h2,
.mzya-product-section-carousel h3 {
    display: none;
}

/* Product section carousel/grid normalization */
.mzya-product-section-carousel .mzya-product-card {
    width: 100% !important;
    min-width: 0 !important;
    height: 100%;
}

.mzya-product-section-carousel .scrollbar-hide {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-behavior: auto !important;
    padding-bottom: 0 !important;
}

.mzya-product-section-carousel .scrollbar-hide > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: initial !important;
}

/* Swiper fallback if section uses Swiper instead of scrollbar-hide */
@media (min-width: 1024px) {
    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 25% !important;
        max-width: 25% !important;
        box-sizing: border-box;
        padding-inline: 8px;
    }

    .mzya-product-section-carousel .swiper-wrapper {
        align-items: stretch;
    }
}

/* Hide arrows inside Mzya product sections after converting carousel to grid */
.mzya-product-section-carousel .icon-arrow-left-stylish,
.mzya-product-section-carousel .icon-arrow-right-stylish,
.mzya-product-section-carousel .rtl\:icon-arrow-right-stylish,
.mzya-product-section-carousel .rtl\:icon-arrow-left-stylish {
    display: none !important;
}

/* RTL */
html[dir="rtl"] .mzya-product-card {
    direction: rtl;
}

html[dir="rtl"] .mzya-product-card__title-row,
html[dir="rtl"] .mzya-product-card__name,
html[dir="rtl"] .mzya-product-card__price {
    text-align: right;
}

/* RTL - Promotion flash compact header */
html[dir="rtl"] .mzya-flash-compact-head {
    direction: rtl;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    grid-template-areas:
        "icon copy link"
        "icon bottom bottom";
}

html[dir="rtl"] .mzya-flash-compact-copy {
    text-align: right;
}

html[dir="rtl"] .mzya-flash-compact-link {
    justify-self: end;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

html[dir="rtl"] .mzya-flash-compact-bottom {
    direction: rtl;
    justify-content: flex-start;
    text-align: right;
}

html[dir="rtl"] .mzya-flash-compact-badge {
    margin-inline-start: auto;
    margin-inline-end: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .mzya-product-card__image,
    .mzya-product-card__media img {
        height: 230px;
    }

    .mzya-product-section-carousel .scrollbar-hide {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        box-sizing: border-box;
        padding-inline: 6px;
    }
}

@media (max-width: 760px) {
    .mzya-product-section {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .mzya-product-section-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mzya-product-section-alert {
        align-items: flex-start;
    }

    .mzya-flash-compact-head,
    html[dir="rtl"] .mzya-flash-compact-head {
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-areas:
            "icon copy"
            "link link"
            "bottom bottom";
        gap: 10px 12px;
        padding: 16px;
        border-radius: 18px;
    }

    .mzya-flash-compact-icon {
        width: 42px;
        height: 42px;
        border-width: 3px;
    }

    .mzya-flash-compact-icon svg {
        width: 19px;
        height: 19px;
    }

    .mzya-flash-compact-copy h2 {
        font-size: 25px;
		text-transform: uppercase;
    }

    .mzya-flash-compact-copy p {
        font-size: 13px;
        line-height: 1.45;
    }

    .mzya-flash-compact-link {
        justify-content: flex-start;
        font-size: 13px;
    }

    .mzya-flash-compact-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 2px;
    }

    .mzya-flash-compact-separator {
        display: none;
    }

    .mzya-flash-compact-bottom small {
        font-size: 12.5px;
    }

    .mzya-flash-compact-badge {
        margin-inline-start: 0;
        margin-inline-end: 0;
    }

    .mzya-product-card {
        border-radius: 8px;
    }

    .mzya-product-card__media {
        margin: 9px;
        border-radius: 8px;
    }

    .mzya-product-card__image,
    .mzya-product-card__media img {
        height: 185px;
    }

    .mzya-product-section-carousel .scrollbar-hide {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 50% !important;
        max-width: 50% !important;
        box-sizing: border-box;
        padding-inline: 5px;
    }
}
/* =========================================================
   SELLER CAROUSEL / BOUTIQUES EN VEDETTE
   Compact trust cards aligned with /stores directory
========================================================= */

.mzya-seller-section {
    padding-top: 42px;
    padding-bottom: 46px;
}

.mzya-seller-section .mzya-section-subtitle {
    max-width: 720px;
}

.mzya-seller-empty {
    padding: 22px;
    border: 1px solid var(--mzya-border, #e8edf4);
    border-radius: var(--mzya-radius-md, 20px);
    background: #ffffff;
    color: var(--mzya-muted, #667085);
    font-size: 14px;
    box-shadow: var(--mzya-shadow-sm, 0 8px 18px rgba(22, 59, 102, 0.06));
}

.mzya-seller-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mzya-seller-card,
.mzya-seller-card * {
    box-sizing: border-box;
}

.mzya-seller-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.96);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.mzya-seller-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 87, 146, 0.22);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
}

.mzya-seller-card.is-featured {
    border-color: rgba(228, 162, 36, 0.62);
    box-shadow: 0 18px 36px rgba(228, 162, 36, 0.12);
}

.mzya-seller-card-link {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    color: inherit;
    text-decoration: none !important;
}

.mzya-seller-cover {
    position: relative;
    height: 124px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(135deg, rgba(44, 87, 146, 0.10), rgba(184, 88, 39, 0.11));
}

.mzya-seller-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.10));
    pointer-events: none;
}

.mzya-seller-cover-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mzya-seller-card:hover .mzya-seller-cover-image {
    transform: scale(1.045);
}

.mzya-seller-cover-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--mzya-blue, #2c5792);
    font-size: 28px;
    font-weight: 500;
}

.mzya-seller-cover-badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 0;
    z-index: 3;
    display: inline-flex;
    max-width: calc(100% - 18px);
    height: 34px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    overflow: hidden;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(135deg, #608c90 0%, #2c5792 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(44, 87, 146, 0.18);
}

html[dir="rtl"] .mzya-seller-cover-badge {
    border-radius: 999px 0 0 999px;
}

.mzya-seller-card.is-featured .mzya-seller-cover-badge {
    background: linear-gradient(135deg, #e4a224 0%, #f59e0b 100%);
    box-shadow: 0 10px 20px rgba(228, 162, 36, 0.24);
}

.mzya-seller-card.is-verified .mzya-seller-cover-badge {
    background: linear-gradient(135deg, #168a5b 0%, #0d9488 100%);
    box-shadow: 0 10px 20px rgba(22, 138, 91, 0.20);
}

.mzya-seller-badge-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
}

.mzya-seller-badge-icon svg {
    width: 13px;
    height: 13px;
}

.mzya-seller-cover-badge > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mzya-seller-body {
    position: relative;
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: 0 18px 18px;
}

.mzya-seller-logo {
    position: relative;
    z-index: 4;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    margin-top: -36px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.mzya-seller-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mzya-seller-logo span {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--mzya-blue, #2c5792);
    font-size: 24px;
    font-weight: 500;
}

.mzya-seller-title-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
}

.mzya-seller-title-row h3 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--mzya-ink, #111827);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.mzya-seller-verified {
    display: inline-flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #0d9488;
}

.mzya-seller-verified svg {
    width: 16px;
    height: 16px;
}

.mzya-seller-category {
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--mzya-blue, #2c5792);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mzya-seller-description {
    display: -webkit-box;
    min-height: 42px;
    margin: 12px 0 0;
    overflow: hidden;
    color: #475569;
    font-size: 13.5px;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mzya-seller-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.mzya-seller-trust-pill {
    display: inline-flex;
    min-width: 0;
    max-width: 100%;
    min-height: 27px;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mzya-seller-trust-pill i {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 999px;
    background: currentColor;
}

.mzya-seller-trust-pill.is-club {
    background: #fff7ed;
    color: #9a3412;
}

.mzya-seller-trust-pill.is-shipping {
    background: #eff6ff;
    color: #1d4ed8;
}

.mzya-seller-trust-pill.is-policy {
    background: #ecfdf5;
    color: #047857;
}

.mzya-seller-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    color: #475569;
    font-size: 12.5px;
}

.mzya-seller-meta-line span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

.mzya-seller-meta-line svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

.mzya-seller-footer {
    margin-top: auto;
    padding-top: 18px;
}

.mzya-seller-cta {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(44, 87, 146, 0.14);
    transition:
        background 0.22s ease,
        transform 0.22s ease;
}

.mzya-seller-card:hover .mzya-seller-cta {
    background: var(--mzya-blue-dark, #163b66);
}

.mzya-seller-card.is-featured .mzya-seller-cta {
    background: var(--mzya-gold, #e4a224);
    box-shadow: 0 10px 18px rgba(228, 162, 36, 0.18);
}

.mzya-seller-card.is-featured:hover .mzya-seller-cta {
    background: #c78112;
}

@media (max-width: 1100px) {
    .mzya-seller-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mzya-seller-section {
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .mzya-seller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mzya-seller-cover {
        height: 92px;
    }

    .mzya-seller-cover-badge {
        top: 9px;
        height: 29px;
        max-width: calc(100% - 12px);
        padding: 0 10px;
        font-size: 10px;
    }

    .mzya-seller-badge-icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .mzya-seller-body {
        padding: 0 11px 12px;
    }

    .mzya-seller-logo {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        margin-top: -29px;
        margin-bottom: 9px;
        border-width: 4px;
    }

    .mzya-seller-title-row h3 {
        font-size: 13px;
    }

    .mzya-seller-category {
        font-size: 10.5px;
    }

    .mzya-seller-description {
        min-height: 36px;
        margin-top: 9px;
        font-size: 11.5px;
        line-height: 1.45;
    }

    .mzya-seller-trust-row {
        gap: 5px;
        margin-top: 10px;
    }

    .mzya-seller-trust-pill {
        min-height: 24px;
        padding: 0 7px;
        font-size: 10px;
    }

    .mzya-seller-meta-line {
        gap: 8px;
        margin-top: 11px;
        font-size: 10.5px;
    }

    .mzya-seller-meta-line svg {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
    }

    .mzya-seller-footer {
        padding-top: 12px;
    }

    .mzya-seller-cta {
        min-height: 36px;
        border-radius: 8px;
        font-size: 11.5px;
    }
}

@media (max-width: 420px) {
    .mzya-seller-grid {
        gap: 10px;
    }

    .mzya-seller-description {
        -webkit-line-clamp: 2;
    }

    .mzya-seller-trust-row .mzya-seller-trust-pill:nth-child(n+2) {
        display: none;
    }
}


/* =========================================================
   MZYA SHARED PRODUCT CARD ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â COMPACT FINAL
   Used by: search, category, homepage carousel, seller storefront

   UX decisions:
   - Seller/boutique line is overlaid on image bottom to save vertical space.
   - Rating is compact beside the product title.
   - No-rating state is a quiet grey star only.
   - Price is compact and keeps discount on one line with one currency.
========================================================= */

.mzya-product-card,
.mzya-product-card * {
    box-sizing: border-box;
}

.mzya-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(232, 237, 244, 0.96);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 59, 102, 0.08);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.mzya-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 87, 146, 0.22);
    box-shadow: 0 20px 46px rgba(22, 59, 102, 0.15);
}

/* Image */
.mzya-product-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 75% 18%, rgba(228, 162, 36, 0.12), transparent 34%),
        linear-gradient(135deg, #fffaf3 0%, #f7f8fb 100%);
}

.mzya-product-card__image-link,
.mzya-product-card__media a {
    display: block;
}

.mzya-product-card__image,
.mzya-product-card__media img {
    width: 100%;
    background: transparent;
    transition: transform 0.45s ease;
    object-fit: contain;
}

.mzya-product-card:hover .mzya-product-card__image,
.mzya-product-card:hover .mzya-product-card__media img {
    transform: scale(1.035);
}

/* Badges */
.mzya-product-card__badges {
    position: absolute;
    top: 10px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

html[dir="ltr"] .mzya-product-card__badges {
    left: 10px;
}

html[dir="rtl"] .mzya-product-card__badges {
    right: 10px;
}

.mzya-product-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 7px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(22, 59, 102, 0.12);
    text-transform: uppercase;
}

.mzya-product-card__badge--sale {
    background: var(--mzya-clay, #b85827);
}

.mzya-product-card__badge--new {
    background: var(--mzya-gold, #e4a224);
    color: #ffffff;
}

.mzya-product-card__badge--stock {
    background: #717680;
}

/* Quick actions */
.mzya-product-card__actions {
    position: absolute;
    top: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

html[dir="ltr"] .mzya-product-card__actions {
    right: 10px;
}

html[dir="rtl"] .mzya-product-card__actions {
    left: 10px;
}

.mzya-product-card__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(232, 237, 244, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--mzya-ink, #102f53);
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(22, 59, 102, 0.14);
    backdrop-filter: blur(8px);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.mzya-product-card__icon-btn:hover,
.mzya-product-card__icon-btn.is-active {
    transform: translateY(-1px);
    border-color: rgba(44, 87, 146, 0.24);
    color: var(--mzya-blue, #2c5792);
    background: #ffffff;
}

/* Seller overlay on image */
.mzya-product-card__seller-overlay {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 30px;
    max-width: calc(100% - 20px);
    padding: 5px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--mzya-muted, #667085);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(22, 59, 102, 0.14);
    backdrop-filter: blur(8px);
}

.mzya-product-card__seller-svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: var(--mzya-clay, #b85827);
}

.mzya-product-card__seller-label {
    flex: 0 0 auto;
    color: var(--mzya-muted, #667085);
    white-space: nowrap;
}

.mzya-product-card__seller-link,
.mzya-product-card__seller-text {
    display: inline-block;
    min-width: 0;
    max-width: 120px;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.mzya-product-card__seller-link:hover {
    color: var(--mzya-blue, #2c5792);
}

.mzya-product-card__verified-svg {
    width: 24px;
    height: 24px;
}

/* Body */
.mzya-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 14px 14px;
    margin-top: 12px;
}

/* Title + compact rating */
.mzya-product-card__title-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 43px;
}

.mzya-product-card__name {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: var(--mzya-ink, #102f53);
    font-size: 15px;
    line-height: 1.42;
    text-decoration: none !important;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.mzya-product-card__name:hover {
    color: var(--mzya-blue, #2c5792);
}

.mzya-product-card__name span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mzya-product-card__rating-pill {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 20px;
    margin-top: 1px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff8e6;
    color: var(--mzya-muted, #667085);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.mzya-product-card__rating-star {
    color: #f59e0b;
    font-size: 13px;
    line-height: 1;
}

.mzya-product-card__rating-average {
    color: #f59e0b;
    font-weight: 500;
}

.mzya-product-card__rating-count {
    color: var(--mzya-muted, #667085);
    font-weight: 800;
}

.mzya-product-card__rating-pill.is-empty {
    min-width: 22px;
    padding: 0 5px;
    background: #f3f4f6;
}

.mzya-product-card__rating-pill.is-empty .mzya-product-card__rating-star {
    color: #b8c0cc;
}

/* Price */
.mzya-product-card__price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3px;
    color: var(--mzya-blue, #2c5792);
    line-height: 1.15;
}

.mzya-product-card__price-line {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 5px;
    color: var(--mzya-blue, #2c5792);
    white-space: nowrap;
}

html[dir="rtl"] .mzya-product-card__price-line {
    justify-content: flex-end;
}

.mzya-product-card__price-old {
    color: #717680;
    font-size: 13px;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.mzya-product-card__price-final {
    color: var(--mzya-blue, #2c5792);
    font-size: 20px;
    font-weight: 500;
}

.mzya-product-card__price-currency {
    color: var(--mzya-blue, #2c5792);
    font-size: 16px;
    font-weight: 550;
}

/* Legacy fallback if product.price_html appears in list/old contexts */
.mzya-product-card__price .regular-price,
.mzya-product-card__price .special-price,
.mzya-product-card__price .final-price,
.mzya-product-card__price .price,
.mzya-product-card__price [class*="price"] {
    color: var(--mzya-blue, #2c5792) !important;
    font-weight: 750 !important;
}

.mzya-product-card__price .old-price,
.mzya-product-card__price .line-through,
.mzya-product-card__price del,
.mzya-product-card__price s {
    color: #717680 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

/* CTA */
.mzya-product-card__cta-wrap {
    margin-top: 10px;
}

.mzya-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--mzya-blue, #2c5792);
    border-radius: 12px;
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(44, 87, 146, 0.24);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mzya-product-card__cta:hover {
    transform: translateY(-1px);
    background: var(--mzya-blue-dark, #163b66);
    border-color: var(--mzya-blue-dark, #163b66);
    box-shadow: 0 14px 28px rgba(44, 87, 146, 0.30);
}

.mzya-product-card__cta.is-configurable {
    background: #ffffff;
    color: var(--mzya-blue, #2c5792);
    box-shadow: none;
}

.mzya-product-card__cta.is-configurable:hover {
    background: var(--mzya-blue-soft, #edf4fb);
}

.mzya-product-card__cta:disabled,
.mzya-product-card__cta.is-disabled {
    cursor: not-allowed;
    border-color: #d0d5dd;
    background: #d0d5dd;
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.mzya-product-card__cta span[class^="icon-"],
.mzya-product-card__cta span[class*=" icon-"] {
    font-size: 20px;
}

/* List card safety */
.mzya-product-list-card {
    display: flex;
    gap: 16px;
    overflow: hidden;
    border: 1px solid rgba(232, 237, 244, 0.96);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--mzya-shadow-sm, 0 8px 18px rgba(22, 59, 102, 0.06));
}

.mzya-product-list-card__media {
    position: relative;
    width: 250px;
    min-width: 250px;
    overflow: hidden;
    background: #f7f8fb;
}

.mzya-product-list-card__image {
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.mzya-product-list-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

html[dir="rtl"] .mzya-product-list-card__badges {
    right: 12px;
    left: auto;
}

.mzya-product-list-card__body {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
}

.mzya-product-list-card__name {
    color: var(--mzya-ink, #102f53);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
}

.mzya-product-list-card__rating {
    min-height: 22px;
}

.mzya-product-list-card__price {
    min-height: auto;
}

.mzya-product-list-card__cta {
    max-width: 220px;
}

/* Product section carousel/grid normalization */
.mzya-product-section-carousel .mzya-product-card {
    width: 100% !important;
    min-width: 0 !important;
    height: 100%;
}

.mzya-product-section-carousel .scrollbar-hide {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-behavior: auto !important;
    padding-bottom: 0 !important;
}

.mzya-product-section-carousel .scrollbar-hide > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: initial !important;
}

/* Swiper fallback if section uses Swiper instead of scrollbar-hide */
@media (min-width: 1024px) {
    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 25% !important;
        max-width: 25% !important;
        box-sizing: border-box;
        padding-inline: 8px;
    }

    .mzya-product-section-carousel .swiper-wrapper {
        align-items: stretch;
    }
}

/* Hide arrows inside Mzya product sections after converting carousel to grid */
.mzya-product-section-carousel .icon-arrow-left-stylish,
.mzya-product-section-carousel .icon-arrow-right-stylish,
.mzya-product-section-carousel .rtl\:icon-arrow-right-stylish,
.mzya-product-section-carousel .rtl\:icon-arrow-left-stylish {
    display: none !important;
}

/* RTL */
html[dir="rtl"] .mzya-product-card {
    direction: rtl;
}

html[dir="rtl"] .mzya-product-card__title-row,
html[dir="rtl"] .mzya-product-card__name,
html[dir="rtl"] .mzya-product-card__price {
    text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
    .mzya-product-card__image,
    .mzya-product-card__media img {
        height: 230px;
    }

    .mzya-product-section-carousel .scrollbar-hide {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        box-sizing: border-box;
        padding-inline: 6px;
    }
}

@media (max-width: 640px) {
    .mzya-product-card {
        border-radius: 8px;
    }

    .mzya-product-card__media {
        margin: 9px;
        border-radius: 8px;
    }

    .mzya-product-card__image,
    .mzya-product-card__media img {
        height: 165px;
    }

    .mzya-product-card__media {
        margin: 7px;
    }

    .mzya-product-card__body {
        padding: 0 9px 10px;
    }

    .mzya-product-card__seller-overlay {
        right: 7px;
        bottom: 7px;
        left: 7px;
        min-height: 28px;
        padding: 4px 7px;
        font-size: 10px;
    }

    .mzya-product-card__seller-svg,
    .mzya-product-card__verified-svg {
		display: inline-block;
		fill: #e4a224;
		height: 24px;
		line-height: 24px;
		position: relative;
    }

    .mzya-product-card__seller-link,
    .mzya-product-card__seller-text {
        max-width: 86px;
        font-size: 10px;
    }

    .mzya-product-card__body {
        padding: 0 12px 12px;
    }

    .mzya-product-card__title-row {
        gap: 6px;
        min-height: 39px;
    }

    .mzya-product-card__name {
        font-size: 13px;
    }

    .mzya-product-card__rating-pill {
        min-height: 19px;
        padding: 0 5px;
        font-size: 10px;
    }

    .mzya-product-card__rating-star {
        font-size: 12px;
    }

    .mzya-product-card__price {
        min-height: 34px;
        margin-top: 5px;
    }

    .mzya-product-card__price-old {
        font-size: 11px;
    }

    .mzya-product-card__price-final {
        font-size: 16px;
    }

    .mzya-product-card__price-currency {
        font-size: 13px;
    }

    .mzya-product-card__cta {
        min-height: 42px;
        font-size: 0;
    }

    .mzya-product-card__cta span:last-child {
        display: none;
    }

    .mzya-product-card__cta span[class^="icon-"],
    .mzya-product-card__cta span[class*=" icon-"] {
        font-size: 21px;
    }

    .mzya-product-card__icon-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .mzya-product-section-carousel .scrollbar-hide {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .mzya-product-section-carousel .swiper-slide,
    .mzya-product-section-carousel [class*="swiper-slide"] {
        width: 50% !important;
        max-width: 50% !important;
        box-sizing: border-box;
        padding-inline: 5px;
    }

    .mzya-product-list-card {
        display: grid;
    }

    .mzya-product-list-card__media {
        width: 100%;
        min-width: 0;
    }

    .mzya-product-list-card__image {
        height: 190px;
    }
}
@media (max-width: 640px) {
    .mzya-flash-compact-head,
    html[dir="rtl"] .mzya-flash-compact-head {
        padding: 13px;
        gap: 8px 10px;
        border-radius: 16px;
    }

    .mzya-flash-compact-copy h2 {
        font-size: 22px;
        line-height: 1.12;
    }

    .mzya-flash-compact-copy p {
        font-size: 12px;
        line-height: 1.4;
    }

    .mzya-flash-compact-bottom strong {
        font-size: 13px;
    }

    .mzya-flash-compact-bottom small {
        font-size: 11.5px;
    }

    .mzya-flash-compact-badge {
        min-height: 28px;
        padding: 0 11px;
        font-size: 11px;
    }
}
/* Hide Bagisto default mobile "View all" link inside Mzya homepage product sections.
   We use our own styled .mzya-carousel-view-all button instead. */
.mzya-product-section-carousel .mzya-carousel-inline-view-all {
    display: none !important;
}

/* =========================================================
   MZYA CATEGORY CAROUSEL / UNIVERS MZYA
   Component: resources/views/vendor/shop/components/categories/carousel.blade.php
========================================================= */

.mzya-category-section {
    position: relative;
    width: 100%;
    padding: 28px 16px 22px;
}

.mzya-category-container {
    width: 100%;
    max-width: var(--mzya-container, 1240px);
    margin: 0 auto;
}

.mzya-category-shell {
    position: relative;
}

.mzya-category-rail {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 4px 16px;
    scroll-behavior: smooth;
    scroll-padding-inline: 8px;
}

.mzya-category-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.mzya-category-track.is-centered {
    justify-content: center;
}

.mzya-category-track.is-overflowing {
    width: max-content;
    justify-content: flex-start;
}

.mzya-category-card {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    width: 236px;
    min-height: 88px;
    overflow: hidden;
    padding: 10px 38px 10px 10px;
    border: 1px solid rgba(232, 237, 244, 0.98);
    border-radius: 999px;
    background:
        radial-gradient(circle at 88% 18%, rgba(228, 162, 36, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fffaf3 50%, #edf7f6 100%);
    box-shadow: 0 10px 24px rgba(22, 59, 102, 0.07);
    color: var(--mzya-ink, #102f53);
    text-decoration: none !important;
    isolation: isolate;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.mzya-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(44, 87, 146, 0.22);
    background:
        radial-gradient(circle at 88% 18%, rgba(228, 162, 36, 0.24), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fff6e8 48%, #eaf3f4 100%);
    box-shadow: 0 16px 34px rgba(22, 59, 102, 0.12);
}

.mzya-category-card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -42px;
    z-index: -1;
    width: 116px;
    height: 116px;
    border-radius: 999px;
    background: rgba(44, 87, 146, 0.07);
}

.mzya-category-card:nth-child(2n) {
    background:
        radial-gradient(circle at 88% 18%, rgba(96, 140, 144, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7fbfb 50%, #fff7e7 100%);
}

.mzya-category-card:nth-child(3n) {
    background:
        radial-gradient(circle at 88% 18%, rgba(184, 88, 39, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fff6f1 50%, #edf4fb 100%);
}

.mzya-category-visual {
    position: relative;
    display: flex;
    flex: 0 0 72px;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 4px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
        0 10px 22px rgba(22, 59, 102, 0.12),
        inset 0 0 0 1px rgba(44, 87, 146, 0.06);
}

.mzya-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mzya-category-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.mzya-category-name {
    display: -webkit-box;
    overflow: hidden;
    color: var(--mzya-blue-dark, #163b66);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-transform: uppercase;
}

.mzya-category-hint {
    display: inline-flex;
    margin-top: 4px;
    color: var(--mzya-clay, #b85827);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.mzya-category-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(44, 87, 146, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--mzya-blue, #2c5792);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mzya-category-card:hover .mzya-category-arrow {
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
    transform: translateY(-50%) translateX(2px);
}

.mzya-category-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 87, 146, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--mzya-blue, #2c5792);
    box-shadow: 0 12px 28px rgba(22, 59, 102, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.mzya-category-nav:hover {
    border-color: rgba(44, 87, 146, 0.28);
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
}

.mzya-category-nav-prev {
    left: -10px;
}

.mzya-category-nav-next {
    right: -10px;
}

.mzya-category-nav span {
    font-size: 20px;
}

/* Tablet */
@media (max-width: 1100px) {
    .mzya-category-section {
        padding-inline: 14px;
    }

    .mzya-category-card {
        width: 220px;
        min-height: 82px;
    }

    .mzya-category-visual {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }
}

/* Mobile: compact horizontal rail */
@media (max-width: 760px) {
    .mzya-category-section {
        padding: 20px 12px 16px;
    }

    .mzya-category-rail {
        padding: 8px 0 14px;
    }

    .mzya-category-track {
        gap: 5px;
    }

    .mzya-category-track.is-centered {
        justify-content: flex-start;
    }

    .mzya-category-card {
        width: 174px;
        min-height: 68px;
        gap: 3px;
        padding: 8px 15px 8px 8px;
        border-radius: 999px;
    }

    .mzya-category-visual {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-width: 3px;
    }

    .mzya-category-name {
        font-size: 12px;
        line-height: 1.18;
    }

    .mzya-category-hint {
        display: none;
    }

    .mzya-category-arrow {
        right: 8px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .mzya-category-nav {
        display: none !important;
    }
}

/* Very small mobile */
@media (max-width: 420px) {
    .mzya-category-card {
        width: 163px;
    }

    .mzya-category-name {
        font-size: 11px;
    }
}

/* RTL */
html[dir="rtl"] .mzya-category-track {
    direction: rtl;
}

html[dir="rtl"] .mzya-category-card {
    padding: 10px 10px 10px 38px;
}

html[dir="rtl"] .mzya-category-card::after {
    right: auto;
    left: -28px;
}

html[dir="rtl"] .mzya-category-arrow {
    right: auto;
    left: 12px;
    transform: translateY(-50%) rotate(180deg);
}

html[dir="rtl"] .mzya-category-card:hover .mzya-category-arrow {
    transform: translateY(-50%) translateX(-2px) rotate(180deg);
}

html[dir="rtl"] .mzya-category-nav-prev {
    right: -10px;
    left: auto;
}

html[dir="rtl"] .mzya-category-nav-next {
    right: auto;
    left: -10px;
}

@media (max-width: 760px) {
    html[dir="rtl"] .mzya-category-card {
        padding: 8px 8px 8px 30px;
    }

    html[dir="rtl"] .mzya-category-arrow {
        left: 8px;
    }
}
/* =========================
   Mzya Desktop Header Topbar
========================= */

.mzya-desktop-header .mzya-header-topbar {
    background-color: #c0cdcf47;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.mzya-desktop-header .mzya-header-topbar .mzya-header-container {
    display: grid !important;
    grid-template-columns: minmax(330px, 1fr) auto minmax(330px, 1fr);
    align-items: center !important;
    gap: 18px !important;
    height: 42px;
    min-height: 42px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mzya-desktop-header .mzya-topbar-links,
.mzya-desktop-header .mzya-topbar-actions {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    min-width: 0;
    white-space: nowrap !important;
}

.mzya-desktop-header .mzya-topbar-links {
    justify-content: flex-start !important;
}

.mzya-desktop-header .mzya-topbar-actions {
    justify-content: flex-end !important;
}

.mzya-desktop-header .mzya-topbar-announcement {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0;
    max-width: 100%;
    color: #b85827;
    font-size: 13px;
    font-weight: 500;
    line-height: 1 !important;
    letter-spacing: .01em;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mzya-desktop-header .mzya-topbar-link,
.mzya-desktop-header .mzya-topbar-dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    width: auto !important;
    max-width: max-content !important;
    height: 30px !important;
    padding: 5px 8px !important;
    border-radius: 999px;
    color: #465365;
    font-size: 13px;
    font-weight: 500;
    line-height: 1 !important;
    white-space: nowrap !important;
    transition:
        color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.mzya-desktop-header .mzya-topbar-link:hover,
.mzya-desktop-header .mzya-topbar-dropdown-toggle:hover {
    color: #2c5792;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
    transform: translateY(-1px);
}

.mzya-desktop-header .mzya-topbar-link > span:not(.mzya-topbar-icon),
.mzya-desktop-header .mzya-topbar-dropdown-toggle > span:not(.mzya-topbar-icon):not(.mzya-chevron),
.mzya-desktop-header .mzya-topbar-announcement > span:not(.mzya-topbar-icon) {
    display: inline-block !important;
    width: auto !important;
    min-width: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.mzya-desktop-header .mzya-topbar-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    height: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    flex: 0 0 17px !important;
    overflow: hidden !important;
    color: #608c90;
    line-height: 1 !important;
}

.mzya-desktop-header .mzya-topbar-icon svg {
    display: block !important;
    width: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    height: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    flex: 0 0 17px !important;
}

.mzya-desktop-header .mzya-announcement-icon {
    color: #b85827;
    margin-inline-end: 4px;
}

.mzya-desktop-header .mzya-seller-space .mzya-topbar-icon {
    color: #608c90;
}

.mzya-desktop-header .mzya-topbar-divider {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: rgba(15, 23, 42, .16);
}

.mzya-desktop-header .mzya-chevron {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 13px !important;
    min-width: 13px !important;
    max-width: 13px !important;
    height: 13px !important;
    min-height: 13px !important;
    max-height: 13px !important;
    flex: 0 0 13px !important;
    color: currentColor;
    opacity: .75;
}

.mzya-desktop-header .mzya-chevron svg {
    display: block !important;
    width: 13px !important;
    height: 13px !important;
}

[dir="rtl"] .mzya-desktop-header .mzya-topbar-links,
[dir="rtl"] .mzya-desktop-header .mzya-topbar-actions {
    direction: rtl;
}
/* =========================
   Mzya Desktop Header Bottom
========================= */

.mzya-desktop-header,
.mzya-desktop-header * {
    -webkit-font-smoothing: antialiased;
}

.mzya-desktop-header .mzya-header-bottom {
    border-bottom: 1px solid rgba(15, 23, 42, .05);
}

.mzya-desktop-header .mzya-main-header-row {
    background-color: #ffffff;
}

.mzya-desktop-header .mzya-skyline {
    filter: saturate(.7);
    opacity: .42;
}

.mzya-desktop-header .mzya-header-logo img {
    width: 180px;
    height: auto;
    max-height: 92px;
    object-fit: contain;
}

.mzya-desktop-header .mzya-search-wrap {
    flex: 1 1 560px;
}

.mzya-desktop-header .mzya-search-form {
    height: 46px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.mzya-desktop-header .mzya-search-form:focus-within {
    border-color: rgba(44, 87, 146, .45);
    box-shadow: 0 12px 28px rgba(44, 87, 146, .13);
}

.mzya-desktop-header .mzya-search-input {
    color: #111827;
}

.mzya-desktop-header .mzya-search-input::placeholder {
    color: #9ca3af;
}

.mzya-desktop-header .mzya-search-button:hover {
    filter: brightness(1.04);
}

.mzya-desktop-header .mzya-header-actions {
    flex-shrink: 0;
}

.mzya-desktop-header .mzya-action-link {
    color: #3f3f46;
    font-weight: 500;
    transition: color .18s ease, transform .18s ease;
}

.mzya-desktop-header .mzya-action-link:hover {
    color: #1f3f6f;
}

.mzya-desktop-header .mzya-action-circle {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    border-radius: 9999px !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
    transition: transform .18s ease, box-shadow .18s ease;
}

.mzya-desktop-header .mzya-action-link:hover .mzya-action-circle,
.mzya-desktop-header .mzya-action-link:hover .icon-cart {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .16);
}

.mzya-desktop-header .mzya-action-circle span::before,
.mzya-desktop-header .mzya-action-circle .icon-compare::before,
.mzya-desktop-header .mzya-action-circle .icon-heart::before,
.mzya-desktop-header .mzya-action-circle .icon-users::before {
    color: #ffffff !important;
}

/* Navigation row */
.mzya-desktop-header .mzya-nav-shell {
    background: #c0cdcf;
}

.mzya-desktop-header .mzya-main-nav {
    gap: 2rem;
}

.mzya-desktop-header .mzya-nav-link {
    position: relative;
    color: #2c5792;
    font-weight: 500;
    padding: 10px 0;
    transition: color .18s ease;
        text-transform: uppercase;
}

.mzya-desktop-header .mzya-nav-link:hover {
    color: #b85827;
}

.mzya-desktop-header .mzya-nav-link::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: #2c5792;
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.mzya-desktop-header .mzya-nav-link:hover::after,
.mzya-desktop-header .mzya-nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Marketplace promise block */
.mzya-desktop-header .mzya-support-block {
    padding: 7px 10px;
    border-radius: 8px;
    background: rgb(255 255 255 / 53%);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.mzya-desktop-header .mzya-support-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    background: #ffffff;
    color: #2c5792;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .08);
}

.mzya-desktop-header .mzya-marketplace-promise {
    min-width: 230px;
}

.mzya-desktop-header .mzya-zellij-icon {
    overflow: hidden;
    background: #ffffff !important;
}

.mzya-desktop-header .mzya-zellij-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* Mini cart icon */
.mzya-desktop-header .mini-cart-wrapper .icon-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    border-radius: 9999px !important;
    background: linear-gradient(135deg, #2c5792 0%, #17447e 100%) !important;
    color: #ffffff !important;
    font-size: 1.18rem !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.mzya-desktop-header .mini-cart-wrapper .icon-cart::before {
    color: #ffffff !important;
}

/* Categories hamburger */
.mzya-desktop-header .cat-hamburger-wrap {
    position: relative;
    z-index: 90;
}

.mzya-desktop-header .cat-hamburger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #2c5792;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    /* box-shadow: 0 10px 22px rgba(44, 87, 146, .22); */
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.mzya-desktop-header .cat-hamburger-btn:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.mzya-desktop-header .cat-hamburger-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 0;
    border-bottom-left-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
    z-index: 100;
    padding: 6px 0;
}

.mzya-desktop-header .cat-hamburger-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background .15s;
}

.mzya-desktop-header .cat-hamburger-item > a:hover,
.mzya-desktop-header .cat-hamburger-item > a.active {
    background: #f5f5f5;
    color: rgb(44, 87, 146);
}

.mzya-desktop-header .cat-hamburger-sub {
    position: absolute;
    left: 100%;
    top: 0;
    min-height: 100%;
    min-width: 600px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: none;
    box-shadow: 18px 18px 42px rgba(15, 23, 42, .12);
    z-index: 110;
    padding: 20px;
}

.mzya-desktop-header .cat-sub-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    align-content: flex-start;
}

.mzya-desktop-header .cat-sub-col {
    flex: 0 0 auto;
    min-width: 145px;
}

.mzya-desktop-header .cat-sub-header {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    margin-bottom: 9px;
    text-decoration: none;
}

.mzya-desktop-header .cat-sub-header:hover {
    color: rgb(44, 87, 146);
}

.mzya-desktop-header .cat-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mzya-desktop-header .cat-sub-list li {
    margin-bottom: 4px;
}

.mzya-desktop-header .cat-sub-list li a {
    font-size: 12.5px;
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}

.mzya-desktop-header .cat-sub-list li a:hover {
    color: rgb(44, 87, 146);
}

/* RTL */
[dir="rtl"] .mzya-desktop-header .cat-hamburger-dropdown {
    left: auto;
    right: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 0;
}

[dir="rtl"] .mzya-desktop-header .cat-hamburger-sub {
    left: auto;
    right: 100%;
    border-left: 1px solid #e5e5e5;
    border-right: none;
    box-shadow: -18px 18px 42px rgba(15, 23, 42, .12);
}

[dir="rtl"] .mzya-desktop-header .cat-hamburger-item > a .icon-arrow-right {
    transform: rotate(180deg);
}


/* =========================================================
   MZYA SHOPPING - CMS ARTICLES / LEGAL PAGES / ABOUT PAGES
   Clean article CSS only
   Add this block at the END of mzya-cms.css
========================================================= */

/* ------------------------------
   ARTICLE BASE
------------------------------ */

.mzya-cms-page,
.mzya-cms-page * {
    box-sizing: border-box;
}

.mzya-cms-page {
    width: 100%;
    color: var(--mzya-text, #26384d);
    font-family: inherit;
}

.mzya-cms-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.mzya-cms-section {
    margin-bottom: 34px;
}

.mzya-cms-section:last-child {
    margin-bottom: 0;
}

/* ------------------------------
   HERO
------------------------------ */

.mzya-cms-hero {
    overflow: hidden;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(228, 162, 36, 0.26);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 18%, rgba(228, 162, 36, 0.16), transparent 30%),
        radial-gradient(circle at 90% 16%, rgba(96, 140, 144, 0.14), transparent 28%),
        linear-gradient(135deg, #fffaf3 0%, #ffffff 55%, #f2f8f8 100%);
    box-shadow: 0 22px 54px rgba(22, 59, 102, 0.10);
}

.mzya-cms-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
}

.mzya-cms-hero-copy {
    min-width: 0;
}

.mzya-cms-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 16px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--mzya-gold-soft, #fff6dc);
    color: var(--mzya-clay, #b85827);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.mzya-cms-hero-title {
    max-width: 780px;
    margin: 0;
    color: var(--mzya-ink, #102f53);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.mzya-cms-subtitle {
    max-width: 800px;
    margin: 18px 0 0;
    color: var(--mzya-muted, #667085);
    font-size: clamp(16px, 1.25vw, 20px);
    font-weight: 500;
    line-height: 1.85;
    text-transform: uppercase;
}

.mzya-cms-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 24px;
}

.mzya-cms-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mzya-blue-dark, #163b66);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.mzya-cms-proof-dot {
    width: 10px;
    height: 10px;
    border: 3px solid var(--mzya-blue, #2c5792);
    border-radius: 50%;
    background: #ffffff;
}

/* ------------------------------
   HERO VISUAL CARD
------------------------------ */

.mzya-cms-hero-art {
    display: flex;
    justify-content: center;
}

.mzya-cms-final {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(228, 162, 36, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.52), transparent 28%),
        linear-gradient(135deg, var(--mzya-gold, #e4a224) 0%, #f59a09 100%);
    color: #ffffff;
    box-shadow: 0 24px 46px rgba(228, 162, 36, 0.24);
}

.mzya-cms-final h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
	text-transform: uppercase;
}

.mzya-cms-final p {
    max-width: 680px;
    margin: 0 auto 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.mzya-cms-final p:last-child {
    margin-bottom: 0;
}

/* ------------------------------
   ICONS
------------------------------ */

.mzya-cms-hero-icon,
.mzya-cms-feature-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 72% 18%, rgba(228, 162, 36, 0.18), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    color: var(--mzya-blue, #2c5792);
    box-shadow:
        inset 0 0 0 1px rgba(44, 87, 146, 0.10),
        0 14px 30px rgba(22, 59, 102, 0.10);
}

.mzya-cms-feature-ico {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    border-radius: 50%;
}

.mzya-cms-hero-icon::before,
.mzya-cms-feature-ico::before {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.mzya-icon-shield::before,
.mzya-icon-store::before,
.mzya-icon-eye::before,
.mzya-icon-settings::before,
.mzya-icon-cart::before {
    content: "";
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    background: currentColor;
    vertical-align: -0.15em;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.mzya-icon-shield::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 5v6c0 4.55 2.91 8.66 7 10 4.09-1.34 7-5.45 7-10V5l-7-3Zm0 2.2 5 2.14V11c0 3.35-1.93 6.43-5 7.72C8.93 17.43 7 14.35 7 11V6.34l5-2.14Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 5v6c0 4.55 2.91 8.66 7 10 4.09-1.34 7-5.45 7-10V5l-7-3Zm0 2.2 5 2.14V11c0 3.35-1.93 6.43-5 7.72C8.93 17.43 7 14.35 7 11V6.34l5-2.14Z'/%3E%3C/svg%3E");
}

.mzya-icon-store::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16l1 5v2a3 3 0 0 1-5 2.24A3 3 0 0 1 12 13a3 3 0 0 1-4 0 3 3 0 0 1-5-2.24V9l1-5Zm2 12h12v5H6v-5Zm2 2v1h8v-1H8Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16l1 5v2a3 3 0 0 1-5 2.24A3 3 0 0 1 12 13a3 3 0 0 1-4 0 3 3 0 0 1-5-2.24V9l1-5Zm2 12h12v5H6v-5Zm2 2v1h8v-1H8Z'/%3E%3C/svg%3E");
}

.mzya-icon-eye::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9 5.2 9 7s-3.5 7-9 7-9-5.2-9-7 3.5-7 9-7Zm0 2c-4.16 0-6.8 3.6-7 5 .2 1.4 2.84 5 7 5s6.8-3.6 7-5c-.2-1.4-2.84-5-7-5Zm0 2.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9 5.2 9 7s-3.5 7-9 7-9-5.2-9-7 3.5-7 9-7Zm0 2c-4.16 0-6.8 3.6-7 5 .2 1.4 2.84 5 7 5s6.8-3.6 7-5c-.2-1.4-2.84-5-7-5Zm0 2.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E");
}

.mzya-icon-settings::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.65.07-.98s-.02-.66-.07-.98l2.1-1.64-2-3.46-2.48 1a7.1 7.1 0 0 0-1.7-.98L15 3h-4l-.35 2.94c-.61.24-1.18.56-1.7.98l-2.48-1-2 3.46 2.1 1.64c-.04.32-.07.65-.07.98s.02.66.07.98l-2.1 1.64 2 3.46 2.48-1c.52.4 1.09.73 1.7.98L11 21h4l.35-2.94c.61-.24 1.18-.56 1.7-.98l2.48 1 2-3.46-2.1-1.64ZM13 17h-2v-2h2v2Zm0-4h-2V7h2v6Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.65.07-.98s-.02-.66-.07-.98l2.1-1.64-2-3.46-2.48 1a7.1 7.1 0 0 0-1.7-.98L15 3h-4l-.35 2.94c-.61.24-1.18.56-1.7.98l-2.48-1-2 3.46 2.1 1.64c-.04.32-.07.65-.07.98s.02.66.07.98l-2.1 1.64 2 3.46 2.48-1c.52.4 1.09.73 1.7.98L11 21h4l.35-2.94c.61-.24 1.18-.56 1.7-.98l2.48 1 2-3.46-2.1-1.64ZM13 17h-2v-2h2v2Zm0-4h-2V7h2v6Z'/%3E%3C/svg%3E");
}

.mzya-icon-cart::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.2 6l.8 4h10.6l1.1-4H6.2ZM4 3H1v2h2.4l2.2 11H18v-2H7.2l-.4-2H19l2-8H5.8L5.4 2.8A1 1 0 0 0 4.4 2H4v1Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'%3E%3Cpath d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.2 6l.8 4h10.6l1.1-4H6.2ZM4 3H1v2h2.4l2.2 11H18v-2H7.2l-.4-2H19l2-8H5.8L5.4 2.8A1 1 0 0 0 4.4 2H4v1Z'/%3E%3C/svg%3E");
}

.mzya-cms-feature-ico.is-gold {
    background: var(--mzya-gold-soft, #fff6dc);
    color: var(--mzya-gold, #e4a224);
}

.mzya-cms-feature-ico.is-teal {
    background: var(--mzya-teal-soft, #edf7f6);
    color: var(--mzya-teal, #608c90);
}

/* ------------------------------
   TITLES
------------------------------ */

.mzya-cms-title {
    margin: 0 0 12px;
    color: var(--mzya-ink, #102f53);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    letter-spacing: -0.035em;
}

.mzya-cms-lead {
    max-width: 860px;
    margin: 0 auto 28px;
    color: var(--mzya-muted, #667085);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

/* ------------------------------
   CARDS / GRIDS
------------------------------ */

.mzya-cms-card {
    overflow: hidden;
    border: 1px solid rgba(232, 237, 244, 0.98);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(22, 59, 102, 0.07);
}

.mzya-cms-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mzya-cms-feature {
    min-height: 100%;
    padding: 30px 28px;
    text-align: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.mzya-cms-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 87, 146, 0.22);
    box-shadow: 0 22px 48px rgba(22, 59, 102, 0.10);
}

.mzya-cms-feature h3 {
    margin: 0 0 12px;
    color: var(--mzya-ink, #102f53);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.mzya-cms-feature p {
    margin: 0;
    color: var(--mzya-muted, #667085);
    font-size: 15px;
    line-height: 1.75;
}

.mzya-cms-feature a {
    color: inherit;
    text-decoration: none;
}

.mzya-cms-feature a:hover {
    color: var(--mzya-blue, #2c5792);
}

/* ------------------------------
   ARTICLE RICH TEXT
------------------------------ */

.mzya-cms-richtext {
    color: var(--mzya-text, #26384d);
    font-size: 16px;
    line-height: 1.85;
}

.mzya-cms-richtext h2 {
    margin: 34px 0 14px;
    color: var(--mzya-ink, #102f53);
    font-size: clamp(25px, 2.4vw, 36px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.03em;
	text-transform: uppercase;
}

.mzya-cms-richtext h2:first-child {
    margin-top: 0;
}

.mzya-cms-richtext h3 {
    margin: 26px 0 10px;
    color: var(--mzya-blue-dark, #163b66);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.mzya-cms-richtext p {
    margin: 0 0 16px;
    color: var(--mzya-text, #26384d);
    font-size: 16px;
    line-height: 1.9;
}

.mzya-cms-richtext strong {
    color: var(--mzya-ink, #102f53);
    font-weight: 500;
}

.mzya-cms-richtext a {
    color: var(--mzya-blue, #2c5792);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(44, 87, 146, 0.25);
}

.mzya-cms-richtext a:hover {
    color: var(--mzya-clay, #b85827);
    border-bottom-color: rgba(184, 88, 39, 0.40);
}

.mzya-cms-richtext ul,
.mzya-cms-richtext ol {
    margin: 0 0 18px 24px;
    padding: 0;
	list-style: auto;
}

.mzya-cms-richtext li {
    margin: 0 0 9px;
    color: var(--mzya-text, #26384d);
    line-height: 1.8;
}

.mzya-cms-richtext li::marker {
    color: var(--mzya-gold, #e4a224);
    font-weight: 500;
}

/* ------------------------------
   OPTIONAL SOFT BANNER
   Neutral style, not blue.
------------------------------ */

.mzya-cms-banner {
    overflow: hidden;
    padding: 26px 30px;
    border: 1px solid rgba(228, 162, 36, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(228, 162, 36, 0.12), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 62%, #f2f8f8 100%);
    box-shadow: 0 14px 34px rgba(22, 59, 102, 0.07);
}

.mzya-cms-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mzya-cms-banner h3 {
    margin: 0 0 8px;
    color: var(--mzya-ink, #102f53);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.mzya-cms-banner p {
    margin: 0;
    color: var(--mzya-muted, #667085);
    font-size: 15px;
    line-height: 1.75;
}

/* ------------------------------
   BUTTONS
------------------------------ */

.mzya-cms-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mzya-cms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(44, 87, 146, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: var(--mzya-blue, #2c5792);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.mzya-cms-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(22, 59, 102, 0.10);
}

.mzya-cms-btn.is-primary {
    border-color: var(--mzya-blue, #2c5792);
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
}

/* ------------------------------
   RTL SUPPORT
------------------------------ */

html[dir="rtl"] .mzya-cms-page,
.mzya-cms-page[style*="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .mzya-cms-hero-title,
html[dir="rtl"] .mzya-cms-subtitle,
html[dir="rtl"] .mzya-cms-richtext,
html[dir="rtl"] .mzya-cms-richtext h2,
html[dir="rtl"] .mzya-cms-richtext h3,
.mzya-cms-page[style*="rtl"] .mzya-cms-hero-title,
.mzya-cms-page[style*="rtl"] .mzya-cms-subtitle,
.mzya-cms-page[style*="rtl"] .mzya-cms-richtext,
.mzya-cms-page[style*="rtl"] .mzya-cms-richtext h2,
.mzya-cms-page[style*="rtl"] .mzya-cms-richtext h3 {
    text-align: right;
}

html[dir="rtl"] .mzya-cms-proof-row,
.mzya-cms-page[style*="rtl"] .mzya-cms-proof-row {
    justify-content: flex-start;
}

html[dir="rtl"] .mzya-cms-richtext ul,
html[dir="rtl"] .mzya-cms-richtext ol,
.mzya-cms-page[style*="rtl"] .mzya-cms-richtext ul,
.mzya-cms-page[style*="rtl"] .mzya-cms-richtext ol {
    margin-right: 24px;
    margin-left: 0;
}

html[dir="rtl"] .mzya-cms-banner-grid,
.mzya-cms-page[style*="rtl"] .mzya-cms-banner-grid {
    direction: rtl;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1100px) {
    .mzya-cms-hero-grid {
        grid-template-columns: 1fr;
    }

    .mzya-cms-hero-art {
        justify-content: flex-start;
    }

    .mzya-cms-final {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .mzya-cms-grid-3 {
        grid-template-columns: 1fr;
    }

    .mzya-cms-banner-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .mzya-cms-page {
        padding: 22px 12px 52px;
    }

    .mzya-cms-section {
        margin-bottom: 24px;
    }

    .mzya-cms-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .mzya-cms-card {
        border-radius: 20px;
    }

    .mzya-cms-richtext {
        padding: 24px 20px !important;
    }

    .mzya-cms-feature {
        padding: 24px 20px;
    }

    .mzya-cms-banner {
        padding: 22px 20px;
    }

    .mzya-cms-proof-row {
        gap: 10px;
    }

    .mzya-cms-proof-item {
        font-size: 13px;
        white-space: normal;
    }

    .mzya-cms-hero-icon,
    .mzya-cms-feature-ico {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .mzya-cms-feature-ico {
        border-radius: 50%;
    }
}
/* =========================================================
   SELLER CTA SECTION
   Rejoignez Mzya Shopping
========================================================= */
 .mzya-seller-cta-section {
    padding-top: 38px;
    padding-bottom: 50px;
}
.mzya-seller-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 250px minmax(0, 1.15fr) minmax(360px, 1.25fr);
    align-items: center;
    gap: 28px;
    overflow: hidden;
    padding: 28px 32px;
    border: 1px solid rgba(232, 237, 244, 0.96);
    border-radius: 30px;
    background: radial-gradient(circle at 9% 20%, rgba(228, 162, 36, 0.18), transparent 24%), radial-gradient(circle at 96% 20%, rgba(44, 87, 146, 0.11), transparent 27%), linear-gradient(135deg, #ffffff 0%, #f7fbff 48%, #fffaf3 100%);
    box-shadow: 0 20px 46px rgba(22, 59, 102, 0.11);
}
.mzya-seller-cta-card::after {
    content:"";
    position: absolute;
    right: -70px;
    bottom: -92px;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: rgba(96, 140, 144, 0.10);
    pointer-events: none;
}
.mzya-seller-cta-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mzya-seller-cta-visual-image {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(22, 59, 102, 0.12));
}
.mzya-seller-cta-content {
    position: relative;
    z-index: 2;
}
.mzya-seller-cta-content h2 {
    max-width: 580px;
    margin: 0;
    color: var(--mzya-blue-dark);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
	text-transform: uppercase;
}
.mzya-seller-cta-content p:not(.mzya-section-kicker) {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--mzya-muted);
    font-size: 15px;
    line-height: 1.65;
}
.mzya-seller-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}
.mzya-seller-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--mzya-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 550;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(44, 87, 146, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, gap 0.2s ease;
}
.mzya-seller-cta-button:hover {
    background: var(--mzya-blue-dark);
    transform: translateY(-1px);
}
.mzya-seller-cta-link {
    color: var(--mzya-blue);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.mzya-seller-cta-link:hover {
    color: var(--mzya-clay);
}
.mzya-seller-cta-points {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}
.mzya-seller-cta-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}
.mzya-seller-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid rgba(44, 87, 146, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--mzya-blue);
    box-shadow: 0 8px 18px rgba(22, 59, 102, 0.07);
}
.mzya-seller-cta-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}
.mzya-seller-cta-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mzya-blue-dark);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}
.mzya-seller-cta-point small {
    display: block;
    color: var(--mzya-muted);
    font-size: 12.5px;
    line-height: 1.45;
}
/* Tablet */
 @media (max-width: 1100px) {
    .mzya-seller-cta-card {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 24px;
    }
    .mzya-seller-cta-points {
        grid-column: 1 / -1;
    }
    .mzya-seller-cta-visual-image {
        max-width: 190px;
    }
}
/* Mobile */
 @media (max-width: 760px) {
    .mzya-seller-cta-section {
        padding-top: 30px;
        padding-bottom: 38px;
    }
    .mzya-seller-cta-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 18px;
        border-radius: 24px;
    }
    .mzya-seller-cta-visual {
        justify-content: flex-start;
    }
    .mzya-seller-cta-visual-image {
        max-width: 170px;
    }
    .mzya-seller-cta-content h2 {
        font-size: 24px;
		text-transform: uppercase;
    }
    .mzya-seller-cta-content p:not(.mzya-section-kicker) {
        font-size: 14px;
    }
    .mzya-seller-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .mzya-seller-cta-button {
        width: 100%;
    }
    .mzya-seller-cta-points {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .mzya-seller-cta-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 8px;
    }
    .mzya-seller-cta-icon svg {
        width: 18px;
        height: 18px;
    }
}
/* RTL */
 html[dir="rtl"] .mzya-seller-cta-card {
    direction: rtl;
}
html[dir="rtl"] .mzya-seller-cta-card::after {
    right: auto;
    left: -70px;
}
html[dir="rtl"] .mzya-seller-cta-button {
    flex-direction: row-reverse;
}
html[dir="rtl"] .mzya-seller-cta-link {
    display: inline-flex;
}
html[dir="rtl"] .mzya-seller-cta-visual {
    justify-content: center;
}
@media (max-width: 760px) {
    html[dir="rtl"] .mzya-seller-cta-visual {
        justify-content: flex-end;
    }
}

/* MZYA - 3 benefits banner */
 .mzya-benefits {
    background:#628a8f;
    /* dark blue like your screenshot */
    color:#fff;
    width:100%;
}
.mzya-benefits__container {
    max-width:1200px;
    margin:0 auto;
    padding:18px 16px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    align-items:center;
}
.mzya-benefit {
    display:flex;
    gap:14px;
    align-items:flex-start;
    min-width:0;
}
.mzya-benefit__icon {
    width:46px;
    height:46px;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255, 255, 255, .95);
}
.mzya-benefit__icon svg {
    width:34px;
    height:34px;
}
.mzya-benefit__title {
    font-weight:700;
    font-size:15px;
    line-height:1.2;
    margin:0 0 6px 0;
    text-transform: uppercase;
}
.mzya-benefit__desc {
    font-size:13px;
    line-height:1.5;
    color:rgba(255, 255, 255, .85);
}
/* responsive */
 @media (max-width: 992px) {
    .mzya-benefits__container {
        grid-template-columns: 1fr;
        gap: 18px;
        /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ more space between items */
        padding: 16px 16px;
        /* optional */
    }
    .mzya-benefit {
        padding: 10px 0;
        /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ adds breathing room inside each item */
        align-items: flex-start;
    }
    /* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ optional: subtle separator line between items */
    .mzya-benefit:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding-bottom: 16px;
    }
}

/* =========================================================
   MZYA PRODUCT CAROUSEL - View All Button
   Added class in override: .mzya-carousel-view-all
========================================================= */

.mzya-product-section-carousel .mzya-carousel-view-all {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    width: max-content !important;
    min-width: 146px !important;
    min-height: 44px !important;

    margin-top: 46px !important;
	margin-inline-start: auto !important;
	margin-inline-end: auto !important;

    border: 1px solid rgba(44, 87, 146, 0.72) !important;
    border-radius: 8px !important;

    background: var(--mzya-blue, #2c5792) !important;
    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(22, 59, 102, 0.08) !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}

.mzya-product-section-carousel .mzya-carousel-view-all::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background-color: currentColor;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    transition: transform 0.2s ease;
}

.mzya-product-section-carousel .mzya-carousel-view-all:hover {
    transform: translateY(-2px);
    border-color: var(--mzya-blue, #2c5792) !important;
    background: var(--mzya-blue, #2c5792) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(44, 87, 146, 0.18) !important;
}

html[dir="ltr"] .mzya-product-section-carousel .mzya-carousel-view-all:hover::after {
    transform: translateX(3px);
}

/* RTL: button goes visual left and arrow is mirrored */
html[dir="rtl"] .mzya-product-section-carousel .mzya-carousel-view-all {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
}

html[dir="rtl"] .mzya-product-section-carousel .mzya-carousel-view-all::after {
    transform: scaleX(-1);
}

html[dir="rtl"] .mzya-product-section-carousel .mzya-carousel-view-all:hover::after {
    transform: scaleX(-1) translateX(3px);
}

/* Mobile: keep centered */
@media (max-width: 640px) {
    .mzya-product-section-carousel .mzya-carousel-view-all {
        min-width: 128px !important;
        min-height: 40px !important;
        margin-top: 20px !important;
        margin-inline-start: auto !important;
        margin-inline-end: auto !important;
        padding: 0 20px !important;
        font-size: 13px !important;
    }

    .mzya-product-section-carousel .mzya-carousel-view-all::after {
        width: 14px;
        height: 14px;
        flex-basis: 14px;
    }
}

/* Mzya Phase Storefront Product Cards ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â compact color swatches.
   Scope: product card UI only. No cart, wishlist, compare, PDP, or product logic changes. */
.mzya-product-card__swatches {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    margin-top: 8px;
}

html[dir="rtl"] .mzya-product-card__swatches {
    justify-content: flex-end;
}

.mzya-product-card__swatch {
    display: inline-flex;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    box-shadow:
        0 0 0 1px rgba(44, 87, 146, 0.18),
        0 4px 10px rgba(15, 23, 42, 0.12);
}

.mzya-product-card__swatch.is-light {
    box-shadow:
        0 0 0 1px rgba(44, 87, 146, 0.28),
        inset 0 0 0 1px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.12);
}

.mzya-product-card__swatch-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 18px;
    padding: 0 6px;
    border: 1px solid rgba(44, 87, 146, 0.18);
    border-radius: 999px;
    background: rgba(44, 87, 146, 0.08);
    color: var(--mzya-blue, #2c5792);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .mzya-product-card__swatches {
        gap: 5px;
        min-height: 22px;
        margin-top: 7px;
    }

    .mzya-product-card__swatch {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }

    .mzya-product-card__swatch-more {
        height: 16px;
        min-width: 22px;
        padding: 0 5px;
        font-size: 10px;
    }
}

/* Mzya Product Cards — compact fallback attribute tags.
   Scope: card display only; keeps existing color swatches unchanged. */
.mzya-product-card__quick-tags {
    flex-wrap: nowrap;
    overflow: hidden;
}

.mzya-product-card__quick-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 74px;
    height: 20px;
    padding: 0 7px;
    overflow: hidden;
    border: 1px solid rgba(44, 87, 146, 0.16);
    border-radius: 999px;
    background: rgba(44, 87, 146, 0.06);
    color: var(--mzya-blue, #2c5792);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .mzya-product-card__quick-tag {
        max-width: 64px;
        height: 18px;
        padding: 0 6px;
        font-size: 10px;
    }
}

/* =========================================================
   Mzya Homepage Hero Width Fix ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 2026-06-08
   Scope: homepage hero slider + two right banners only.
   Goal: keep the hero aligned with the 1320px header and prevent
   the old 1440px container from hiding slide/banner content on
   smaller desktop screens.
========================================================= */
:root {
    --mzya-hero-container: 1320px;
}

.container.mzya-hero-shell,
.mzya-hero-shell {
    width: min(100%, var(--mzya-hero-container, 1320px)) !important;
    max-width: var(--mzya-hero-container, 1320px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
    box-sizing: border-box;
}

.mzya-hero-shell .hero-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    gap: 3px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.mzya-hero-shell .hero-slider,
.mzya-hero-shell .hero-banners,
.mzya-hero-shell .hero-banner,
.mzya-hero-shell .hero-banner a,
.mzya-hero-shell .hero-banner picture {
    min-width: 0;
    max-width: 100%;
}

.mzya-hero-shell .hero-slider {
    overflow: hidden;
}

.mzya-hero-shell .hero-banners {
    gap: 3px;
}

.mzya-hero-shell .hero-banner img {
    display: block;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .mzya-hero-shell .hero-grid--with-banners {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 330px) !important;
    }

    .mzya-hero-shell .hero-grid--single {
        grid-template-columns: 1fr !important;
    }

    .mzya-hero-shell .hero-slider,
    .mzya-hero-shell .hero-banners {
        height: clamp(370px, calc((100vw - 360px) / 2.35), 440px) !important;
    }

    .mzya-hero-shell .hero-banner {
        height: auto !important;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .mzya-hero-shell .hero-grid--with-banners {
        grid-template-columns: 1fr !important;
    }

    .mzya-hero-shell .hero-slider {
        height: auto !important;
    }

    .mzya-hero-shell .hero-slider img,
    .mzya-hero-shell .mzya-hero-carousel-image {
        height: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .mzya-hero-shell .hero-banners {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: auto !important;
    }

    .mzya-hero-shell .hero-banner {
        height: auto !important;
    }

    .mzya-hero-shell .hero-banner img {
        height: auto !important;
        object-fit: cover !important;
    }
}

@media (max-width: 767px) {
    .container.mzya-hero-shell,
    .mzya-hero-shell {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mzya-hero-shell .hero-grid--with-banners,
    .mzya-hero-shell .hero-grid--single {
        grid-template-columns: 1fr !important;
    }

    .mzya-hero-shell .hero-banners {
        display: grid !important;
        grid-template-columns: 1fr;
        height: auto !important;
        gap: 3px;
        margin-top: 3px;
        margin-bottom: 4px;
    }

    .mzya-hero-shell .hero-banner {
        height: auto !important;
    }

    .mzya-hero-shell .hero-banner img {
        height: auto !important;
        object-fit: cover !important;
    }
}

/* Mobile only: remove remaining spacing around homepage hero */
@media (max-width: 767px) {
    .mzya-hero-shell {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mzya-hero-shell .hero-grid {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        gap: 0 !important;
    }

    .mzya-hero-shell .hero-slider {
        margin-top: 0 !important;
    }
}

/* =========================================================
   MZYA TABLET COMPACT DESKTOP HEADER
   Purpose: keep desktop-style header visible on tablet widths
   without horizontal clipping (Surface/iPad landscape ranges).
========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-desktop-header,
    .mzya-desktop-header .mzya-header-bottom,
    .mzya-desktop-header .mzya-header-topbar,
    .mzya-desktop-header .mzya-main-header-row,
    .mzya-desktop-header .mzya-nav-shell {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: clip;
    }

    .mzya-desktop-header .mzya-header-topbar .mzya-header-container {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .mzya-desktop-header .mzya-topbar-links,
    .mzya-desktop-header .mzya-topbar-actions {
        gap: 5px !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-topbar-link,
    .mzya-desktop-header .mzya-topbar-dropdown-toggle {
        height: 28px !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
        font-size: 12px !important;
        gap: 4px !important;
    }

    .mzya-desktop-header .mzya-topbar-announcement {
        min-width: 0 !important;
        font-size: 12px !important;
    }

    .mzya-desktop-header .mzya-topbar-divider {
        margin-right: 2px !important;
        margin-left: 2px !important;
    }

    .mzya-desktop-header .mzya-main-header-row {
        min-height: 122px !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .mzya-desktop-header .mzya-main-header-row > .relative.z-10 {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .mzya-desktop-header .mzya-main-header-inner {
        gap: 14px !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-header-logo img {
        width: 120px !important;
        max-height: 68px !important;
    }

    .mzya-desktop-header .mzya-search-wrap {
        flex: 1 1 auto !important;
        min-width: 250px !important;
        max-width: 390px !important;
    }

    .mzya-desktop-header .mzya-search-form {
        height: 42px !important;
        border-radius: 12px !important;
    }

    .mzya-desktop-header .mzya-search-input {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-size: 13px !important;
    }

    .mzya-desktop-header .mzya-search-button {
        min-width: 96px !important;
        padding-right: 18px !important;
        padding-left: 18px !important;
        font-size: 13px !important;
    }

    .mzya-desktop-header .mzya-header-actions {
        gap: 9px !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-action-link {
        gap: 0 !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-action-link > span.inline,
    .mzya-desktop-header .mzya-account-action > span.inline,
    .mzya-desktop-header .mini-cart-wrapper > span.inline {
        display: none !important;
    }

    .mzya-desktop-header .mzya-action-circle,
    .mzya-desktop-header .mini-cart-wrapper .icon-cart {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
    }

    .mzya-desktop-header .mzya-skyline {
        height: 56px !important;
        opacity: .34 !important;
    }

    .mzya-desktop-header .mzya-nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 9px 12px !important;
    }

    .mzya-desktop-header .mzya-nav-container .mzya-main-header-inner {
        justify-content: flex-start !important;
        gap: 16px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .cat-hamburger-btn {
        padding: 11px 22px !important;
        border-radius: 11px !important;
        font-size: 14px !important;
    }

    .mzya-desktop-header .mzya-main-nav {
        flex: 1 1 auto !important;
        gap: 18px !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-link {
        flex: 0 0 auto !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 13px !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .mzya-desktop-header .mzya-header-topbar .mzya-header-container {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
    }

    .mzya-desktop-header .mzya-topbar-announcement {
        display: none !important;
    }

    .mzya-desktop-header .mzya-main-header-inner {
        gap: 10px !important;
    }

    .mzya-desktop-header .mzya-header-logo img {
        width: 104px !important;
        max-height: 58px !important;
    }

    .mzya-desktop-header .mzya-search-wrap {
        min-width: 220px !important;
        max-width: 330px !important;
    }

    .mzya-desktop-header .mzya-search-button {
        min-width: 86px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
    }

    .mzya-desktop-header .mzya-header-actions {
        gap: 7px !important;
    }

    .mzya-desktop-header .mzya-action-circle,
    .mzya-desktop-header .mini-cart-wrapper .icon-cart {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
    }

    .mzya-desktop-header .cat-hamburger-btn {
        padding-right: 18px !important;
        padding-left: 18px !important;
        font-size: 13px !important;
    }

    .mzya-desktop-header .mzya-main-nav {
        gap: 14px !important;
    }

    .mzya-desktop-header .mzya-nav-link {
        font-size: 12.5px !important;
    }
}
/* Tablet only: keep nav clean and show full hero carousel image */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Do not show the marketplace promise block next to menu on tablet */
    .mzya-desktop-header .mzya-marketplace-promise,
    .mzya-desktop-header .mzya-support-block {
        display: none !important;
    }

    /* Hero grid full tablet width */
    .mzya-hero-shell,
    .container.mzya-hero-shell {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Stack slider first, banners below */
    .mzya-hero-shell .hero-grid--with-banners {
        grid-template-columns: 1fr !important;
        gap: 3px !important;
    }

    /* Let the carousel image decide its natural height */
    .mzya-hero-shell .hero-slider {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .mzya-hero-shell .hero-slider > *,
    .mzya-hero-shell .hero-slider > * > div,
    .mzya-hero-shell .hero-slider > * > div > div:first-child,
    .mzya-hero-shell .hero-slider > * > div > div:first-child > div {
        height: auto !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-picture,
    .mzya-hero-shell .hero-slider picture {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-image,
    .mzya-hero-shell .hero-slider img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Keep the two right banners below the slider on tablet */
    .mzya-hero-shell .hero-banners {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        height: auto !important;
        gap: 3px !important;
    }

    .mzya-hero-shell .hero-banner {
        height: auto !important;
    }

    .mzya-hero-shell .hero-banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}
/* =========================================================
   MZYA TABLET HEADER + HERO FINAL BALANCE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 2026-06-10
   Scope: tablet only (768pxÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“1199px).
   Goal: keep desktop header components visible and keep the
   homepage hero carousel image fully visible without cropping.
========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Keep full desktop-style header components visible on tablet */
    .mzya-desktop-header,
    .mzya-desktop-header .mzya-header-topbar,
    .mzya-desktop-header .mzya-header-bottom,
    .mzya-desktop-header .mzya-main-header-row,
    .mzya-desktop-header .mzya-nav-shell,
    .mzya-desktop-header .mzya-nav-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .mzya-desktop-header .mzya-header-topbar .mzya-header-container {
        gap: 8px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .mzya-desktop-header .mzya-topbar-links,
    .mzya-desktop-header .mzya-topbar-actions {
        gap: 6px !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-topbar-link,
    .mzya-desktop-header .mzya-topbar-dropdown-toggle,
    .mzya-desktop-header .mzya-topbar-announcement {
        font-size: 11.5px !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-topbar-announcement {
        display: inline-flex !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mzya-desktop-header .mzya-main-header-row {
        min-height: 126px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .mzya-desktop-header .mzya-main-header-row > .relative.z-10 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .mzya-desktop-header .mzya-main-header-inner {
        gap: 12px !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-header-logo img {
        width: 112px !important;
        max-height: 64px !important;
    }

    .mzya-desktop-header .mzya-search-wrap {
        flex: 1 1 auto !important;
        min-width: 230px !important;
        max-width: 360px !important;
    }

    .mzya-desktop-header .mzya-search-form {
        height: 40px !important;
        border-radius: 12px !important;
    }

    .mzya-desktop-header .mzya-search-input {
        font-size: 12.5px !important;
    }

    .mzya-desktop-header .mzya-search-button {
        min-width: 88px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 12.5px !important;
    }

    .mzya-desktop-header .mzya-header-actions {
        gap: 8px !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .mzya-desktop-header .mzya-action-link,
    .mzya-desktop-header .mzya-account-action,
    .mzya-desktop-header .mini-cart-wrapper {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }

    /* Undo previous tablet icon-only rule: keep labels visible */
    .mzya-desktop-header .mzya-action-link > span.inline,
    .mzya-desktop-header .mzya-account-action > span.inline,
    .mzya-desktop-header .mini-cart-wrapper > span.inline {
        display: inline !important;
        font-size: 11px !important;
        line-height: 1 !important;
    }

    .mzya-desktop-header .mzya-action-circle,
    .mzya-desktop-header .mini-cart-wrapper .icon-cart {
        width: 36px !important;
        min-width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }

    .mzya-desktop-header .mzya-skyline {
        height: 52px !important;
        opacity: .34 !important;
    }

    .mzya-desktop-header .mzya-nav-container {
        padding: 8px 10px !important;
    }

    .mzya-desktop-header .mzya-nav-container .mzya-main-header-inner {
        justify-content: flex-start !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .cat-hamburger-btn {
        padding: 10px 15px !important;
        border-radius: 11px !important;
        font-size: 12.5px !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-main-nav {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-link {
        flex: 0 0 auto !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 12px !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    /* Undo previous tablet hiding: keep the marketplace block visible */
    .mzya-desktop-header .mzya-marketplace-promise,
    .mzya-desktop-header .mzya-support-block {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        min-width: 156px !important;
        max-width: 176px !important;
        padding: 6px 8px !important;
        gap: 7px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-support-icon,
    .mzya-desktop-header .mzya-zellij-icon {
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
    }

    .mzya-desktop-header .mzya-zellij-icon img {
        width: 34px !important;
        height: 34px !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight,
    .mzya-desktop-header .mzya-support-block .leading-tight {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight > div,
    .mzya-desktop-header .mzya-support-block .leading-tight > div {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight > div:first-child,
    .mzya-desktop-header .mzya-support-block .leading-tight > div:first-child {
        font-size: 11.5px !important;
        line-height: 1.15 !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight > div:last-child,
    .mzya-desktop-header .mzya-support-block .leading-tight > div:last-child {
        font-size: 10px !important;
        line-height: 1.15 !important;
    }

    /* Hero: full-width tablet slider, no cropping of the carousel picture */
    .mzya-hero-shell,
    .container.mzya-hero-shell {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .mzya-hero-shell .hero-grid--with-banners {
        grid-template-columns: 1fr !important;
        gap: 3px !important;
    }

    .mzya-hero-shell .hero-slider,
    .mzya-hero-shell .hero-slider > *,
    .mzya-hero-shell .hero-slider > * > div,
    .mzya-hero-shell .hero-slider > * > div > div:first-child,
    .mzya-hero-shell .hero-slider > * > div > div:first-child > div {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-picture,
    .mzya-hero-shell .hero-slider picture,
    .mzya-hero-shell .mzya-hero-carousel-image,
    .mzya-hero-shell .hero-slider img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .mzya-hero-shell .hero-banners {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        height: auto !important;
        gap: 3px !important;
    }

    .mzya-hero-shell .hero-banner,
    .mzya-hero-shell .hero-banner a,
    .mzya-hero-shell .hero-banner picture,
    .mzya-hero-shell .hero-banner img {
        height: auto !important;
        max-height: none !important;
    }

    .mzya-hero-shell .hero-banner img {
        width: 100% !important;
        object-fit: cover !important;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .mzya-desktop-header .mzya-topbar-link,
    .mzya-desktop-header .mzya-topbar-dropdown-toggle,
    .mzya-desktop-header .mzya-topbar-announcement {
        font-size: 11px !important;
    }

    .mzya-desktop-header .mzya-main-header-inner {
        gap: 8px !important;
    }

    .mzya-desktop-header .mzya-header-logo img {
        width: 100px !important;
        max-height: 56px !important;
    }

    .mzya-desktop-header .mzya-search-wrap {
        min-width: 210px !important;
        max-width: 315px !important;
    }

    .mzya-desktop-header .mzya-search-button {
        min-width: 82px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .mzya-desktop-header .mzya-header-actions {
        gap: 6px !important;
    }

    .mzya-desktop-header .mzya-action-link,
    .mzya-desktop-header .mzya-account-action,
    .mzya-desktop-header .mini-cart-wrapper {
        gap: 4px !important;
    }

    .mzya-desktop-header .mzya-action-link > span.inline,
    .mzya-desktop-header .mzya-account-action > span.inline,
    .mzya-desktop-header .mini-cart-wrapper > span.inline {
        font-size: 10.5px !important;
    }

    .mzya-desktop-header .mzya-action-circle,
    .mzya-desktop-header .mini-cart-wrapper .icon-cart {
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
    }

    .mzya-desktop-header .cat-hamburger-btn {
        padding-left: 13px !important;
        padding-right: 13px !important;
        font-size: 12px !important;
    }

    .mzya-desktop-header .mzya-main-nav {
        gap: 15px !important;
        margin-left: 10px;
    }

    .mzya-desktop-header .mzya-nav-link {
        font-size: 11.5px !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise,
    .mzya-desktop-header .mzya-support-block {
        min-width: 140px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight > div:first-child,
    .mzya-desktop-header .mzya-support-block .leading-tight > div:first-child {
        font-size: 10px !important;
    }

    .mzya-desktop-header .mzya-marketplace-promise .leading-tight > div:last-child,
    .mzya-desktop-header .mzya-support-block .leading-tight > div:last-child {
        font-size: 9.5px !important;
    }
}

/* Tablet only: show full hero image without cropping */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-hero-shell .hero-slider {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 2.743 / 1 !important;
        overflow: hidden !important;
    }

    .mzya-hero-shell .hero-slider > *,
    .mzya-hero-shell .hero-slider > * > div,
    .mzya-hero-shell .hero-slider > * > div > div:first-child,
    .mzya-hero-shell .hero-slider > * > div > div:first-child > div {
        height: 100% !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-picture,
    .mzya-hero-shell .hero-slider picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-image,
    .mzya-hero-shell .hero-slider img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center !important;
    }
}

/* Tablet only: taller hero slider, image fills height */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-hero-shell .hero-slider {
        height: clamp(390px, 46vw, 460px) !important;
        min-height: 390px !important;
        overflow: hidden !important;
    }

    .mzya-hero-shell .hero-slider > *,
    .mzya-hero-shell .hero-slider > * > div,
    .mzya-hero-shell .hero-slider > * > div > div:first-child,
    .mzya-hero-shell .hero-slider > * > div > div:first-child > div {
        height: 100% !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-picture,
    .mzya-hero-shell .hero-slider picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-image,
    .mzya-hero-shell .hero-slider img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}
/* =========================================================
   MZYA FINAL TABLET HERO ORIGINAL IMAGE SOURCE FIX
   - Tablet keeps desktop-style header.
   - Tablet hero uses the original desktop slide source.
   - The slider follows the real desktop image ratio 1608/703.
   - object-fit: contain prevents cutting heads/feet.
========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-hero-shell .hero-slider {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 1608 / 703 !important;
        overflow: hidden !important;
        background: #eaf4f5 !important;
    }

    .mzya-hero-shell .hero-slider > *,
    .mzya-hero-shell .hero-slider > * > div,
    .mzya-hero-shell .hero-slider > * > div > div:first-child,
    .mzya-hero-shell .hero-slider > * > div > div:first-child > div {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-picture,
    .mzya-hero-shell .hero-slider picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .mzya-hero-shell .mzya-hero-carousel-image,
    .mzya-hero-shell .hero-slider img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center !important;
    }
}



/* =========================================================
   MZYA PRODUCT CARD TWO-ACTION FOOTER
   Desktop/tablet: Voir details + smart primary action
   Mobile: same two actions, compact icon-first layout
========================================================= */
.mzya-product-card__cta-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

.mzya-product-card__action-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-transform: uppercase;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease !important;
}

.mzya-product-card__details {
    border: 1px solid rgba(44, 87, 146, 0.42) !important;
    background: #ffffff !important;
    color: var(--mzya-blue, #2c5792) !important;
    box-shadow: 0 8px 18px rgba(22, 59, 102, 0.055) !important;
}

.mzya-product-card__details:hover {
    transform: translateY(-1px) !important;
    border-color: var(--mzya-blue, #2c5792) !important;
    background: var(--mzya-blue-soft, #edf4fb) !important;
    color: var(--mzya-blue-dark, #163b66) !important;
    box-shadow: 0 12px 24px rgba(22, 59, 102, 0.10) !important;
}

.mzya-product-card__cta,
.mzya-product-list-card__cta {
    border: 1px solid var(--mzya-blue, #2c5792) !important;
    background: var(--mzya-blue, #2c5792) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(44, 87, 146, 0.22) !important;
}

.mzya-product-card__cta:hover:not(:disabled),
.mzya-product-list-card__cta:hover:not(:disabled) {
    transform: translateY(-1px) !important;
    border-color: var(--mzya-blue-dark, #163b66) !important;
    background: var(--mzya-blue-dark, #163b66) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(44, 87, 146, 0.28) !important;
}

.mzya-product-card__cta.is-configurable,
.mzya-product-list-card__cta.is-configurable {
    border-color: var(--mzya-blue, #2c5792) !important;
    background: var(--mzya-blue, #2c5792) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(44, 87, 146, 0.22) !important;
}

.mzya-product-card__cta.is-unavailable,
.mzya-product-card__cta.is-disabled,
.mzya-product-card__cta:disabled,
.mzya-product-list-card__cta.is-unavailable,
.mzya-product-list-card__cta.is-disabled,
.mzya-product-list-card__cta:disabled {
    cursor: not-allowed !important;
    border-color: #d7dbe4 !important;
    background: #e4e7ee !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

.mzya-product-card__button-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 19px !important;
    height: 19px !important;
    flex: 0 0 19px !important;
    font-size: 19px !important;
    line-height: 1 !important;
}

.mzya-product-card__button-icon--svg svg {
    display: block !important;
    width: 19px !important;
    height: 19px !important;
}

.mzya-product-card__action-label {
    display: inline-block !important;
    min-width: 0 !important;
    text-overflow: ellipsis !important;
    font-size: 14px;
    font-weight: 500;
}

.mzya-product-list-card__actions {
    max-width: 360px !important;
}

.mzya-product-list-card__details,
.mzya-product-list-card__cta {
    max-width: none !important;
}

html[dir="rtl"] .mzya-product-card__action-button {
    flex-direction: row-reverse !important;
}

@media (min-width: 641px) and (max-width: 1199px) {
    .mzya-product-card__cta-wrap {
        gap: 7px !important;
    }

    .mzya-product-card__action-button {
        min-height: 42px !important;
        padding: 0 9px !important;
        font-size: 12px !important;
    }
}

/* =========================================================
   MZYA PRODUCT CARD ACTION POLISH V2
   Compact uppercase VOIR + AJOUTER across desktop/tablet/mobile
========================================================= */
.mzya-product-card__cta-wrap {
    gap: 7px !important;
    margin-top: 10px !important;
}

.mzya-product-card__action-button {
    min-height: 38px !important;
    padding: 0 8px !important;
    border-radius: 5px !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    letter-spacing: 0.015em !important;
    text-transform: uppercase !important;
}

.mzya-product-card__button-icon,
.mzya-product-card__action-button span[class^="icon-"],
.mzya-product-card__action-button span[class*=" icon-"] {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
    font-size: 20px !important;
}

.mzya-product-card__action-label {
    display: inline-block !important;
}

.mzya-product-card__cta.is-configurable,
.mzya-product-card__cta.is-unavailable,
.mzya-product-card__cta.is-disabled,
.mzya-product-card__cta:disabled,
.mzya-product-list-card__cta.is-configurable,
.mzya-product-list-card__cta.is-unavailable,
.mzya-product-list-card__cta.is-disabled,
.mzya-product-list-card__cta:disabled {
    cursor: not-allowed !important;
    border-color: #d7dbe4 !important;
    background: #e4e7ee !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

@media (min-width: 641px) and (max-width: 1199px) {
    .mzya-product-card__action-button {
        min-height: 37px !important;
        padding: 0 7px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }
}

@media (max-width: 640px) {
    .mzya-product-card__cta-wrap {
        gap: 6px !important;
        margin-top: 8px !important;
    }

    .mzya-product-card__action-button {
        min-height: 40px !important;
        padding: 0 6px !important;
        font-size: 0 !important;
        gap: 0 !important;
    }

    .mzya-product-card__action-label,
    .mzya-product-card__cta span:last-child {
        display: none !important;
    }

    .mzya-product-card__button-icon,
    .mzya-product-card__action-button span[class^="icon-"],
    .mzya-product-card__action-button span[class*=" icon-"] {
        width: 20px !important;
        height: 20px !important;
        flex-basis: 20px !important;
        font-size: 20px !important;
    }
}

/* Product card seller pill: remove 'Vendu par :' text, keep icon + seller name */
.mzya-product-card__seller-label {
    display: none !important;
}

.mzya-product-card__seller-link,
.mzya-product-card__seller-text {
    max-width: 170px !important;
}

/* Mobile: keep seller name cleaner after removing label */
@media (max-width: 767px) {
    .mzya-product-card__seller-link,
    .mzya-product-card__seller-text {
        max-width: 105px !important;
    }
}

/* Homepage product carousel: use wrapping flex layout instead of grid to prevent first-row offset
   Reason: the original Bagisto carousel row keeps flex/overflow utility classes; converting it to CSS grid can leave an empty-looking first slot on some widths. */
.mzya-product-section-carousel .scrollbar-hide {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    gap: 16px !important;
    overflow: visible !important;
    scroll-behavior: auto !important;
    padding-bottom: 0 !important;
    white-space: normal !important;
}

.mzya-product-section-carousel .scrollbar-hide > article.mzya-product-card,
.mzya-product-section-carousel .scrollbar-hide > .mzya-product-card {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
    min-width: 0 !important;
    align-self: stretch !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-product-section-carousel .scrollbar-hide {
        gap: 14px !important;
    }

    .mzya-product-section-carousel .scrollbar-hide > article.mzya-product-card,
    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-card {
        flex-basis: calc((100% - 28px) / 3) !important;
        width: calc((100% - 28px) / 3) !important;
        max-width: calc((100% - 28px) / 3) !important;
    }
}

@media (max-width: 767px) {
    .mzya-product-section-carousel .scrollbar-hide {
        gap: 10px !important;
    }

    .mzya-product-section-carousel .scrollbar-hide > article.mzya-product-card,
    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-card {
        flex-basis: calc((100% - 10px) / 2) !important;
        width: calc((100% - 10px) / 2) !important;
        max-width: calc((100% - 10px) / 2) !important;
    }
}

/* Homepage product carousel: wrapper prevents Vue fragment marker text node from becoming a layout item
   Reason: v-product-card renders a Vue fragment marker text node (shown as &#xFFFF; in DevTools).
   The wrapper keeps that marker inside the product item so it no longer reserves a carousel/grid column. */
.mzya-product-section-carousel .scrollbar-hide > .mzya-product-carousel-item {
    min-width: 0 !important;
    align-self: stretch !important;
}

.mzya-product-section-carousel .mzya-product-carousel-item > .mzya-product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 100% !important;
}

/* If the homepage carousel is using the flex-wrap override, size the wrapper items instead of the inner article. */
.mzya-product-section-carousel .scrollbar-hide > .mzya-product-carousel-item {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-carousel-item {
        flex-basis: calc((100% - 28px) / 3) !important;
        width: calc((100% - 28px) / 3) !important;
        max-width: calc((100% - 28px) / 3) !important;
    }
}

@media (max-width: 767px) {
    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-carousel-item {
        flex-basis: calc((100% - 10px) / 2) !important;
        width: calc((100% - 10px) / 2) !important;
        max-width: calc((100% - 10px) / 2) !important;
    }
}

/* =========================================================
   MZYA PRODUCT CARD COMPACT PRICE
   Makes prices shorter: 230 + small 00 + DH.
========================================================= */
.mzya-product-card__price-line {
    align-items: flex-end !important;
    gap: 8px !important;
}

.mzya-product-card__price-line--discount {
    flex-wrap: wrap !important;
    gap: 7px !important;
}

.mzya-product-card__price-compact {
    display: inline-flex !important;
    align-items: flex-start !important;
    gap: 2px !important;
    color: var(--mzya-blue, #2c5792) !important;
    line-height: 0.92 !important;
    white-space: nowrap !important;
}

.mzya-product-card__price-major {
    font-size: 24px !important;
    font-weight: 750 !important;
    letter-spacing: -0.045em !important;
    line-height: 0.96 !important;
}

.mzya-product-card__price-decimal,
.mzya-product-card__price-currency-compact {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
}

.mzya-product-card__price-currency-compact {
    margin-inline-start: 1px !important;
    text-transform: uppercase !important;
}

.mzya-product-card__price-compact--old {
    color: #717680 !important;
    opacity: 0.9 !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1.5px !important;
}

.mzya-product-card__price-compact--old .mzya-product-card__price-major {
    font-size: 14px !important;
    letter-spacing: -0.035em !important;
}

.mzya-product-card__price-compact--old .mzya-product-card__price-decimal,
.mzya-product-card__price-compact--old .mzya-product-card__price-currency-compact {
    font-size: 8px !important;
}

@media (max-width: 767px) {
    .mzya-product-card__price-line {
        gap: 6px !important;
    }

    .mzya-product-card__price-major {
        font-size: 21px !important;
    }

    .mzya-product-card__price-decimal,
    .mzya-product-card__price-currency-compact {
        font-size: 9px !important;
    }

    .mzya-product-card__price-compact--old .mzya-product-card__price-major {
        font-size: 12px !important;
    }

    .mzya-product-card__price-compact--old .mzya-product-card__price-decimal,
    .mzya-product-card__price-compact--old .mzya-product-card__price-currency-compact {
        font-size: 7px !important;
    }
}

/* Product card polish: edge-to-edge image + opposite price alignment */
.mzya-product-card__price {
    width: 100% !important;
    align-items: flex-end !important;
}

.mzya-product-card__price-line {
    justify-content: flex-end !important;
}

/* LTR: price on the left */
html[dir="ltr"] .mzya-product-card__price,
html:not([dir="rtl"]) .mzya-product-card__price {
    text-align: left !important;
}

/* RTL: price on the right */
html[dir="rtl"] .mzya-product-card__price,
body[dir="rtl"] .mzya-product-card__price,
[dir="rtl"] .mzya-product-card__price {
    text-align: right !important;
}

/* Keep price numbers readable in Arabic/RTL */
html[dir="rtl"] .mzya-product-card__price-compact,
body[dir="rtl"] .mzya-product-card__price-compact,
[dir="rtl"] .mzya-product-card__price-compact {
    direction: ltr !important;
    unicode-bidi: isolate !important;
}


/* Tablet / iPad only: main trend card uses 50% image + 50% content */
@media (min-width: 641px) and (max-width: 991px) {
    .mzya-trend-card-large {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 24px;
        min-height: 360px;
        padding: 24px;
    }

    .mzya-trend-card-large .mzya-trend-thumb {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: 100%;
        min-height: 300px;
        margin-bottom: 0;
        border-radius: 28px;
    }

    .mzya-trend-card-large .mzya-trend-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .mzya-trend-card-large .mzya-trend-content {
        width: 100%;
        max-width: 390px;
        padding: 0;
    }

    .mzya-trend-card-large .mzya-trend-content h3 {
        font-size: 28px;
        line-height: 1.08;
    }

    .mzya-trend-card-large .mzya-trend-content p {
        max-width: 340px;
    }

    html[dir="rtl"] .mzya-trend-card-large .mzya-trend-thumb {
        grid-column: 2;
        grid-row: 1;
    }

    html[dir="rtl"] .mzya-trend-card-large .mzya-trend-content {
        grid-column: 1;
        grid-row: 1;
        text-align: right;
    }
}

/* === Mzya Luxe entry section (homepage CTA to /luxe) === */
.mzya-luxe-entry-section {
    --mzya-luxe-black: #080706;
    --mzya-luxe-ink: #18120c;
    --mzya-luxe-muted: #5f554a;
    --mzya-luxe-gold: #b98222;
    --mzya-luxe-gold-soft: #e8c777;
    --mzya-luxe-card: rgba(255, 255, 255, .88);
    --mzya-luxe-border: rgba(191, 132, 36, .22);
    margin-block: 28px;
}

.mzya-luxe-entry-section .mzya-home-container.is-wide {
    max-width: 1320px;
}

.mzya-luxe-entry-card,
.mzya-luxe-entry-card * {
    box-sizing: border-box;
}

.mzya-luxe-entry-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "content badge"
        "content ."
        "categories categories";
    gap: 28px 34px;
    min-height: 590px;
    padding: clamp(34px, 4vw, 58px) clamp(30px, 4vw, 56px) clamp(34px, 4vw, 54px);
    border-radius: 28px;
    background-image: var(--mzya-luxe-visual-image);
    background-position: 62% center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 26px 64px rgba(24, 18, 12, .12);
    color: var(--mzya-luxe-ink);
}

.mzya-luxe-entry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .34), transparent 24%),
        radial-gradient(circle at 83% 9%, rgba(232, 199, 119, .12), transparent 26%);
}

.mzya-luxe-entry-card::after {
    content: "";
    position: absolute;
    inset-inline: clamp(20px, 3vw, 52px);
    top: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(191, 132, 36, .68), transparent);
    opacity: .78;
}

.mzya-luxe-entry-content {
    grid-area: content;
    position: relative;
    z-index: 2;
    align-self: start;
    max-width: 590px;
}

.mzya-luxe-entry-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .26em;
    line-height: 1;
    text-transform: uppercase;
}

.mzya-luxe-entry-kicker span {
    display: inline-block;
    width: 50px;
    height: 1px;
    flex: 0 0 50px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.mzya-luxe-entry-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(4.6rem, 8vw, 7.3rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .88;
}

.mzya-luxe-entry-subtitle {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgb(255 255 255 / 86%);
    font-size: clamp(1.04rem, 1.2vw, 1.18rem);
    line-height: 1.8;
    text-transform: uppercase;
}

.mzya-luxe-entry-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-top: 30px;
}

.mzya-luxe-entry-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(191, 132, 36, .34);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    color: rgba(24, 18, 12, .92) !important;
    font-size: .96rem;
    font-weight: 500;
    letter-spacing: .045em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.mzya-luxe-entry-secondary:hover {
    color: var(--mzya-luxe-gold) !important;
    border-color: var(--mzya-luxe-gold);
    background: rgba(255, 255, 255, .9);
    transform: translateY(-1px);
}

.mzya-luxe-entry-mobile-bottom-actions {
    display: none;
}

.mzya-luxe-entry-badge {
    grid-area: badge;
    position: relative;
    z-index: 3;
    justify-self: end;
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 62px;
    padding: 0 22px;
    border: 1px solid rgba(191, 132, 36, .22);
    border-radius: 17px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 36px rgba(24, 18, 12, .12);
    color: var(--mzya-luxe-ink);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.mzya-luxe-entry-badge svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    color: var(--mzya-luxe-gold);
}

.mzya-luxe-entry-categories {
    grid-area: categories;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.mzya-luxe-entry-category {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 35px;
    padding: 4px 5px;
    border: 1px solid rgba(24, 18, 12, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 16px 36px rgba(24, 18, 12, .10);
    color: var(--mzya-luxe-ink) !important;
    font-size: 1.02rem;
    /* font-weight: 500; */
    /* line-height: 1.38; */
    text-decoration: none !important;
    backdrop-filter: blur(12px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.mzya-luxe-entry-category::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .62), transparent 58%);
}

.mzya-luxe-entry-category-icon,
.mzya-luxe-entry-category-label,
.mzya-luxe-entry-category-arrow {
    position: relative;
    z-index: 1;
}

.mzya-luxe-entry-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--mzya-luxe-gold);
}

.mzya-luxe-entry-category-icon svg {
    display: block;
    width: 36px;
    height: 36px;
}

.mzya-luxe-entry-category-label {
    min-width: 0;
}

.mzya-luxe-entry-category-arrow {
    color: var(--mzya-luxe-gold);
    font-size: 1.45rem;
    line-height: 1;
    transition: transform .18s ease;
}

.mzya-luxe-entry-category:hover {
    transform: translateY(-3px);
    border-color: rgba(191, 132, 36, .42);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 44px rgba(24, 18, 12, .15);
}

.mzya-luxe-entry-category:hover .mzya-luxe-entry-category-arrow {
    transform: translateX(3px);
}

html[dir="rtl"] .mzya-luxe-entry-card {
    direction: rtl;
    background-image:
        linear-gradient(270deg, rgba(255, 253, 247, .86) 0%, rgba(255, 250, 242, .64) 30%, rgba(255, 250, 242, .28) 52%, rgba(255, 250, 242, .06) 72%, rgba(24, 18, 12, .04) 100%),
        var(--mzya-luxe-visual-image);
    background-position: 38% center;
}

html[dir="rtl"] .mzya-luxe-entry-kicker {
    letter-spacing: 0;
}

html[dir="rtl"] .mzya-luxe-entry-kicker span {
    background: linear-gradient(270deg, var(--mzya-luxe-gold), transparent);
}

html[dir="rtl"] .mzya-luxe-entry-category:hover .mzya-luxe-entry-category-arrow,
html[dir="rtl"] .mzya-luxe-entry-secondary span {
    transform: scaleX(-1);
}

@media (max-width: 1180px) {
    .mzya-luxe-entry-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "badge"
            "content"
            "categories";
        min-height: 0;
        background-image:
            linear-gradient(90deg, rgba(255, 253, 247, .82) 0%, rgba(255, 250, 242, .54) 42%, rgba(255, 250, 242, .16) 100%),
            var(--mzya-luxe-visual-image);
        background-position: 60% center;
    }

    html[dir="rtl"] .mzya-luxe-entry-card {
        background-image:
            linear-gradient(270deg, rgba(255, 253, 247, .82) 0%, rgba(255, 250, 242, .54) 42%, rgba(255, 250, 242, .16) 100%),
            var(--mzya-luxe-visual-image);
        background-position: 40% center;
    }

    .mzya-luxe-entry-badge {
        justify-self: start;
    }

    .mzya-luxe-entry-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mzya-luxe-entry-section {
        margin-block: 18px;
        padding-inline: 12px;
    }

    .mzya-luxe-entry-card {
        display: flex;
        min-height: 700px;
        flex-direction: column;
        gap: 0;
        padding: 28px 16px 24px;
        border-radius: 22px;
        background-image: var(--mzya-luxe-visual-image);
        background-position: 56% center;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }

    html[dir="rtl"] .mzya-luxe-entry-card {
        background-image: var(--mzya-luxe-visual-image);
        background-position: 56% center;
        background-size: auto 100%;
    }

    .mzya-luxe-entry-card::before {
        background:
            radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .25), transparent 22%),
            radial-gradient(circle at 82% 8%, rgba(232, 199, 119, .10), transparent 25%);
    }

    .mzya-luxe-entry-content {
        width: 100%;
        max-width: none;
    }

    .mzya-luxe-entry-kicker {
        gap: 10px;
        margin-bottom: 16px;
        color: var(--mzya-luxe-gold);
        font-size: .70rem;
        letter-spacing: .18em;
    }

    .mzya-luxe-entry-kicker span {
        width: 34px;
        flex-basis: 34px;
    }

    .mzya-luxe-entry-title {
        max-width: 100%;
        font-size: clamp(3.2rem, 16vw, 4.45rem);
        line-height: .92;
    }

    .mzya-luxe-entry-subtitle,
    .mzya-luxe-entry-badge,
    .mzya-luxe-entry-categories {
        display: none !important;
    }

    .mzya-luxe-entry-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .mzya-luxe-entry-secondary {
        width: 100%;
        min-height: 48px;
        border: 1px solid rgba(191, 132, 36, .24);
        border-radius: 10px;
        background: rgba(255, 255, 255, .76);
        box-shadow: 0 12px 28px rgba(24, 18, 12, .10);
        backdrop-filter: blur(10px);
    }

    .mzya-luxe-entry-mobile-bottom-actions {
        position: relative;
        z-index: 3;
        display: flex;
        width: 100%;
        margin-top: auto;
        padding-top: 22px;
    }
}
/* =========================================================
   MZYA LUXE MOBILE FINAL CLEAN VIEW
   Scope: mobile only. Desktop/tablet Luxe unchanged.
   Goal: keep only kicker + title at top, one CTA at bottom,
   and move the background crop away from the face.
   END MZYA LUXE MOBILE FINAL CLEAN VIEW
========================================================= */
@media (max-width: 767px) {
    .mzya-luxe-entry-card {
        min-height: 700px !important;
        padding: 24px 16px 22px !important;
        background-position: 68% center !important;
        background-size: auto 100% !important;
    }

    html[dir="rtl"] .mzya-luxe-entry-card {
        background-position: 34% center !important;
    }

    .mzya-luxe-entry-content {
        position: relative !important;
        z-index: 4 !important;
        width: 100% !important;
        max-width: 275px !important;
        margin-inline-end: auto !important;
        text-align: left !important;
    }

    html[dir="rtl"] .mzya-luxe-entry-content {
        margin-inline-start: auto !important;
        margin-inline-end: 0 !important;
        text-align: right !important;
    }

    .mzya-luxe-entry-kicker {
        margin: 0 0 10px !important;
        gap: 9px !important;
        font-size: .66rem !important;
        letter-spacing: .16em !important;
        line-height: 1 !important;
    }

    .mzya-luxe-entry-kicker span {
        width: 30px !important;
        flex-basis: 30px !important;
    }

    .mzya-luxe-entry-title {
        max-width: 100% !important;
        margin: 0 !important;
        font-size: clamp(2.75rem, 12.5vw, 3.45rem) !important;
        line-height: .88 !important;
        letter-spacing: -.075em !important;
    }

    .mzya-luxe-entry-subtitle,
    .mzya-luxe-entry-badge,
    .mzya-luxe-entry-categories {
        display: none !important;
    }

    /* Hide the top CTA only on mobile; keep the bottom CTA. */
    .mzya-luxe-entry-content > .mzya-luxe-entry-actions {
        display: none !important;
    }

    .mzya-luxe-entry-mobile-bottom-actions {
        position: relative !important;
        z-index: 4 !important;
        display: flex !important;
        width: 100% !important;
        margin-top: auto !important;
        padding-top: 22px !important;
    }

    .mzya-luxe-entry-mobile-bottom-actions .mzya-luxe-entry-secondary {
        width: 100% !important;
        min-height: 48px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, .80) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 12px 28px rgba(24, 18, 12, .10) !important;
    }
}

@media (max-width: 420px) {
    .mzya-luxe-entry-content {
        max-width: 252px !important;
    }

    .mzya-luxe-entry-title {
        font-size: clamp(2.55rem, 12vw, 3.15rem) !important;
    }
}

/* MZYA TABLET CATEGORIES DROPDOWN VISIBILITY FIX - START */
/*
 * Surface/iPad/tablet desktop-header mode.
 * Keep the desktop-style flyout visible on touch tablets.
 * Do not stack submenu inside dropdown.
 */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-desktop-header,
    .mzya-desktop-header .mzya-header-bottom,
    .mzya-desktop-header .mzya-nav-shell,
    .mzya-desktop-header .mzya-nav-container,
    .mzya-desktop-header .mzya-nav-container .mzya-main-header-inner,
    .mzya-desktop-header .mzya-nav-shell .mzya-nav-container .mzya-main-header-inner {
        overflow: visible !important;
    }

    .mzya-desktop-header,
    .mzya-desktop-header .mzya-header-bottom,
    .mzya-desktop-header .mzya-nav-shell,
    .mzya-desktop-header .mzya-nav-container {
        position: relative;
        z-index: 120 !important;
    }

    .mzya-desktop-header .cat-hamburger-wrap {
        position: relative;
        z-index: 250 !important;
        overflow: visible !important;
    }

    .mzya-desktop-header .cat-hamburger-dropdown {
        z-index: 260 !important;
        min-width: 250px;
        max-height: min(70vh, 560px);
        overflow: visible !important;
    }

    .mzya-desktop-header .cat-hamburger-sub {
        position: absolute;
        top: 0;
        min-height: 100%;
        min-width: min(600px, calc(100vw - 320px));
        max-width: calc(100vw - 320px);
        max-height: min(70vh, 560px);
        overflow-x: hidden;
        overflow-y: auto !important;
        z-index: 270 !important;
    }
}
/* MZYA TABLET CATEGORIES DROPDOWN VISIBILITY FIX - END */



/* Mzya Search Autocomplete - Phase 1 */
.mzya-search-wrap,
.mzya-mobile-search-form {
    position: relative;
}

.mzya-search-suggest-panel {
    position: absolute;
    inset-inline: 0;
    top: calc(100% + 9px);
    z-index: 210;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, .18);
    color: #111827;
}

.mzya-mobile-search-suggest-panel {
    top: calc(100% + 8px);
    border-radius: 14px;
}

.mzya-search-suggest-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.mzya-search-suggest-clear {
    border: 0;
    background: transparent;
    color: #2c5792;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 0;
}

.mzya-search-suggest-clear:hover {
    color: #1f3f6f;
    text-decoration: underline;
}

.mzya-search-suggest-list {
    max-height: 360px;
    overflow-y: auto;
    padding: 6px;
}

.mzya-search-suggest-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #111827;
    cursor: pointer;
    padding: 11px 12px;
    text-align: start;
    transition: background-color .16s ease, color .16s ease, transform .16s ease;
}

.mzya-search-suggest-item:hover,
.mzya-search-suggest-item.is-active {
    background: rgba(44, 87, 146, .08);
    color: #1f3f6f;
}

.mzya-search-suggest-item.is-active {
    transform: translateY(-1px);
}

.mzya-search-suggest-icon {
    display: inline-flex;
    width: 28px;
    min-width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(96, 140, 144, .12);
    color: #2c5792;
}

.mzya-search-suggest-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 550;
}

.mzya-search-suggest-label strong {
    color: #0f172a;
    font-weight: 900;
}

@media (max-width: 767px) {
    .mzya-mobile-search-form .mzya-search-suggest-panel {
        max-height: min(62vh, 430px);
        box-shadow: 0 18px 38px rgba(15, 23, 42, .18);
    }

    .mzya-search-suggest-head {
        padding: 11px 12px 9px;
    }

    .mzya-search-suggest-list {
        max-height: min(52vh, 350px);
    }

    .mzya-search-suggest-item {
        padding: 12px;
    }
}

[dir="rtl"] .mzya-search-suggest-item,
[dir="rtl"] .mzya-search-suggest-head {
    text-align: right;
}


/* Mzya Search Autocomplete - Phase 1B runtime visibility guard */
.mzya-search-wrap,
.mzya-mobile-search-form,
.mzya-mobile-search-form > .relative {
    overflow: visible !important;
}

.mzya-desktop-header .mzya-search-wrap,
.mzya-mobile-search-form {
    z-index: 320 !important;
}

.mzya-search-suggest-panel {
    z-index: 9999 !important;
    pointer-events: auto;
}

.mzya-search-suggest-panel:not(.hidden) {
    display: block !important;
}

/* MZYA HOMEPAGE PRODUCT SECTION 5-COLUMN FIX START */
/* Visual-only: match search grid density by showing 5 product cards per row
   in Mzya homepage product sections on wide screens. Does not touch product
   data, cart, VAT, shipping, checkout, product APIs, or card Blade logic. */
@media (min-width: 1200px) {
    .mzya-product-section-carousel .scrollbar-hide {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
        gap: 16px !important;
        overflow: visible !important;
        scroll-behavior: auto !important;
        padding-bottom: 0 !important;
        white-space: normal !important;
    }

    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-carousel-item,
    .mzya-product-section-carousel .scrollbar-hide > article.mzya-product-card,
    .mzya-product-section-carousel .scrollbar-hide > .mzya-product-card {
        flex: 0 0 calc((100% - 64px) / 5) !important;
        width: calc((100% - 64px) / 5) !important;
        max-width: calc((100% - 64px) / 5) !important;
        min-width: 0 !important;
        align-self: stretch !important;
    }

    .mzya-product-section-carousel .mzya-product-carousel-item > .mzya-product-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 100% !important;
    }
}
/* MZYA HOMEPAGE PRODUCT SECTION 5-COLUMN FIX END */
/* =========================================================
   MZYA TABLET TOPBAR SWITCHER DROPDOWN SAFE FIX
   CSS-only / UI-only.
   Scope: language + currency popovers inside the desktop-style
   storefront topbar on tablet widths. No routes, forms, Vue,
   currency, locale, checkout, Luxe, or Seller Center logic touched.
========================================================= */
@media (min-width: 768px) and (max-width: 1199px) {
    .mzya-desktop-header .mzya-header-topbar,
    .mzya-desktop-header .mzya-header-topbar .mzya-header-container,
    .mzya-desktop-header .mzya-topbar-actions,
    .mzya-desktop-header .mzya-topbar-actions > .relative,
    .mzya-desktop-header .mzya-topbar-actions > .relative > .select-none {
        overflow: visible !important;
    }

    .mzya-desktop-header .mzya-header-topbar {
        position: relative;
        z-index: 320 !important;
    }

    .mzya-desktop-header .mzya-topbar-actions > .relative {
        position: relative;
        z-index: 330 !important;
    }

    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 {
        top: calc(100% + 6px) !important;
        z-index: 9999 !important;
        min-width: 168px !important;
        width: max-content !important;
        max-width: min(230px, calc(100vw - 24px)) !important;
        overflow: hidden !important;
        border-radius: 14px !important;
        box-shadow: 0 16px 38px rgba(15, 23, 42, .16) !important;
    }

    html[dir="rtl"] .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20,
    [dir="rtl"] .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 {
        right: auto !important;
        left: 0 !important;
    }

    html:not([dir="rtl"]) .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20,
    html[dir="ltr"] .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20,
    [dir="ltr"] .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 {
        right: 0 !important;
        left: auto !important;
    }

    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 .journal-scroll,
    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 [class*="journal-scroll"] {
        max-height: min(56vh, 360px) !important;
        overflow-y: auto !important;
    }

    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 span,
    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 a,
    .mzya-desktop-header .mzya-topbar-actions > .relative > .absolute.z-20 button {
        white-space: nowrap !important;
    }
}
/* MZYA TABLET TOPBAR SWITCHER DROPDOWN SAFE FIX - END */
/* === MZYA PRODUCT CARD OPTIONS BUTTON TEAL STATE - PHASE 7B START ===
   Purpose: configurable products use OPTIONS / Ø§Ø®ØªÙŠØ§Ø± as an active action.
   Keep ADD / AJOUTER blue and unavailable buttons grey.
   Keep hover teal, never blue, for the options button.
=== */
.mzya-product-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable),
.mzya-product-list-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable) {
    cursor: pointer !important;
    border-color: var(--mzya-teal, #608c90) !important;
    background: var(--mzya-teal, #608c90) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(96, 140, 144, 0.22) !important;
    transform: none !important;
}

.mzya-product-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):hover,
.mzya-product-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):focus,
.mzya-product-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):focus-visible,
.mzya-product-list-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):hover,
.mzya-product-list-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):focus,
.mzya-product-list-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):focus-visible {
    border-color: #4f777a !important;
    background: #4f777a !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(96, 140, 144, 0.28) !important;
    transform: translateY(-1px) !important;
}

.mzya-product-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):active,
.mzya-product-list-card__cta.is-configurable:not(:disabled):not(.is-disabled):not(.is-unavailable):active {
    border-color: #466b6e !important;
    background: #466b6e !important;
    transform: translateY(0) !important;
}
/* === MZYA PRODUCT CARD OPTIONS BUTTON TEAL STATE - PHASE 7B END === */
/* === MZYA DESKTOP MAIN MENU LUXE RESPONSIVE STABILITY - 20260630 START ===
   Scope: storefront desktop header menu only.
   Keeps the final approved visual stable after late Vue/CSS hydration:
   - Title-case main menu, no underline
   - LUXE link included
   - Tablet-specific compact sizing
   - Zellij promo remains visible
=== */
.mzya-desktop-header .mzya-nav-shell {
    --mzya-main-nav-font: 13px;
    --mzya-main-nav-pad: 5px 0;
    --mzya-main-nav-separator-gap: 8px;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-header-inner {
    gap: 16px !important;
    overflow: visible !important;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-nav {
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    overflow: hidden !important;
    line-height: 1.15 !important;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link,
.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link:hover,
.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link.is-active {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: var(--mzya-main-nav-pad) !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    font-size: var(--mzya-main-nav-font) !important;
    line-height: 1.15 !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link:hover,
.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link.is-active {
    color: #b85827 !important;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link::after,
.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link:hover::after,
.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-menu-link.is-active::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}

.mzya-desktop-header .mzya-nav-shell .mzya-main-nav .mzya-main-nav-separator {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    height: auto !important;
    margin: 0 var(--mzya-main-nav-separator-gap) !important;
    color: #64748b !important;
    font-size: 12px !important;
    line-height: 1 !important;
    opacity: .7 !important;
}

@media (min-width: 1200px) and (max-width: 1320px) {
    .mzya-desktop-header .mzya-nav-shell {
        --mzya-main-nav-font: 12.8px;
        --mzya-main-nav-pad: 5px 0;
        --mzya-main-nav-separator-gap: 7px;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-main-header-inner {
        gap: 14px !important;
    }
}

@media (min-width: 961px) and (max-width: 1199px) {
    .mzya-desktop-header .mzya-nav-shell {
        --mzya-main-nav-font: 11.35px;
        --mzya-main-nav-pad: 5px 1px;
        --mzya-main-nav-separator-gap: 5px;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-main-header-inner {
        gap: 8px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .cat-hamburger-btn {
        padding-right: 13px !important;
        padding-left: 13px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise,
    html body #app .mzya-desktop-header .mzya-main-header-inner > .mzya-support-block.mzya-marketplace-promise {
        display: flex !important;
        flex: 0 0 190px !important;
        flex-basis: 190px !important;
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
        gap: 6px !important;
        padding: 6px 8px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .mzya-support-icon,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .mzya-support-icon {
        flex: 0 0 28px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .mzya-support-icon img,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .mzya-support-icon img {
        width: 28px !important;
        height: 28px !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .leading-tight,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .leading-tight,
    html body #app .mzya-desktop-header .mzya-main-header-inner > .mzya-support-block.mzya-marketplace-promise .leading-tight {
        min-width: 0 !important;
        max-width: 132px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .leading-tight > div,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .leading-tight > div {
        display: block !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .mzya-desktop-header .mzya-nav-shell {
        --mzya-main-nav-font: 10.45px;
        --mzya-main-nav-pad: 5px .5px;
        --mzya-main-nav-separator-gap: 4px;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-main-header-inner {
        gap: 6px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .cat-hamburger-btn {
        padding-right: 10px !important;
        padding-left: 10px !important;
        font-size: 11.4px !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise,
    html body #app .mzya-desktop-header .mzya-main-header-inner > .mzya-support-block.mzya-marketplace-promise {
        display: flex !important;
        flex: 0 0 154px !important;
        flex-basis: 154px !important;
        width: 154px !important;
        min-width: 154px !important;
        max-width: 154px !important;
        gap: 6px !important;
        padding: 6px 6px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .mzya-support-icon,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .mzya-support-icon,
    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .mzya-support-icon img,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .mzya-support-icon img {
        flex: 0 0 24px !important;
        width: 24px !important;
        height: 24px !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .leading-tight,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .leading-tight,
    html body #app .mzya-desktop-header .mzya-main-header-inner > .mzya-support-block.mzya-marketplace-promise .leading-tight {
        min-width: 0 !important;
        max-width: 108px !important;
        overflow: hidden !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .leading-tight > div,
    .mzya-desktop-header .mzya-nav-shell .mzya-support-block.mzya-marketplace-promise .leading-tight > div {
        display: block !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .font-semibold {
        font-size: 10px !important;
        line-height: 1.05 !important;
    }

    .mzya-desktop-header .mzya-nav-shell .mzya-marketplace-promise .text-xs {
        font-size: 9px !important;
        line-height: 1.05 !important;
    }
}
/* === MZYA DESKTOP MAIN MENU LUXE RESPONSIVE STABILITY - 20260630 END === */
/* =========================================================
   MZYA CMS SELLER LANDING PAGE FIX
   Paste this block at the END of:
   public/themes/shop/mzya/css/mzya-cms.css

   Scope: only .mzya-cms-page--seller
   Fixes: seller CMS page layout, fee cards, steps, mini cards,
   FAQ, RTL support, missing icons, and EN/FR/AR consistency.
========================================================= */

.mzya-cms-page--seller,
.mzya-cms-page--seller * {
    box-sizing: border-box;
}

.mzya-cms-page--seller {
    width: 100%;
    padding: 26px 16px 58px;
    color: var(--mzya-text, #26384d);
    font-family: inherit;
    background: #ffffff;
}

.mzya-cms-page--seller .mzya-cms-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.mzya-cms-page--seller .mzya-cms-section {
    margin: 0 0 40px;
}

.mzya-cms-page--seller .mzya-cms-section:last-child {
    margin-bottom: 0;
}

.mzya-cms-page--seller img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero */
.mzya-cms-page--seller .mzya-cms-hero {
    overflow: hidden;
    padding: clamp(32px, 4vw, 58px);
    border: 1px solid rgba(228, 162, 36, 0.28);
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 8%, rgba(228, 162, 36, 0.15), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(96, 140, 144, 0.15), transparent 30%),
        linear-gradient(135deg, #fffaf2 0%, #ffffff 52%, #f2f8f8 100%);
    box-shadow: 0 22px 54px rgba(22, 59, 102, 0.10);
}

.mzya-cms-page--seller .mzya-cms-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
    align-items: center;
    gap: clamp(26px, 4vw, 56px);
}

.mzya-cms-page--seller .mzya-cms-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 16px;
    padding: 0 16px;
    border: 1px solid rgba(228, 162, 36, 0.30);
    border-radius: 999px;
    background: var(--mzya-gold-soft, #fff6dc);
    color: var(--mzya-clay, #b85827);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: normal;
}

.mzya-cms-page--seller .mzya-cms-hero-title {
    max-width: 790px;
    margin: 0;
    color: var(--mzya-ink, #102f53);
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.mzya-cms-page--seller .mzya-cms-accent {
    color: var(--mzya-ink, #102f53);
}

.mzya-cms-page--seller .mzya-cms-subtitle {
    max-width: 780px;
    margin: 18px 0 0;
    color: var(--mzya-muted, #667085);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 500;
    line-height: 1.75;
    text-transform: none;
}

.mzya-cms-page--seller .mzya-cms-hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mzya-cms-page--seller .mzya-cms-hero-art img {
    width: min(100%, 430px);
    margin-inline: auto;
}

.mzya-cms-page--seller .mzya-cms-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.mzya-cms-page--seller .mzya-cms-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mzya-blue-dark, #163b66);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.mzya-cms-page--seller .mzya-cms-proof-item::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border: 2px solid var(--mzya-blue, #2c5792);
    border-radius: 999px;
    background: #2d5893;
}

/* Buttons */
.mzya-cms-page--seller .mzya-cms-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mzya-cms-page--seller .mzya-cms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(44, 87, 146, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: var(--mzya-blue, #2c5792) !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mzya-cms-page--seller .mzya-cms-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(22, 59, 102, 0.12);
}

.mzya-cms-page--seller .mzya-cms-btn.is-primary {
    border-color: var(--mzya-blue, #2c5792);
    background: var(--mzya-blue, #2c5792);
    color: #ffffff !important;
}

.mzya-cms-page--seller .mzya-cms-btn.is-primary:hover {
    background: var(--mzya-blue-dark, #163b66);
}

.mzya-cms-page--seller .mzya-cms-btn.is-secondary:hover {
    background: var(--mzya-blue-soft, #edf4fb);
}

/* Fee equation */
.mzya-cms-page--seller .mzya-cms-fees-section {
    margin-top: 18px;
}

.mzya-cms-page--seller .mzya-cms-stats-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(232, 237, 244, 0.98);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 44px rgba(22, 59, 102, 0.08);
}

.mzya-cms-page--seller .mzya-cms-stat-card {
    min-height: 138px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    border-radius: 22px;
}

.mzya-cms-page--seller .mzya-cms-stat-card strong {
    display: block;
    color: var(--mzya-gold, #e4a224);
    font-size: clamp(28px, 2.4vw, 38px);
    font-weight: 800;
    line-height: 1;
}

.mzya-cms-page--seller .mzya-cms-stat-card span {
    display: block;
    color: var(--mzya-ink, #102f53);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.mzya-cms-page--seller .mzya-cms-stat-card small {
    display: block;
    color: var(--mzya-muted, #667085);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.mzya-cms-page--seller .mzya-cms-stat-card.is-highlight {
    border-color: rgba(44, 87, 146, 0.22);
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
}

.mzya-cms-page--seller .mzya-cms-stat-card.is-highlight strong,
.mzya-cms-page--seller .mzya-cms-stat-card.is-highlight span,
.mzya-cms-page--seller .mzya-cms-stat-card.is-highlight small {
    color: #ffffff;
}

.mzya-cms-page--seller .mzya-cms-stat-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mzya-gold, #e4a224);
    font-size: 28px;
    font-weight: 800;
}

/* Titles */
.mzya-cms-page--seller .mzya-cms-title {
    max-width: 980px;
    margin: 0 auto 10px;
    color: var(--mzya-ink, #102f53);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.035em;
    text-align: center;
    text-transform: none;
}

.mzya-cms-page--seller .mzya-cms-lead {
    max-width: 900px;
    margin: 0 auto 28px;
    color: var(--mzya-muted, #667085);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

/* Cards and grids */
.mzya-cms-page--seller .mzya-cms-card,
.mzya-cms-page--seller .mzya-cms-panel {
    overflow: hidden;
    border: 1px solid rgba(232, 237, 244, 0.98);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(22, 59, 102, 0.07);
}

.mzya-cms-page--seller .mzya-cms-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mzya-cms-page--seller .mzya-cms-feature {
    min-height: 214px;
    padding: 28px 26px;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mzya-cms-page--seller .mzya-cms-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 87, 146, 0.22);
    box-shadow: 0 22px 48px rgba(22, 59, 102, 0.10);
}

.mzya-cms-page--seller .mzya-cms-feature h3,
.mzya-cms-page--seller .mzya-cms-step h3 {
    margin: 0 0 10px;
    color: var(--mzya-ink, #102f53);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.mzya-cms-page--seller .mzya-cms-feature p,
.mzya-cms-page--seller .mzya-cms-step p,
.mzya-cms-page--seller .mzya-cms-mini p {
    margin: 0;
    color: var(--mzya-muted, #667085);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

/* Icons */
.mzya-cms-page--seller .mzya-cms-feature-ico,
.mzya-cms-page--seller .mzya-cms-step-media,
.mzya-cms-page--seller .mzya-cms-mini-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 74% 20%, rgba(228, 162, 36, 0.18), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    color: var(--mzya-blue, #2c5792);
    box-shadow: inset 0 0 0 1px rgba(44, 87, 146, 0.10), 0 14px 30px rgba(22, 59, 102, 0.10);
}

.mzya-cms-page--seller .mzya-cms-feature-ico.is-gold,
.mzya-cms-page--seller .mzya-cms-step-media.is-gold {
    background: var(--mzya-gold-soft, #fff6dc);
    color: var(--mzya-gold, #e4a224);
}

.mzya-cms-page--seller .mzya-cms-feature-ico.is-teal,
.mzya-cms-page--seller .mzya-cms-step-media.is-teal {
    background: var(--mzya-teal-soft, #edf7f6);
    color: var(--mzya-teal, #608c90);
}

.mzya-cms-page--seller [class*="mzya-icon-"]::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.mzya-cms-page--seller .mzya-icon-store::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16l1 5v2a3 3 0 0 1-5 2.24A3 3 0 0 1 12 13a3 3 0 0 1-4 0 3 3 0 0 1-5-2.24V9l1-5Zm2 12h12v5H6v-5Zm2 2v1h8v-1H8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16l1 5v2a3 3 0 0 1-5 2.24A3 3 0 0 1 12 13a3 3 0 0 1-4 0 3 3 0 0 1-5-2.24V9l1-5Zm2 12h12v5H6v-5Zm2 2v1h8v-1H8Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-box::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.2L6.2 7 12 9.9 17.8 7 12 4.2ZM5 8.7v7.6l6 3v-7.6l-6-3Zm14 0-6 3v7.6l6-3V8.7Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.2L6.2 7 12 9.9 17.8 7 12 4.2ZM5 8.7v7.6l6 3v-7.6l-6-3Zm14 0-6 3v7.6l6-3V8.7Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-monitor::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-6v2h3v2H7v-2h3v-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v10h16V6H4Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-6v2h3v2H7v-2h3v-2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v10h16V6H4Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-chart::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H2V3h2v16Zm3-2V9h3v8H7Zm5 0V5h3v12h-3Zm5 0v-6h3v6h-3Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H2V3h2v16Zm3-2V9h3v8H7Zm5 0V5h3v12h-3Zm5 0v-6h3v6h-3Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-users::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c4 0 7 2 7 4.5V20H2v-2.5C2 15 5 13 9 13Zm8.5-1.8A3.2 3.2 0 1 1 17.5 5a3.2 3.2 0 0 1 0 6.2ZM17 13c3 0 5 1.5 5 3.5V20h-4v-2.5c0-1.7-.8-3.2-2.2-4.3.4-.1.8-.2 1.2-.2Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c4 0 7 2 7 4.5V20H2v-2.5C2 15 5 13 9 13Zm8.5-1.8A3.2 3.2 0 1 1 17.5 5a3.2 3.2 0 0 1 0 6.2ZM17 13c3 0 5 1.5 5 3.5V20h-4v-2.5c0-1.7-.8-3.2-2.2-4.3.4-.1.8-.2 1.2-.2Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-globe::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm6.9 9a8 8 0 0 0-2.2-4.6A14 14 0 0 1 15.8 11h3.1Zm-5.1 0c-.2-2.2-.8-4.1-1.8-6-1 1.9-1.6 3.8-1.8 6h3.6Zm-5.6 0c.2-1.8.5-3.4 1.1-4.6A8 8 0 0 0 5.1 11h3.1Zm-3.1 2a8 8 0 0 0 4.2 4.6A16 16 0 0 1 8.2 13H5.1Zm5.1 0c.2 2.2.8 4.1 1.8 6 1-1.9 1.6-3.8 1.8-6h-3.6Zm5.6 0c-.2 1.8-.5 3.4-1.1 4.6a8 8 0 0 0 4.2-4.6h-3.1Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm6.9 9a8 8 0 0 0-2.2-4.6A14 14 0 0 1 15.8 11h3.1Zm-5.1 0c-.2-2.2-.8-4.1-1.8-6-1 1.9-1.6 3.8-1.8 6h3.6Zm-5.6 0c.2-1.8.5-3.4 1.1-4.6A8 8 0 0 0 5.1 11h3.1Zm-3.1 2a8 8 0 0 0 4.2 4.6A16 16 0 0 1 8.2 13H5.1Zm5.1 0c.2 2.2.8 4.1 1.8 6 1-1.9 1.6-3.8 1.8-6h-3.6Zm5.6 0c-.2 1.8-.5 3.4-1.1 4.6a8 8 0 0 0 4.2-4.6h-3.1Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-ai-language::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h9v2H6v5h7v2H8l-2 3v-3H4V4Zm11 4h5v12h-2l-1-2h-5l-1 2H9l4.8-12H15Zm-2.2 8h3.4L14.5 11l-1.7 5Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h9v2H6v5h7v2H8l-2 3v-3H4V4Zm11 4h5v12h-2l-1-2h-5l-1 2H9l4.8-12H15Zm-2.2 8h3.4L14.5 11l-1.7 5Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-ai-write::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 2h8v2H8V8Zm0 4h8v2H8v-2Zm0 4h5v2H8v-2Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 2h8v2H8V8Zm0 4h8v2H8v-2Zm0 4h5v2H8v-2Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-ai-photo::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v14H4V5Zm2 2v10h12V7H6Zm2 8 2.7-3.5 2 2.4 1.6-2.1L17 15H8Zm8-7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v14H4V5Zm2 2v10h12V7H6Zm2 8 2.7-3.5 2 2.4 1.6-2.1L17 15H8Zm8-7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-user::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0 2c4.4 0 8 2.2 8 5v3H4v-3c0-2.8 3.6-5 8-5Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0 2c4.4 0 8 2.2 8 5v3H4v-3c0-2.8 3.6-5 8-5Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-bag::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V6a5 5 0 0 1 10 0v1h3v15H4V7h3Zm2 0h6V6a3 3 0 0 0-6 0v1Zm-3 2v11h12V9H6Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7V6a5 5 0 0 1 10 0v1h3v15H4V7h3Zm2 0h6V6a3 3 0 0 0-6 0v1Zm-3 2v11h12V9H6Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-cart::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.2 6l.8 4h10.6l1.1-4H6.2ZM4 3H1v2h2.4l2.2 11H18v-2H7.2l-.4-2H19l2-8H5.8L5.4 2.8A1 1 0 0 0 4.4 2H4v1Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.2 6l.8 4h10.6l1.1-4H6.2ZM4 3H1v2h2.4l2.2 11H18v-2H7.2l-.4-2H19l2-8H5.8L5.4 2.8A1 1 0 0 0 4.4 2H4v1Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-trend::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 18h16v2H4v-2Zm1-2 5-5 3 3 6-7v4h2V3h-8v2h4l-4.2 4.9-3-3L3.6 15.1 5 16Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 18h16v2H4v-2Zm1-2 5-5 3 3 6-7v4h2V3h-8v2h4l-4.2 4.9-3-3L3.6 15.1 5 16Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-home::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 3 9 8h-3v10h-5v-6h-2v6H6V11H3l9-8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 3 9 8h-3v10h-5v-6h-2v6H6V11H3l9-8Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-eye::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.5 0 9 5.2 9 7s-3.5 7-9 7-9-5.2-9-7 3.5-7 9-7Zm0 2c-4.16 0-6.8 3.6-7 5 .2 1.4 2.84 5 7 5s6.8-3.6 7-5c-.2-1.4-2.84-5-7-5Zm0 2.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.5 0 9 5.2 9 7s-3.5 7-9 7-9-5.2-9-7 3.5-7 9-7Zm0 2c-4.16 0-6.8 3.6-7 5 .2 1.4 2.84 5 7 5s6.8-3.6 7-5c-.2-1.4-2.84-5-7-5Zm0 2.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-settings::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.4 13.5c.1-.5.1-1 .1-1.5s0-1-.1-1.5l2.1-1.6-2-3.5-2.5 1a7.6 7.6 0 0 0-2.6-1.5L14 2h-4l-.4 2.9A7.6 7.6 0 0 0 7 6.4l-2.5-1-2 3.5 2.1 1.6c-.1.5-.1 1-.1 1.5s0 1 .1 1.5l-2.1 1.6 2 3.5 2.5-1c.8.6 1.7 1.1 2.6 1.5L10 22h4l.4-2.9c.9-.4 1.8-.9 2.6-1.5l2.5 1 2-3.5-2.1-1.6ZM12 15.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.4 13.5c.1-.5.1-1 .1-1.5s0-1-.1-1.5l2.1-1.6-2-3.5-2.5 1a7.6 7.6 0 0 0-2.6-1.5L14 2h-4l-.4 2.9A7.6 7.6 0 0 0 7 6.4l-2.5-1-2 3.5 2.1 1.6c-.1.5-.1 1-.1 1.5s0 1 .1 1.5l-2.1 1.6 2 3.5 2.5-1c.8.6 1.7 1.1 2.6 1.5L10 22h4l.4-2.9c.9-.4 1.8-.9 2.6-1.5l2.5 1 2-3.5-2.1-1.6ZM12 15.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z'/%3E%3C/svg%3E"); }
.mzya-cms-page--seller .mzya-icon-shield::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 5 5v6c0 4.55 2.91 8.66 7 10 4.09-1.34 7-5.45 7-10V5l-7-3Zm0 2.2 5 2.14V11c0 3.35-1.93 6.43-5 7.72C8.93 17.43 7 14.35 7 11V6.34l5-2.14Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 5 5v6c0 4.55 2.91 8.66 7 10 4.09-1.34 7-5.45 7-10V5l-7-3Zm0 2.2 5 2.14V11c0 3.35-1.93 6.43-5 7.72C8.93 17.43 7 14.35 7 11V6.34l5-2.14Z'/%3E%3C/svg%3E"); }

/* Banner */
.mzya-cms-page--seller .mzya-cms-banner {
    overflow: hidden;
    padding: 26px 30px;
    border: 1px solid rgba(228, 162, 36, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(228, 162, 36, 0.14), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #ffffff 62%, #f2f8f8 100%);
    box-shadow: 0 14px 34px rgba(22, 59, 102, 0.07);
}

.mzya-cms-page--seller .mzya-cms-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mzya-cms-page--seller .mzya-cms-banner h3 {
    margin: 0 0 8px;
    color: var(--mzya-ink, #102f53);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.mzya-cms-page--seller .mzya-cms-banner p {
    margin: 0;
    color: var(--mzya-muted, #667085);
    font-size: 14.5px;
    line-height: 1.75;
}

/* Steps */
.mzya-cms-page--seller .mzya-cms-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mzya-cms-page--seller .mzya-cms-step {
    position: relative;
    min-height: 250px;
    padding: 30px 22px 26px;
    text-align: center;
}

.mzya-cms-page--seller .mzya-cms-step-no {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--mzya-blue, #2c5792);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.mzya-cms-page--seller .mzya-cms-step-media {
    margin-top: 20px;
}

/* Mini grid */
.mzya-cms-page--seller .mzya-cms-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.mzya-cms-page--seller .mzya-cms-mini {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px 22px;
}

.mzya-cms-page--seller .mzya-cms-mini-ico {
    width: 46px;
    height: 46px;
    margin: 0;
}

.mzya-cms-page--seller .mzya-cms-mini-ico::before {
    width: 22px;
    height: 22px;
}

.mzya-cms-page--seller .mzya-cms-mini h4 {
    margin: 0 0 5px;
    color: var(--mzya-ink, #102f53);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

/* FAQ */
.mzya-cms-page--seller .mzya-cms-faq {
    max-width: 920px;
    margin: 0 auto;
}

.mzya-cms-page--seller .mzya-cms-faq details {
    border: 1px solid rgba(232, 237, 244, 0.98);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(22, 59, 102, 0.05);
    overflow: hidden;
}

.mzya-cms-page--seller .mzya-cms-faq details + details {
    margin-top: 10px;
}

.mzya-cms-page--seller .mzya-cms-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 17px 20px;
    color: var(--mzya-ink, #102f53);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.mzya-cms-page--seller .mzya-cms-faq summary::-webkit-details-marker {
    display: none;
}

.mzya-cms-page--seller .mzya-cms-faq summary::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-inline-end: 10px;
    border-radius: 999px;
    background: var(--mzya-blue-soft, #edf4fb);
    color: var(--mzya-blue, #2c5792);
    font-size: 16px;
    font-weight: 800;
    vertical-align: -2px;
}

.mzya-cms-page--seller .mzya-cms-faq details[open] summary::before {
    content: "−";
}

.mzya-cms-page--seller .mzya-cms-faq-answer {
    padding: 0 20px 18px;
    color: var(--mzya-muted, #667085);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.75;
}

/* Final CTA */
.mzya-cms-page--seller .mzya-cms-final {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(228, 162, 36, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.52), transparent 28%),
        linear-gradient(135deg, var(--mzya-gold, #e4a224) 0%, #f59a09 100%);
    color: #ffffff;
    box-shadow: 0 24px 46px rgba(228, 162, 36, 0.24);
}

.mzya-cms-page--seller .mzya-cms-final h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.mzya-cms-page--seller .mzya-cms-final p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

.mzya-cms-page--seller .mzya-cms-final .mzya-cms-btn.is-primary {
    border-color: #ffffff;
    background: var(--mzya-blue, #2c5792);
    color: #ffffff !important;
}

/* RTL */
.mzya-cms-page--seller[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-hero-title,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-subtitle,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-banner,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-final {
    text-align: right;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-title,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-lead,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-feature,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-step {
    text-align: center;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-proof-row,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-btns {
    justify-content: flex-start;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-mini {
    text-align: right;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-faq summary,
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-faq-answer {
    text-align: right;
}

/* Responsive */
@media (max-width: 1100px) {
    .mzya-cms-page--seller .mzya-cms-hero-grid {
        grid-template-columns: 1fr;
    }

    .mzya-cms-page--seller .mzya-cms-hero-art {
        justify-content: flex-start;
    }

    .mzya-cms-page--seller[dir="rtl"] .mzya-cms-hero-art {
        justify-content: flex-end;
    }

    .mzya-cms-page--seller .mzya-cms-stats-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mzya-cms-page--seller .mzya-cms-stat-sep {
        display: none;
    }

    .mzya-cms-page--seller .mzya-cms-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mzya-cms-page--seller .mzya-cms-grid-3 {
        grid-template-columns: 1fr;
    }

    .mzya-cms-page--seller .mzya-cms-banner-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .mzya-cms-page--seller {
        padding: 18px 12px 42px;
    }

    .mzya-cms-page--seller .mzya-cms-section {
        margin-bottom: 28px;
    }

    .mzya-cms-page--seller .mzya-cms-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .mzya-cms-page--seller .mzya-cms-hero-title {
        font-size: 31px;
    }

    .mzya-cms-page--seller .mzya-cms-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }

    .mzya-cms-page--seller .mzya-cms-btns {
        width: 100%;
    }

    .mzya-cms-page--seller .mzya-cms-btn {
        width: 100%;
        white-space: normal;
        min-height: 44px;
        text-align: center;
    }

    .mzya-cms-page--seller .mzya-cms-proof-item {
        white-space: normal;
    }

    .mzya-cms-page--seller .mzya-cms-stats-v2,
    .mzya-cms-page--seller .mzya-cms-steps,
    .mzya-cms-page--seller .mzya-cms-mini-grid {
        grid-template-columns: 1fr;
    }

    .mzya-cms-page--seller .mzya-cms-stats-v2 {
        padding: 12px;
        border-radius: 22px;
    }

    .mzya-cms-page--seller .mzya-cms-stat-card {
        min-height: 118px;
    }

    .mzya-cms-page--seller .mzya-cms-card,
    .mzya-cms-page--seller .mzya-cms-panel {
        border-radius: 20px;
    }

    .mzya-cms-page--seller .mzya-cms-feature,
    .mzya-cms-page--seller .mzya-cms-step {
        min-height: 0;
        padding: 24px 20px;
    }

    .mzya-cms-page--seller .mzya-cms-step-media {
        margin-top: 14px;
    }

    .mzya-cms-page--seller .mzya-cms-mini {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
    }

    .mzya-cms-page--seller .mzya-cms-mini-ico {
        width: 40px;
        height: 40px;
    }

    .mzya-cms-page--seller .mzya-cms-feature-ico,
    .mzya-cms-page--seller .mzya-cms-step-media {
        width: 58px;
        height: 58px;
    }

    .mzya-cms-page--seller .mzya-cms-banner,
    .mzya-cms-page--seller .mzya-cms-final {
        padding: 22px 20px;
        border-radius: 22px;
    }
}
/* =========================================================
   CMS SELLER PAGE - "Mzya vous aide même si vous débutez"
   Better mini cards layout
   Paste at the END of mzya-cms.css
========================================================= */

.mzya-cms-page--seller .mzya-cms-mini-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    max-width: 1120px;
    margin: 34px auto 0 !important;
}

.mzya-cms-page--seller .mzya-cms-mini {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    grid-template-areas:
        "icon title"
        "icon text" !important;
    align-items: start !important;
    gap: 6px 16px !important;

    min-height: 150px !important;
    padding: 24px 24px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 92% 12%, rgba(228, 162, 36, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #f7fbfb 100%) !important;
    border: 1px solid rgba(226, 237, 244, 0.98) !important;
    box-shadow: 0 14px 34px rgba(22, 59, 102, 0.07) !important;
    overflow: hidden !important;
}

.mzya-cms-page--seller .mzya-cms-mini:hover {
    transform: translateY(-3px);
    border-color: rgba(44, 87, 146, 0.18) !important;
    box-shadow: 0 20px 42px rgba(22, 59, 102, 0.11) !important;
}

.mzya-cms-page--seller .mzya-cms-mini-ico {
    grid-area: icon !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 72% 20%, rgba(228, 162, 36, 0.22), transparent 34%),
        #f8fbfd !important;
    box-shadow: 0 10px 24px rgba(22, 59, 102, 0.08) !important;
}

.mzya-cms-page--seller .mzya-cms-mini h4 {
    grid-area: title !important;
    margin: 2px 0 0 !important;
    color: var(--mzya-ink) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.mzya-cms-page--seller .mzya-cms-mini p {
    grid-area: text !important;
    max-width: none !important;
    width: auto !important;
    margin: 0 !important;
    color: var(--mzya-text) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    text-align: start !important;
}

/* RTL support for Arabic CMS page */
.mzya-cms-page--seller[dir="rtl"] .mzya-cms-mini,
html[dir="rtl"] .mzya-cms-page--seller .mzya-cms-mini {
    direction: rtl !important;
    text-align: right !important;
}

.mzya-cms-page--seller[dir="rtl"] .mzya-cms-mini p,
html[dir="rtl"] .mzya-cms-page--seller .mzya-cms-mini p {
    text-align: right !important;
}

/* Tablet */
@media (max-width: 991px) {
    .mzya-cms-page--seller .mzya-cms-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .mzya-cms-page--seller .mzya-cms-mini-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 24px !important;
    }

    .mzya-cms-page--seller .mzya-cms-mini {
        min-height: auto !important;
        padding: 20px !important;
        border-radius: 20px !important;
        grid-template-columns: 44px minmax(0, 1fr) !important;
        gap: 5px 14px !important;
    }

    .mzya-cms-page--seller .mzya-cms-mini-ico {
        width: 42px !important;
        height: 42px !important;
    }

    .mzya-cms-page--seller .mzya-cms-mini h4 {
        font-size: 15px !important;
    }

    .mzya-cms-page--seller .mzya-cms-mini p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }
}
/* =========================================================
   CMS HERO PROOF TAGS / BADGES
   Used in legal/about/CMS hero pages:
   .mzya-cms-proof-row > .mzya-cms-proof-item
   Paste at the END of mzya-cms.css
========================================================= */

.mzya-cms-page .mzya-cms-proof-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 24px !important;
}

.mzya-cms-page .mzya-cms-proof-item {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-height: 36px !important;
    padding: 0 15px !important;
    border: 1px solid rgba(44, 87, 146, 0.16) !important;
    border-radius: 999px !important;

    background:
        radial-gradient(circle at 92% 10%, rgba(228, 162, 36, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%) !important;

    color: var(--mzya-blue-dark, #163b66) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-decoration: none !important;

    box-shadow: 0 10px 22px rgba(22, 59, 102, 0.07) !important;
}

.mzya-cms-page .mzya-cms-proof-item::before {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    flex: 0 0 8px !important;
    border-radius: 999px !important;
    background: var(--mzya-blue, #2c5792) !important;
    box-shadow: 0 0 0 4px rgba(44, 87, 146, 0.10) !important;
}

.mzya-cms-page .mzya-cms-proof-item:nth-child(2) {
    border-color: rgba(184, 88, 39, 0.18) !important;
    background:
        radial-gradient(circle at 92% 10%, rgba(184, 88, 39, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff8f3 100%) !important;
    color: var(--mzya-clay, #b85827) !important;
}

.mzya-cms-page .mzya-cms-proof-item:nth-child(2)::before {
    background: var(--mzya-clay, #b85827) !important;
    box-shadow: 0 0 0 4px rgba(184, 88, 39, 0.10) !important;
}

.mzya-cms-page .mzya-cms-proof-item:nth-child(3) {
    border-color: rgba(96, 140, 144, 0.20) !important;
    background:
        radial-gradient(circle at 92% 10%, rgba(96, 140, 144, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f3faf9 100%) !important;
    color: var(--mzya-teal, #608c90) !important;
}

.mzya-cms-page .mzya-cms-proof-item:nth-child(3)::before {
    background: var(--mzya-teal, #608c90) !important;
    box-shadow: 0 0 0 4px rgba(96, 140, 144, 0.12) !important;
}

/* RTL CMS pages */
html[dir="rtl"] .mzya-cms-page .mzya-cms-proof-row,
.mzya-cms-page[dir="rtl"] .mzya-cms-proof-row,
.mzya-cms-page[style*="rtl"] .mzya-cms-proof-row {
    direction: rtl !important;
    justify-content: flex-start !important;
}

html[dir="rtl"] .mzya-cms-page .mzya-cms-proof-item,
.mzya-cms-page[dir="rtl"] .mzya-cms-proof-item,
.mzya-cms-page[style*="rtl"] .mzya-cms-proof-item {
    direction: rtl !important;
}

/* Mobile */
@media (max-width: 640px) {
    .mzya-cms-page .mzya-cms-proof-row {
        gap: 8px !important;
        margin-top: 18px !important;
    }

    .mzya-cms-page .mzya-cms-proof-item {
        min-height: 34px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        white-space: normal !important;
        line-height: 1.35 !important;
    }
}
