/* ===== BEGIN lux-catalogue-public.css ===== */
/* Lux Premium Catalogue Theme */

:root {
    --mf-primary: #0a84ff;
    --mf-primary-rgb: 10, 132, 255;
    --mf-primary-dark: #0066d6;
    --mf-primary-soft: rgba(var(--mf-primary-rgb), 0.12);
    /* Explicit light / daylight tokens — never inherit admin dark theme vars */
    --mf-bg: #f5f5f7;
    --mf-surface: #ffffff;
    --mf-surface-2: #fbfbfd;
    --mf-text: #1d1d1f;
    --mf-text-light: #6e6e73;
    --mf-border: rgba(0, 0, 0, 0.08);
    --mf-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --mf-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.12);
    --mf-radius: 18px;
    --mf-radius-sm: 14px;
    --mf-container: 1240px;
    --mf-header-height: 72px;
    --mf-success: #30d158;
    --mf-danger: #ff3b30;
}

/* Force daylight storefront even if parent admin CSS is dark */
html:has(body.mf-catalogue-body),
body.mf-catalogue-body,
.mf-catalogue-body {
    background: var(--mf-bg) !important;
    color: var(--mf-text) !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif !important;
    margin: 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    color-scheme: light !important;
}

.mf-store {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(var(--mf-primary-rgb), 0.08), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.04), transparent 24%),
        var(--mf-bg);
}

.mf-store--premium::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 80%);
    opacity: 0.35;
    z-index: 0;
}

.mf-store--premium > * {
    position: relative;
    z-index: 1;
}

.mf-container {
    max-width: var(--mf-container);
    margin: 0 auto;
    padding: 0 15px;
}

/* ── Promo bar ── */
.mf-promo-bar {
    background: var(--mf-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.mf-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 8px 15px;
    flex-wrap: wrap;
}

.mf-promo-inner i {
    margin-right: 6px;
}

.mf-promo-address {
    opacity: 0.92;
}

/* ── Header ── */
.mf-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), var(--mf-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mf-header--premium {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.mf-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 16px 15px;
    min-height: var(--mf-header-height);
}

.mf-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--mf-text);
    flex-shrink: 0;
}

.mf-logo-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
/* Soft plate only when no real logo image (icon fallback) */
.mf-logo-mark--icon,
.mf-logo-mark:not(:has(> img)) {
    background: linear-gradient(145deg, #fff, var(--mf-surface-2));
    border: 1px solid var(--mf-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(15, 23, 42, 0.08);
}
.mf-logo-mark--img,
.mf-logo-mark:has(> img) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
}

.mf-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    background: transparent !important;
}

.mf-logo-fallback {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--mf-primary);
    background: var(--mf-primary-soft);
}

.mf-logo-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mf-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.mf-logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--mf-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.mf-header-nav {
    display: flex;
    gap: 1.75rem;
}

.mf-header-nav a {
    color: var(--mf-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.mf-header-nav a:hover {
    color: var(--mf-primary);
}

.mf-header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--mf-radius);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.mf-btn--primary {
    background: linear-gradient(135deg, var(--mf-primary), var(--mf-primary-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(var(--mf-primary-rgb), 0.28);
}

.mf-btn--primary:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 16px 30px rgba(var(--mf-primary-rgb), 0.34);
}

.mf-btn--hero {
    background: linear-gradient(135deg, var(--mf-primary), var(--mf-primary-dark));
    color: #fff;
    padding: 14px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 14px 30px rgba(var(--mf-primary-rgb), 0.28);
}

.mf-btn--hero:hover {
    transform: translateY(-1px);
    color: #fff;
}

/* ── Category bar ── */
.mf-cat-bar {
    border-top: 1px solid var(--mf-border);
    background: #fafafa;
}

.mf-cat-bar .mf-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
}

.mf-all-cats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--mf-primary);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
}

.mf-cat-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    flex: 1;
    padding: 8px 0;
    scrollbar-width: none;
}

.mf-cat-scroll::-webkit-scrollbar {
    display: none;
}

.mf-cat-scroll a {
    flex-shrink: 0;
    padding: 8px 16px;
    color: var(--mf-text-light);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--mf-radius);
    transition: color 0.2s, background 0.2s;
}

.mf-cat-scroll a:hover {
    color: var(--mf-primary);
    background: rgba(0, 0, 0, 0.04);
}

/* ── Hero slider ── */
.mf-hero {
    position: relative;
    margin: 24px 0;
    border-radius: calc(var(--mf-radius) + 4px);
    overflow: hidden;
    background: var(--mf-surface);
    box-shadow: var(--mf-shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mf-hero--slider {
    min-height: 380px;
}

.mf-hero-slide {
    display: none;
    position: relative;
    min-height: 380px;
}

.mf-hero-slide.is-active {
    display: block;
    animation: mfFadeIn 0.5s ease;
}

@keyframes mfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mf-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.mf-hero-placeholder {
    height: 380px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.mf-hero-caption {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 70%, transparent 100%);
}

.mf-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mf-primary);
    margin-bottom: 10px;
}

.mf-hero-caption h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--mf-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.mf-hero--static {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 48px 40px;
    min-height: auto;
}

.mf-hero-static h1 {
    margin: 8px 0 0;
    font-size: 2rem;
    font-weight: 800;
    color: var(--mf-text);
}

.mf-hero-static p {
    margin: 10px 0 20px;
    color: var(--mf-text-light);
    font-size: 15px;
}

.mf-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--mf-text);
    box-shadow: var(--mf-shadow);
    cursor: pointer;
    z-index: 5;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.mf-hero-arrow:hover {
    background: var(--mf-primary);
    color: #fff;
}

.mf-hero-prev { left: 16px; }
.mf-hero-next { right: 16px; }

.mf-hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.mf-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mf-hero-dot.is-active {
    background: var(--mf-primary);
    border-color: var(--mf-primary);
}

/* ── Top categories ── */
.mf-top-categories {
    padding: 28px 0;
    background: var(--mf-surface);
    margin-bottom: 20px;
    box-shadow: var(--mf-shadow);
}

.mf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.mf-section-head h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mf-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-section-accent {
    display: inline-block;
    width: 4px;
    height: 22px;
    background: var(--mf-primary);
    border-radius: 2px;
}

.mf-section-desc {
    margin: 0;
    font-size: 13px;
    color: var(--mf-text-light);
    width: 100%;
}

.mf-link-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--mf-primary);
    text-decoration: none;
}

.mf-cat-icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 16px;
}

.mf-cat-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 10px;
    text-decoration: none;
    color: var(--mf-text);
    border-radius: var(--mf-radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mf-cat-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--mf-shadow-hover);
}

.mf-cat-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 2px solid var(--mf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mf-primary);
    transition: border-color 0.2s, background 0.2s;
}

.mf-cat-icon:hover .mf-cat-icon-circle {
    border-color: var(--mf-primary);
    background: #fff;
}

.mf-cat-icon-name {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.mf-cat-icon-count {
    font-size: 11px;
    color: var(--mf-text-light);
}

/* ── Product sections ── */
.mf-product-section {
    padding: 36px 0 44px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: var(--mf-shadow);
    border-block: 1px solid rgba(255, 255, 255, 0.75);
}

.mf-product-grid {
    display: grid;
    gap: 24px;
}

.mf-product-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mf-product-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Product card (Premium) ── */
.mf-product-card {
    position: relative;
    height: 100%;
}

.mf-product-card-inner {
    background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--mf-radius);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--mf-shadow);
}

.mf-product-card:hover .mf-product-card-inner {
    transform: translateY(-6px);
    box-shadow: var(--mf-shadow-hover);
    border-color: rgba(var(--mf-primary-rgb), 0.22);
}

.mf-product-media {
    position: relative;
    padding: 18px 18px 0;
}

.mf-product-badges {
    position: absolute;
    top: 26px;
    inset-inline-start: 26px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.mf-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.mf-badge--sale {
    background: linear-gradient(135deg, var(--lux-danger), var(--lux-danger-strong));
    color: #fff;
}

.mf-badge--hot {
    background: linear-gradient(135deg, var(--mf-primary), var(--mf-primary-dark));
    color: #fff;
}

.mf-badge--options {
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
}

.mf-product-img-link {
    display: block;
}

.mf-product-img-frame {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
}

.mf-product-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mf-product-card:hover .mf-product-img-frame img {
    transform: scale(1.08);
}

.mf-product-hover {
    position: absolute;
    inset: 18px 18px 0;
    border-radius: calc(var(--mf-radius) - 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.55));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

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

.mf-product-view-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--mf-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(8px);
    transition: transform 0.28s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.mf-product-card:hover .mf-product-view-btn {
    transform: translateY(0);
}

.mf-product-view-btn:hover {
    background: var(--mf-primary);
    color: #fff;
}

.mf-product-body {
    padding: 18px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mf-product-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mf-product-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-primary-dark);
}

.mf-product-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mf-text-light);
    background: var(--mf-surface-2);
    border: 1px solid var(--mf-border);
    padding: 4px 8px;
    border-radius: 999px;
}

.mf-product-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
}

.mf-product-title a {
    color: var(--mf-text);
    text-decoration: none;
    transition: color 0.2s;
}

.mf-product-title a:hover {
    color: var(--mf-primary);
}

.mf-product-sku-line {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.mf-product-sku-label {
    color: var(--mf-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mf-product-sku-value {
    color: var(--lux-muted);
    font-weight: 700;
}

.mf-product-price-row {
    margin-top: 2px;
    padding-top: 0;
}

.mf-product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.mf-price-from {
    font-size: 11px;
    color: var(--mf-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mf-price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--mf-text);
    letter-spacing: -0.03em;
}

.mf-price-range {
    font-size: 13px;
    color: var(--mf-text-light);
    font-weight: 600;
}

.mf-product-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    margin-top: 4px;
}

.mf-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--mf-radius-sm);
    background: var(--mf-surface-2);
    color: var(--mf-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mf-product-cta:hover {
    background: rgba(var(--mf-primary-rgb), 0.12);
    color: var(--mf-primary-dark);
    transform: translateX(2px);
}

.mf-product-cta i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.mf-product-cta:hover i {
    transform: translateX(3px);
}

/* ── Shop layout with sidebar ── */
.mf-shop-layout {
    padding-bottom: 40px;
}

.mf-shop-inner {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.mf-sidebar {
    position: sticky;
    top: 130px;
}

.mf-sidebar-widget {
    background: var(--mf-surface);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius);
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: var(--mf-shadow);
}

.mf-sidebar-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mf-text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mf-primary);
}

.mf-sidebar-cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mf-sidebar-cats li {
    border-bottom: 1px solid #f0f0f0;
}

.mf-sidebar-cats li:last-child {
    border-bottom: none;
}

.mf-sidebar-cats a {
    display: block;
    padding: 10px 0;
    color: var(--mf-text-light);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.mf-sidebar-cats a:hover {
    color: var(--mf-primary);
    padding-left: 6px;
}

.mf-sidebar-widget--info p {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--mf-text-light);
}

.mf-sidebar-count {
    font-weight: 700;
    color: var(--mf-primary) !important;
}

.mf-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 22px 24px;
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(var(--mf-primary-rgb), 0.05));
    box-shadow: var(--mf-shadow);
    gap: 16px;
}

.mf-shop-toolbar--premium {
    align-items: flex-end;
}

.mf-shop-toolbar-copy h2 {
    margin: 6px 0 0;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mf-shop-toolbar-desc {
    margin: 8px 0 0;
    max-width: 520px;
    color: var(--mf-text-light);
    font-size: 14px;
}

.mf-shop-toolbar-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--mf-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mf-shop-count-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mf-primary-dark);
    line-height: 1;
}

.mf-shop-count {
    font-size: 12px;
    color: var(--mf-text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mf-category-block {
    margin-bottom: 42px;
    padding: 24px;
    border-radius: calc(var(--mf-radius) + 4px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--mf-shadow);
}

.mf-category-title {
    margin: 0 0 22px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--mf-text);
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mf-border);
    position: relative;
}

.mf-category-title::before {
    content: '';
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mf-primary), transparent);
    flex-shrink: 0;
}

.mf-category-count {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--mf-primary), var(--mf-primary-dark));
    padding: 6px 10px;
    border-radius: 999px;
    margin-inline-start: auto;
}

/* ── Footer ── */
.mf-footer {
    background: linear-gradient(180deg, var(--lux-dt-head-bg) 0%, var(--lux-sidebar-bg) 100%);
    color: #cbd5e1;
    margin-top: 28px;
}

.mf-footer-brand .mf-footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.mf-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding: 40px 15px;
}

.mf-footer-col h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mf-footer-col p,
.mf-footer-col a {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.mf-footer-col a:hover {
    color: var(--mf-primary);
}

.mf-footer-bottom {
    border-top: 1px solid #333;
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* ── Floating elements ── */
.mf-scrolltop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--mf-primary);
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: var(--mf-shadow-hover);
}

.mf-scrolltop.is-visible {
    display: inline-flex;
}

.mf-whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

/* ── Unavailable page ── */
.lux-catalogue-public .lux-cat-unavailable {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lux-catalogue-public .lux-cat-unavailable-card {
    background: var(--mf-surface);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: var(--mf-shadow);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .mf-product-grid--5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .mf-product-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mf-shop-inner {
        grid-template-columns: 1fr;
    }

    .mf-sidebar {
        position: static;
        display: none;
    }

    .mf-sidebar.is-open {
        display: block;
    }

    .mf-header-nav {
        display: none;
    }

    .mf-product-grid--5,
    .mf-product-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mf-hero-caption {
        width: 65%;
    }
}

@media (max-width: 767px) {
    .mf-product-grid--5,
    .mf-product-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mf-product-hover {
        opacity: 1;
        background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.42));
    }

    .mf-product-view-btn {
        transform: translateY(0);
        position: absolute;
        bottom: 12px;
        inset-inline: 12px;
        justify-content: center;
    }

    .mf-shop-toolbar--premium {
        align-items: stretch;
        flex-direction: column;
    }

    .mf-shop-toolbar-meta {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .mf-logo-text,
    .mf-logo-sub {
        max-width: 160px;
    }

    .mf-category-block {
        padding: 16px;
    }

    .mf-hero--slider,
    .mf-hero-slide,
    .mf-hero-img,
    .mf-hero-placeholder {
        min-height: 260px;
        height: 260px;
    }

    .mf-hero-caption {
        width: 100%;
        padding: 24px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
        justify-content: flex-end;
    }

    .mf-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mf-cat-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .mf-product-grid--5,
    .mf-product-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ── Language switcher ── */
.mf-lang-switcher {
    position: relative;
}

.mf-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius);
    background: var(--mf-surface);
    color: var(--mf-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.mf-lang-caret {
    font-size: 10px;
    opacity: 0.7;
}

.mf-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    inset-inline-end: 0;
    min-width: 160px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: var(--mf-surface);
    border: 1px solid var(--mf-border);
    border-radius: var(--mf-radius);
    box-shadow: var(--mf-shadow-hover);
    display: none;
    z-index: 120;
    max-height: 280px;
    overflow-y: auto;
}

.mf-lang-menu.is-open {
    display: block;
}

.mf-lang-menu a {
    display: block;
    padding: 8px 14px;
    color: var(--mf-text);
    text-decoration: none;
    font-size: 13px;
}

.mf-lang-menu a:hover,
.mf-lang-menu a.is-active {
    background: rgba(221, 153, 51, 0.12);
    color: var(--mf-primary-dark);
}

/* ── About us (professional) ── */
.mf-about-section--pro {
    padding: 56px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--mf-primary-rgb), 0.04) 100%);
    border-block: 1px solid var(--mf-border);
}

.mf-about-pro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.mf-about-pro-media {
    position: relative;
}

.mf-about-pro-image-frame {
    border-radius: calc(var(--mf-radius) + 8px);
    overflow: hidden;
    box-shadow: var(--mf-shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.9);
    aspect-ratio: 4/3;
}

.mf-about-pro-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-about-pro-accent {
    position: absolute;
    inset-inline-end: -16px;
    bottom: -16px;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--mf-primary), transparent);
    opacity: 0.35;
    z-index: -1;
}

.mf-about-pro-content h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.mf-about-pro-subtitle {
    margin: 0 0 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mf-primary-dark);
    line-height: 1.5;
}

.mf-about-pro-body {
    color: var(--mf-text-light);
    line-height: 1.8;
    font-size: 15px;
}

.mf-about-pro-body h1,
.mf-about-pro-body h2,
.mf-about-pro-body h3 {
    color: var(--mf-text);
    margin: 1.2em 0 0.5em;
    font-weight: 800;
}

.mf-about-pro-body p {
    margin: 0 0 1em;
}

.mf-about-pro-body ul,
.mf-about-pro-body ol {
    margin: 0 0 1em;
    padding-inline-start: 1.25em;
}

.mf-about-pro-body li {
    margin-bottom: 0.35em;
}

.mf-about-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.mf-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mf-primary);
}

/* ── Branches section ── */
.mf-branches-section {
    padding: 40px 0 44px;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--mf-border);
}

.mf-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.mf-branch-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: var(--mf-radius);
    background: #fff;
    border: 1px solid var(--mf-border);
    box-shadow: var(--mf-shadow);
    text-decoration: none;
    color: var(--mf-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mf-branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mf-shadow-hover);
    border-color: rgba(var(--mf-primary-rgb), 0.28);
}

.mf-branch-card.is-current {
    border-color: rgba(var(--mf-primary-rgb), 0.4);
    background: linear-gradient(180deg, #fff, rgba(var(--mf-primary-rgb), 0.05));
}

.mf-branch-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mf-primary-soft);
    color: var(--mf-primary-dark);
    font-size: 1.1rem;
}

.mf-branch-name {
    font-size: 1rem;
    font-weight: 800;
}

.mf-branch-address {
    font-size: 13px;
    color: var(--mf-text-light);
    line-height: 1.45;
}

.mf-branch-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(var(--mf-primary-rgb), 0.12);
    color: var(--mf-primary-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.mf-branch-link-label {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--mf-primary-dark);
}

/* ── Product modal ── */
.mf-product-modal {
    width: min(960px, 96vw);
    margin: 20px auto;
}

.mf-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    position: relative;
}

.mf-modal-close {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    z-index: 5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mf-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0;
}

.mf-modal-gallery {
    background: #f8f8f8;
    padding: 24px;
}

.mf-modal-image-wrap {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mf-modal-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mf-modal-discount {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
}

.mf-modal-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mf-modal-thumb {
    width: 56px;
    height: 56px;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.mf-modal-thumb.is-active {
    border-color: var(--mf-primary);
}

.mf-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-modal-info {
    padding: 28px 28px 24px;
}

.mf-modal-cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--mf-primary);
    letter-spacing: 0.06em;
}

.mf-modal-title {
    margin: 6px 0 8px;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
}

.mf-modal-sku {
    color: var(--mf-text-light);
    font-size: 13px;
    margin-bottom: 16px;
}

.mf-modal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--mf-border);
}

.mf-modal-price-label {
    font-size: 13px;
    color: var(--mf-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mf-modal-price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--mf-primary-dark);
}

.mf-modal-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.mf-modal-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--mf-border);
}

.mf-modal-meta-label {
    color: var(--mf-text-light);
}

.mf-modal-meta-value {
    font-weight: 600;
    text-align: end;
}

.mf-modal-description h4 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mf-modal-description-body {
    color: var(--mf-text-light);
    font-size: 14px;
    line-height: 1.65;
    max-height: 160px;
    overflow-y: auto;
}

.mf-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mf-btn--whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

.mf-btn--whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.mf-btn--ghost {
    background: transparent;
    border: 1px solid var(--mf-border);
    color: var(--mf-text);
}

.mf-modal-variations {
    padding: 0 24px 24px;
    border-top: 1px solid var(--mf-border);
}

.mf-modal-variations h4 {
    margin: 18px 0 12px;
    font-size: 15px;
    font-weight: 700;
}

.mf-variation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.mf-variation-card {
    border: 1px solid var(--mf-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.mf-variation-card-img {
    position: relative;
    height: 120px;
    background: #f5f5f5;
}

.mf-variation-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mf-variation-card-body {
    padding: 10px 12px;
}

.mf-variation-card-body h5 {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
}

.mf-variation-sku,
.mf-variation-qty {
    margin: 0;
    font-size: 12px;
    color: var(--mf-text-light);
}

.mf-variation-price {
    margin: 6px 0 0;
    font-weight: 700;
    color: var(--mf-primary-dark);
}

.product_modal .modal-content {
    background: transparent;
    box-shadow: none;
    border: none;
}

.product_modal .modal-dialog {
    margin: 30px auto;
}

/* ── RTL support ── */
[dir="rtl"] .mf-promo-inner i,
[dir="rtl"] .mf-link-all i,
[dir="rtl"] .mf-header-nav a,
[dir="rtl"] .mf-cat-scroll a {
    margin-inline: 0;
}

[dir="rtl"] .mf-hero-prev i.fa-chevron-left::before {
    content: "\f054";
}

[dir="rtl"] .mf-hero-next i.fa-chevron-right::before {
    content: "\f053";
}

[dir="rtl"] .mf-link-all .fa-arrow-right::before,
[dir="rtl"] .mf-product-cta .fa-arrow-right::before {
    content: "\f060";
}

[dir="rtl"] .mf-product-cta:hover {
    transform: translateX(-2px);
}

[dir="rtl"] .mf-product-cta:hover i {
    transform: translateX(-3px);
}

[dir="rtl"] .mf-branch-link-label .fa-arrow-right::before {
    content: "\f060";
}

[dir="rtl"] .mf-scrolltop {
    right: auto;
    left: 24px;
}

[dir="rtl"] .mf-whatsapp-float {
    left: auto;
    right: 24px;
}

[dir="rtl"] .mf-modal-meta-value {
    text-align: start;
}

@media (max-width: 767px) {
    .mf-about-pro,
    .mf-modal-grid {
        grid-template-columns: 1fr;
    }

    .mf-about-pro-accent {
        display: none;
    }

    .mf-modal-info {
        padding: 20px;
    }
}

/* ── Product detail page (PDP) ── */
.mf-header--compact .mf-header-main {
    min-height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.mf-btn--back {
    white-space: nowrap;
}

.mf-btn--lg {
    padding: 14px 24px;
    font-size: 14px;
}

.mf-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 0 8px;
    font-size: 13px;
    color: var(--mf-text-light);
}

.mf-breadcrumb a {
    color: var(--mf-text-light);
    text-decoration: none;
    font-weight: 600;
}

.mf-breadcrumb a:hover {
    color: var(--mf-primary);
}

.mf-breadcrumb-current {
    color: var(--mf-text);
    font-weight: 700;
}

.mf-breadcrumb-sep {
    opacity: 0.45;
    font-size: 10px;
}

/* ── PDP — WoodMart electronics style ── */
.mf-pdp,
.mf-store .mf-pdp,
.mf-store .wd-pdp {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 36px 48px;
    align-items: start;
    justify-content: stretch;
    padding: 12px 0 36px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: unset;
}

.mf-pdp-gallery,
.wd-gallery {
    position: sticky;
    top: calc(var(--mf-header-height, 70px) + 12px);
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    width: 100%;
    max-width: none !important;
    flex: unset !important;
    margin: 0 !important;
    order: unset !important;
}
.mf-pdp-gallery:not(:has(.wd-thumbs)),
.mf-pdp-gallery:not(:has(.mf-pdp-thumbs)) {
    grid-template-columns: 1fr;
}

.mf-pdp-thumbs,
.wd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    max-height: 520px;
    overflow-y: auto;
    padding: 0;
    scrollbar-width: thin;
}

.mf-pdp-thumb,
.wd-thumb {
    width: 68px;
    height: 78px;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 4px;
    cursor: pointer;
    box-shadow: none;
    overflow: hidden;
}
.mf-pdp-thumb.is-active,
.wd-thumb.is-active {
    border-color: var(--mf-primary, #243a76);
    box-shadow: 0 0 0 1px var(--mf-primary, #243a76);
}
.mf-pdp-thumb img,
.wd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mf-pdp-main-image,
.wd-main-image {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-height: none;
    min-height: 420px;
    border-radius: 12px;
    background: #f5f6f8;
    border: 1px solid #eceef2;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 28px;
    box-sizing: border-box;
}
.mf-pdp-main-image img,
.wd-main-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.mf-pdp-discount {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    z-index: 2;
}

.mf-pdp-info,
.wd-summary {
    order: unset !important;
    flex: unset !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 4px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: start;
    box-sizing: border-box;
}
[dir="rtl"] .mf-pdp,
[dir="rtl"] .mf-store .mf-pdp {
    direction: rtl;
}

.mf-pdp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.mf-pdp-cat,
.mf-pdp-brand {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.mf-pdp-cat {
    background: transparent;
    color: var(--mf-primary);
    padding: 0;
    font-weight: 600;
}
.mf-pdp-brand {
    background: #f3f4f6;
    color: #6b7280;
    border: 0;
}

.mf-pdp-title {
    margin: 0 0 6px;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.mf-pdp-sku {
    margin: 0 0 12px;
    color: #8a8f98;
    font-size: 13px;
}
.mf-pdp-sku strong {
    color: #4b5563;
    font-weight: 600;
}

.wd-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 0 0 12px;
}
.mf-pdp-price-value {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.mf-pdp-price-range,
.mf-price-from {
    font-size: 1rem;
    color: #8a8f98;
    font-weight: 500;
}

/* Simple stock line under price (summary only) */
.wd-stock-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0 0 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f7a45;
}
.wd-stock-line.is-out { color: #9f1239; }
.wd-stock-sep { color: #c7c7cc; font-weight: 500; }
.wd-stock-branch { color: #4b5563; font-weight: 600; }
.wd-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7c7cc;
    flex-shrink: 0;
}
.wd-stock-dot.is-ok {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.wd-stock-dot.is-out {
    background: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244,63,94,.12);
}

.wd-cart-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    margin: 0 0 12px;
}
.wd-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 48px;
}
.wd-qty-btn {
    width: 40px;
    height: 100%;
    border: 0;
    background: #f7f8fa;
    color: #1d1d1f;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}
.wd-qty-btn:hover { background: #eef0f4; }
.wd-qty-input {
    width: 48px;
    height: 100%;
    border: 0;
    border-inline: 1px solid #e8eaef;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: #1d1d1f;
    -moz-appearance: textfield;
}
.wd-qty-input::-webkit-outer-spin-button,
.wd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wd-add-btn {
    flex: 1 1 180px;
    min-height: 48px !important;
    height: 48px;
    border-radius: 8px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.wd-wa-btn {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    display: inline-grid !important;
    place-items: center;
    font-size: 20px !important;
}

.mf-pdp-continue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
}
.mf-pdp-continue:hover {
    color: var(--mf-primary);
}

.wd-desc-teaser {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #eceef2;
}
.wd-desc-teaser .mf-pdp-description-body {
    font-size: 13.5px;
    line-height: 1.6;
    color: #6b7280;
}
.wd-full-desc {
    margin-top: 8px;
}

/* legacy boxes hidden */
.mf-pdp-description h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}
.mf-pdp-description-body {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14.5px;
}

@media (max-width: 991px) {
    .mf-pdp,
    .mf-store .mf-pdp,
    .mf-store .wd-pdp {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .mf-pdp-gallery,
    .wd-gallery {
        position: static;
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto !important;
    }
    .mf-pdp-thumbs,
    .wd-thumbs {
        flex-direction: row;
        max-height: none;
        order: 2;
        margin-top: 10px;
    }
    .mf-pdp-main-image,
    .wd-main-image {
        order: 1;
        min-height: 320px;
    }
    .mf-pdp-info,
    .wd-summary {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .mf-pdp-main-image,
    .wd-main-image {
        min-height: 280px;
        padding: 16px;
    }
    .wd-cart-row {
        flex-direction: column;
    }
    .wd-add-btn {
        width: 100%;
        flex: 1 1 auto;
    }
    .wd-qty {
        width: 100%;
        justify-content: space-between;
    }
    .wd-qty-input { flex: 1; width: auto; }
}

.mf-pdp-section {
    margin: 10px 0 28px;
    padding: 24px;
    border-radius: calc(var(--mf-radius) + 4px);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--mf-border);
    box-shadow: var(--mf-shadow);
}

.mf-pdp-section-head {
    margin-bottom: 18px;
}

.mf-pdp-section-head h2 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-pdp-section-head p {
    margin: 0;
    color: var(--mf-text-light);
    font-size: 14px;
}

.mf-pdp-variation-table-wrap {
    overflow-x: auto;
}

.mf-pdp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.mf-pdp-table th,
.mf-pdp-table td {
    padding: 12px 14px;
    text-align: start;
    border-bottom: 1px solid var(--mf-border);
}

.mf-pdp-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mf-text-light);
    background: var(--mf-surface-2);
}

.mf-pdp-mini-sale {
    display: inline-block;
    margin-inline-start: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--lux-danger-strong);
    font-size: 11px;
    font-weight: 800;
}

/* ── Disponibilidad por sucursal — one aligned row per branch ── */
.mf-pdp-stock-section {
    margin-top: 32px;
    padding: 20px;
    background: var(--mf-surface, #fff);
    border: 1px solid var(--mf-border, rgba(0, 0, 0, 0.08));
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.mf-pdp-stock-section .mf-pdp-section-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mf-border, rgba(0, 0, 0, 0.06));
}

.mf-pdp-stock-section .mf-pdp-section-head h2 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mf-text, #1d1d1f);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-pdp-stock-section .mf-pdp-section-head h2 i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: rgba(var(--mf-primary-rgb, 10, 132, 255), 0.12);
    color: var(--mf-primary, #0a84ff);
    font-size: 13px;
}

.mf-pdp-stock-section .mf-pdp-section-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--mf-text-light, #6e6e73);
    max-width: 56ch;
}

.mf-stock-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.mf-stock-card {
    border: 1px solid #e8eaef;
    border-radius: 12px;
    background: #fff;
    padding: 0;
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.mf-stock-card:hover {
    border-color: rgba(var(--mf-primary-rgb, 10, 132, 255), 0.28);
    box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.12);
}

.mf-stock-card.is-current {
    border-color: rgba(var(--mf-primary-rgb, 10, 132, 255), 0.35);
    box-shadow: 0 0 0 2px rgba(var(--mf-primary-rgb, 10, 132, 255), 0.08);
    background: #fff;
}

/* Single horizontal row: name | badge | status — same baseline */
.mf-stock-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(120px, auto);
    align-items: center;
    column-gap: 14px;
    min-height: 54px;
    padding: 12px 16px;
    margin: 0;
}

.mf-stock-card-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
}

.mf-stock-card-head h3,
.mf-stock-name {
    margin: 0;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -0.01em;
    color: #1d1d1f;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mf-stock-current-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    margin: 0;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(var(--mf-primary-rgb, 10, 132, 255), 0.12);
    color: var(--mf-primary, #0a84ff);
    font-size: 11px;
    font-weight: 750;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.mf-stock-current-badge--ghost {
    visibility: hidden;
    pointer-events: none;
    min-width: 90px;
}

.mf-stock-card-qty {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    text-align: end;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 26px;
}

.mf-stock-status {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

.mf-stock-status--available {
    color: #0f7a45 !important;
    background: rgba(34, 197, 94, 0.12);
}

.mf-stock-status--available::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.mf-stock-status--out {
    color: #9f1239 !important;
    background: rgba(244, 63, 94, 0.1);
    font-size: 12px;
}

.mf-stock-status--out::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f43f5e;
    flex-shrink: 0;
}

.mf-stock-qty-value {
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1;
    color: #1d1d1f;
}

.mf-stock-qty-label {
    font-size: 11px;
    color: #8e8e93;
    font-weight: 650;
    line-height: 1;
}

@media (max-width: 640px) {
    .mf-stock-card-head {
        grid-template-columns: 1fr auto;
        row-gap: 8px;
    }
    .mf-stock-card-mid {
        justify-content: flex-start;
        grid-column: 1;
        grid-row: 2;
    }
    .mf-stock-card-qty {
        grid-column: 2;
        grid-row: 2;
        justify-content: flex-end;
    }
    .mf-stock-current-badge--ghost {
        display: none;
    }
}

.mf-stock-variations {
    list-style: none;
    margin: 0;
    padding: 0 16px 10px;
    border-top: 1px solid #eef0f4;
}

.mf-stock-variations li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 12.5px;
    color: #4b5563;
    border-bottom: 0;
}

.mf-stock-variations li strong {
    font-weight: 750;
    color: #1d1d1f;
    font-variant-numeric: tabular-nums;
}

.mf-stock-branch-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0 16px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--mf-primary, #0a84ff);
    text-decoration: none;
}

.mf-stock-branch-link:hover {
    opacity: 0.85;
    color: var(--mf-primary, #0a84ff);
}

.mf-stock-branch-link i {
    font-size: 11px;
    opacity: 0.85;
}

@media (max-width: 560px) {
    .mf-pdp-stock-section {
        padding: 14px;
        border-radius: 14px;
    }

    .mf-stock-grid {
        grid-template-columns: 1fr;
    }
}

.mf-pdp-similar {
    padding: 40px 0 48px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.82);
    border-top: 1px solid var(--mf-border);
}

.mf-footer--compact .mf-footer-bottom {
    border-top: none;
    padding-top: 24px;
}

[dir="rtl"] .mf-btn--back .fa-arrow-left::before {
    content: "\f061";
}

[dir="rtl"] .mf-breadcrumb-sep .fa-chevron-right::before {
    content: "\f053";
}

@media (max-width: 991px) {
    .mf-pdp {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
    }

    .mf-pdp-gallery {
        position: static;
        max-width: 400px;
        margin: 0 auto;
        order: 1;
        flex: 0 1 auto;
    }

    .mf-pdp-info {
        order: 2;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        flex: 1 1 auto;
    }

    .mf-pdp-main-image {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .mf-pdp-gallery {
        max-width: 320px;
    }

    .mf-pdp-main-image {
        max-height: 320px;
        padding: 10px;
        border-radius: 14px;
    }
}

@media (max-width: 767px) {
    .mf-header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .mf-pdp-actions .mf-btn {
        width: auto;
        max-width: 100%;
        justify-content: center;
    }

    .mf-pdp-section {
        padding: 16px;
    }
}/* ===== END lux-catalogue-public.css ===== */

/* ============================================================
   Storefront theme presets (selected in the Store settings page)
   Accent is injected inline as --mf-primary; these add depth.
   ============================================================ */
.mf-store[class*="mf-theme-"] .mf-btn--primary,
.mf-store[class*="mf-theme-"] .mf-badge--sale { background: var(--mf-primary); border-color: var(--mf-primary); }
.mf-store[class*="mf-theme-"] .mf-product-cta { color: var(--mf-primary); }

/* Noir — dark storefront */
body.mf-catalogue-body:has(.mf-theme-noir),
.mf-theme-noir { background: #14161a; }
.mf-theme-noir .mf-header,
.mf-theme-noir .mf-header--premium,
.mf-theme-noir .mf-cat-bar,
.mf-theme-noir .mf-product-card,
.mf-theme-noir .mf-product-card-inner { background: #1d2026; color: #e6e6ea; border-color: #2a2e37; }
.mf-theme-noir .mf-product-title a,
.mf-theme-noir .mf-header-nav a,
.mf-theme-noir .mf-logo-text { color: #f2f2f5; }
.mf-theme-noir .mf-product-sku-value,
.mf-theme-noir .mf-product-cat,
.mf-theme-noir .mf-logo-sub { color: #9aa0ab; }
.mf-theme-noir .mf-promo-bar { background: #0f1013; color: #cfcfd6; }

/* ===== BEGIN modern-daylight-storefront (2026) ===== */
/* Big-brand daylight look: Apple / Shopify-like clean storefront */

body.mf-catalogue-body #app { display: none !important; }

.mf-store {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(var(--mf-primary-rgb), 0.10), transparent 55%),
    var(--mf-bg) !important;
  color: var(--mf-text) !important;
}

.mf-store--premium::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.mf-container {
  max-width: var(--mf-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Promo */
.mf-store .mf-promo-bar {
  background: linear-gradient(90deg, var(--mf-primary), color-mix(in srgb, var(--mf-primary) 75%, #000));
  color: #fff !important;
}
.mf-store .mf-promo-inner {
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Sticky glass header */
.mf-store .mf-header {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--mf-border) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 32px -20px rgba(0,0,0,0.12) !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mf-store .mf-header-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  min-height: var(--mf-header-height);
}
.mf-store .mf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--mf-text);
  flex: 0 0 auto;
}
.mf-store .mf-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: none;
}
.mf-store .mf-logo-mark--icon {
  background: var(--mf-surface-2);
  border: 1px solid var(--mf-border);
  box-shadow: 0 4px 14px -8px rgba(0,0,0,0.2);
}
.mf-store .mf-logo-mark--img,
.mf-store .mf-logo-mark:has(> img) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
}
.mf-store .mf-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent !important;
}
.mf-store .mf-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mf-text) !important;
  line-height: 1.15;
}
.mf-store .mf-logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mf-text-light) !important;
  letter-spacing: 0.02em;
}

/* Search — big store style */
.mf-store .mf-search {
  flex: 1 1 280px;
  max-width: 520px;
  position: relative;
}
.mf-store .mf-search-input {
  width: 100%;
  height: 48px;
  background: #fff !important;
  border: 1.5px solid var(--mf-border) !important;
  border-radius: 999px !important;
  padding: 0 48px 0 46px !important;
  font-size: 15px !important;
  color: var(--mf-text) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: border-color .15s, box-shadow .15s;
}
.mf-store .mf-search-input:focus {
  border-color: var(--mf-primary) !important;
  box-shadow: 0 0 0 4px rgba(var(--mf-primary-rgb), 0.15) !important;
  outline: none;
}
.mf-store .mf-search-ic {
  position: absolute;
  inset-inline-start: 18px;
  color: var(--mf-text-light);
  font-size: 15px;
}
.mf-store .mf-search-results,
.mf-search-results {
  background: #fff !important;
  border: 1px solid var(--mf-border) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px -14px rgba(15, 23, 42, 0.22) !important;
  color: var(--mf-text);
  max-height: min(420px, 62vh) !important;
  padding: 6px !important;
}
/* Compact search hits — beat Tailwind img { max-width:100%; height:auto } */
.mf-search-result {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 7px 9px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  min-height: 0 !important;
}
.mf-search-result:hover,
.mf-search-result.is-active {
  background: var(--mf-surface-2, #f5f5f7) !important;
}
.mf-search-result-img,
img.mf-search-result-img,
span.mf-search-result-img {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex: 0 0 40px !important;
  border-radius: 9px !important;
  object-fit: cover !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--mf-surface-2, #f2f2f7) !important;
  border: 1px solid var(--mf-border, rgba(0, 0, 0, 0.06)) !important;
}
.mf-search-result-body {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}
.mf-search-result-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mf-search-result-meta {
  font-size: 11.5px !important;
  color: var(--mf-text-light, #6e6e73) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mf-search-result-price {
  flex: 0 0 auto !important;
  font-size: 12.5px !important;
  font-weight: 750 !important;
  color: var(--mf-primary) !important;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.mf-search-result-go {
  font-size: 10px !important;
  color: var(--mf-text-light, #c0c0c5);
  flex: 0 0 auto;
}
.mf-search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--mf-border, rgba(0, 0, 0, 0.06));
  margin: 0 2px 2px;
}
.mf-search-results-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mf-text-light, #6e6e73);
}
.mf-search-results-count {
  font-size: 11px;
  font-weight: 650;
  color: var(--mf-text-light, #6e6e73);
  background: var(--mf-surface-2, #f5f5f7);
  border-radius: 999px;
  padding: 2px 8px;
}
.mf-search-empty {
  padding: 28px 16px !important;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--mf-text-light);
}
.mf-search-more {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 9px 10px !important;
  margin-top: 4px;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--mf-primary) !important;
  border-top: 1px solid var(--mf-border, rgba(0, 0, 0, 0.06));
}

/* Nav links */
.mf-store .mf-header-nav .menu {
  color: var(--mf-text-light) !important;
  font-weight: 650 !important;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: .15s;
}
.mf-store .mf-header-nav .menu:hover {
  color: var(--mf-text) !important;
  background: rgba(0,0,0,0.04);
}

.mf-store .mf-btn--primary,
.mf-store .mf-btn.mf-btn--primary {
  background: linear-gradient(135deg, var(--mf-primary), color-mix(in srgb, var(--mf-primary) 62%, #0b1220)) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: 12px 20px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  box-shadow: 0 12px 26px -12px rgba(var(--mf-primary-rgb), 0.85) !important;
  text-decoration: none !important;
  transition: transform .15s ease, filter .15s ease, box-shadow .2s ease !important;
}
.mf-store .mf-btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #fff !important;
}
/* PDP store overrides — keep WoodMart grid (do not force flex-end) */
.mf-store .mf-pdp,
.mf-store .wd-pdp {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) !important;
  gap: 36px 48px !important;
  justify-content: stretch !important;
  align-items: start !important;
}
.mf-store .mf-pdp-gallery,
.mf-store .wd-gallery {
  max-width: none !important;
  flex: unset !important;
  margin: 0 !important;
}
.mf-store .mf-pdp-info,
.mf-store .wd-summary {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.mf-store .mf-pdp-main-image,
.mf-store .wd-main-image {
  max-height: none !important;
}
.mf-store .wd-add-btn {
  background: linear-gradient(135deg, var(--mf-primary), color-mix(in srgb, var(--mf-primary) 65%, #0b1220)) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 22px -12px rgba(var(--mf-primary-rgb), 0.8) !important;
}
.mf-store .wd-add-btn:hover {
  filter: brightness(1.05);
  color: #fff !important;
}
.mf-store .mf-pdp-continue {
  color: #6b7280 !important;
  font-weight: 650;
}
.mf-store .mf-pdp-continue:hover {
  color: var(--mf-primary) !important;
}
@media (max-width: 991px) {
  .mf-store .mf-pdp,
  .mf-store .wd-pdp {
    grid-template-columns: 1fr !important;
  }
}

/* Category pill bar */
.mf-store .mf-cat-bar {
  background: #fff !important;
  border-top: 1px solid var(--mf-border) !important;
  border-bottom: 1px solid var(--mf-border) !important;
}
.mf-store .mf-cat-bar .mf-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: hidden;
}
.mf-store .mf-all-cats {
  flex: 0 0 auto;
  border: 1px solid var(--mf-border);
  background: #fff;
  color: var(--mf-text) !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mf-store .mf-all-cats:hover {
  border-color: var(--mf-primary);
  color: var(--mf-primary) !important;
}
.mf-store .mf-cat-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  padding: 2px 0;
}
.mf-store .mf-cat-scroll::-webkit-scrollbar { display: none; }
.mf-store .mf-cat-scroll .menu {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mf-surface-2);
  border: 1px solid transparent;
  color: var(--mf-text-light) !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: .15s;
}
.mf-store .mf-cat-scroll .menu:hover {
  color: var(--mf-primary) !important;
  border-color: rgba(var(--mf-primary-rgb), 0.25);
  background: rgba(var(--mf-primary-rgb), 0.08);
}

/* Hero — cinematic daylight */
.mf-store .mf-hero {
  margin: 22px 0 8px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: 0 20px 50px -28px rgba(0,0,0,0.25);
}
.mf-store .mf-hero--slider {
  min-height: 380px;
}
.mf-store .mf-hero-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.mf-store .mf-hero-slide {
  position: relative;
}
.mf-store .mf-hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.55) 100%);
  color: #fff !important;
}
.mf-store .mf-hero-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff !important;
}
.mf-store .mf-hero-caption h1,
.mf-store .mf-hero-static h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff !important;
  max-width: 16ch;
}
.mf-store .mf-hero--static {
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--mf-primary-rgb), 0.35), transparent 40%),
    linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 55%, #3a3a3c 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
}
.mf-store .mf-hero-static {
  padding: 48px 40px;
  color: #fff !important;
  max-width: 640px;
}
.mf-store .mf-hero-static p {
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.05rem;
  margin: 0 0 22px;
  max-width: 42ch;
}
.mf-store .mf-btn--hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  color: #1d1d1f !important;
  border-radius: 999px !important;
  padding: 12px 22px !important;
  font-weight: 750 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: .15s;
}
.mf-store .mf-btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.mf-store .mf-hero-arrow {
  background: rgba(255,255,255,0.92) !important;
  color: #1d1d1f !important;
  border: 0 !important;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.mf-store .mf-hero-dot {
  background: rgba(255,255,255,0.4);
}
.mf-store .mf-hero-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

/* Section heads */
.mf-store .mf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 36px 0 18px;
  flex-wrap: wrap;
}
.mf-store .mf-section-head h2,
.mf-store .mf-shop-toolbar h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  color: var(--mf-text) !important;
}
.mf-store .mf-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mf-primary) !important;
  margin-bottom: 6px;
}
.mf-store .mf-section-desc,
.mf-store .mf-shop-toolbar-desc {
  color: var(--mf-text-light) !important;
  font-size: 14.5px;
  margin: 6px 0 0;
  max-width: 48ch;
}
.mf-store .mf-link-all {
  color: var(--mf-primary) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* Category icons strip */
.mf-store .mf-cat-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.mf-store .mf-cat-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid var(--mf-border);
  border-radius: 18px;
  text-decoration: none;
  color: var(--mf-text) !important;
  transition: .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.mf-store .mf-cat-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--mf-primary-rgb), 0.35);
  box-shadow: 0 14px 28px -16px rgba(var(--mf-primary-rgb), 0.45);
}
.mf-store .mf-cat-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(var(--mf-primary-rgb), 0.1);
  color: var(--mf-primary);
  font-size: 20px;
}
.mf-store .mf-cat-icon-name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

/* Product grid */
.mf-store .mf-product-grid {
  display: grid !important;
  gap: 16px !important;
}
.mf-store .mf-product-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.mf-store .mf-product-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1100px) {
  .mf-store .mf-product-grid--5,
  .mf-store .mf-product-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  .mf-store .mf-product-grid--5,
  .mf-store .mf-product-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* ── Product cards — creative premium ── */
.mf-store .mf-product-card,
.mf-store .lux-pcard {
  background: transparent;
  height: 100%;
}
.mf-store .mf-product-card-inner,
.mf-store .lux-pcard-inner {
  position: relative;
  background: var(--mf-surface, #fff) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 22px !important;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(15,23,42,0.04),
    0 10px 28px -18px rgba(15,23,42,0.18);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease;
}
.mf-store .mf-product-card:hover .mf-product-card-inner,
.mf-store .lux-pcard:hover .lux-pcard-inner {
  transform: translateY(-6px);
  border-color: rgba(var(--mf-primary-rgb), 0.28) !important;
  box-shadow:
    0 16px 40px -18px rgba(var(--mf-primary-rgb), 0.35),
    0 8px 24px -12px rgba(15,23,42,0.14);
}

/* Media stage — clean, no glow / no frame */
.mf-store .mf-product-media,
.mf-store .lux-pcard-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  background: #f3f4f6;
}
.mf-store .lux-pcard-glow {
  display: none !important;
}

.mf-store .mf-product-img-link,
.mf-store .lux-pcard-img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.mf-store .mf-product-img-frame,
.mf-store .lux-pcard-img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}
.mf-store .mf-product-img-frame img,
.mf-store .lux-pcard-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.mf-store .mf-product-card:hover .mf-product-img-frame img,
.mf-store .lux-pcard:hover .lux-pcard-img img {
  transform: scale(1.04);
  filter: none !important;
}

/* Badges */
.mf-store .mf-product-badges,
.mf-store .lux-pcard-badges {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.mf-store .mf-badge,
.mf-store .lux-pcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(15,23,42,0.1);
  text-transform: none;
}
.mf-store .mf-badge--sale,
.mf-store .lux-pcard-badge--sale {
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  color: #fff;
}
.mf-store .mf-badge--hot,
.mf-store .lux-pcard-badge--hot {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #1d1d1f;
}
.mf-store .lux-pcard-badge--opt {
  background: rgba(15,23,42,0.72);
  color: #fff;
}

/* Floating action icons — always visible, stable colors (no white/color flash) */
.mf-store .mf-product-hover { display: none !important; }
.mf-store .sh-card-quick { display: none !important; }
.mf-store .lux-pcard-float {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
}
.mf-store .lux-pcard-float .lux-pcard-icon-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mf-store .lux-pcard-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff !important;
  color: #1f2430 !important;
  -webkit-text-fill-color: #1f2430 !important;
  box-shadow: 0 6px 16px rgba(15,23,42,0.1);
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  transition: box-shadow .15s ease, transform .12s ease;
  font-family: inherit;
  padding: 0;
  filter: none !important;
}
.mf-store .lux-pcard-icon-btn i,
.mf-store .lux-pcard-icon-btn .fa {
  color: #1f2430 !important;
  -webkit-text-fill-color: #1f2430 !important;
  opacity: 1 !important;
}
.mf-store .lux-pcard-icon-btn:hover,
.mf-store .lux-pcard-icon-btn--cart:hover {
  transform: scale(1.04);
  background: #fff !important;
  color: #1f2430 !important;
  -webkit-text-fill-color: #1f2430 !important;
  filter: none !important;
  box-shadow: 0 8px 18px rgba(15,23,42,0.14);
}
.mf-store .lux-pcard-icon-btn:hover i,
.mf-store .lux-pcard-icon-btn--cart:hover i {
  color: #1f2430 !important;
  -webkit-text-fill-color: #1f2430 !important;
}
/* Same look for cart — no filled primary / white icon */
.mf-store .lux-pcard-icon-btn--cart {
  background: #fff !important;
  color: #1f2430 !important;
  -webkit-text-fill-color: #1f2430 !important;
  box-shadow: 0 6px 16px rgba(15,23,42,0.1);
}
.mf-store .lux-pcard-icon-btn.added,
.mf-store .lux-pcard-icon-btn--cart.added,
.mf-store .lux-pcard-float .lux-add-cart-btn.added {
  background: #fff !important;
  color: #0f7a45 !important;
  -webkit-text-fill-color: #0f7a45 !important;
  border-color: rgba(15,122,69,0.25);
}
.mf-store .lux-pcard-icon-btn.added i,
.mf-store .lux-pcard-float .lux-add-cart-btn.added i {
  color: #0f7a45 !important;
  -webkit-text-fill-color: #0f7a45 !important;
}

/* Body — tight title → price spacing */
.mf-store .mf-product-body,
.mf-store .lux-pcard-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  background: var(--mf-surface, #fff) !important;
}
.mf-store .mf-product-meta-top,
.mf-store .lux-pcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mf-store .mf-product-cat,
.mf-store .lux-pcard-cat {
  font-size: 11.5px;
  font-weight: 750;
  color: var(--mf-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mf-store .mf-product-type {
  font-size: 11px;
  font-weight: 650;
  color: var(--mf-text-light) !important;
  background: var(--mf-surface-2, #f3f4f6);
  padding: 3px 9px;
  border-radius: 999px;
  border: 0;
}
.mf-store .mf-product-title,
.mf-store .lux-pcard-title {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}
.mf-store .mf-product-title a {
  color: var(--mf-text, #1f2430) !important;
  text-decoration: none;
  transition: color .15s ease;
}
.mf-store .mf-product-title a:hover {
  color: var(--mf-primary) !important;
  text-decoration: none;
}
.mf-store .mf-product-sku-line { display: none; }
.mf-store .lux-pcard-sku,
.mf-store .mf-product-sku-line.lux-pcard-sku {
  display: flex !important;
  margin: 0;
  font-size: 11px;
  gap: 6px;
  color: var(--mf-text-light);
}
/* Sale / discount price */
.mf-store .mf-price-old {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mf-text-light, #6b7280) !important;
  text-decoration: line-through;
  -webkit-text-fill-color: var(--mf-text-light, #6b7280) !important;
  background: none !important;
  opacity: .85;
}
.mf-store .mf-product-price.is-sale .mf-price-current {
  color: #c2410c !important;
  -webkit-text-fill-color: #c2410c !important;
  background: none !important;
}
.mf-store .lux-pcard-badge--sale {
  z-index: 5;
}
.mf-store .mf-shop-layout--no-sidebar .mf-shop-inner {
  display: block;
}
.mf-store .mf-shop-layout--no-sidebar .mf-shop-main {
  width: 100%;
  max-width: 100%;
}
.mf-store .mf-product-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
/* Compact cards */
.mf-store .lux-pcard--compact .lux-pcard-body,
.mf-store .mf-product-grid--compact .lux-pcard-body {
  padding: 10px 12px 12px !important;
  gap: 4px !important;
}
.mf-store .lux-pcard--compact .lux-pcard-title,
.mf-store .mf-product-grid--compact .lux-pcard-title {
  font-size: 13px !important;
}
.mf-store .lux-pcard--compact .mf-price-current,
.mf-store .mf-product-grid--compact .mf-price-current {
  font-size: 1rem !important;
}
/* List layout */
.mf-store .mf-product-grid--list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.mf-store .mf-product-grid--list .lux-pcard-inner,
.mf-store .lux-pcard--list .lux-pcard-inner {
  display: grid !important;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}
.mf-store .mf-product-grid--list .lux-pcard-media,
.mf-store .lux-pcard--list .lux-pcard-media {
  aspect-ratio: 1 / 1;
  min-height: 120px;
}
.mf-store .mf-product-grid--list .lux-pcard-body,
.mf-store .lux-pcard--list .lux-pcard-body {
  justify-content: center;
}
/* Image fit modes */
.mf-store .lux-pcard-fit--cover .lux-pcard-img img,
.mf-store.mf-img-cover .lux-pcard-img img {
  object-fit: cover !important;
}
.mf-store .lux-pcard-fit--contain .lux-pcard-img img,
.mf-store.mf-img-contain .lux-pcard-img img {
  object-fit: contain !important;
  padding: 10px;
  background: #f3f4f6;
}
@media (max-width: 900px) {
  .mf-store .mf-product-grid--list .lux-pcard-inner,
  .mf-store .lux-pcard--list .lux-pcard-inner {
    grid-template-columns: 100px 1fr;
  }
}
/* Price sits directly under product name (no large empty gap) */
.mf-store .mf-product-price-row,
.mf-store .lux-pcard-price-row {
  margin-top: 2px !important;
  padding-top: 0 !important;
  margin-bottom: 0;
}
.mf-store .mf-product-price,
.mf-store .lux-pcard-price {
  margin-top: 0 !important;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.mf-store .mf-price-current {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--mf-primary, #2563eb) !important;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
  line-height: 1.2;
}
@supports (-webkit-background-clip: text) {
  .mf-store .mf-price-current {
    color: var(--mf-primary, #2563eb) !important;
    -webkit-text-fill-color: currentColor;
  }
}
.mf-store .mf-price-from,
.mf-store .mf-price-range {
  font-size: 13px;
  color: var(--mf-text-light) !important;
  font-weight: 600;
}

/* CTA — vivid brand button */
.mf-store .mf-product-footer,
.mf-store .lux-pcard-footer {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mf-store .mf-product-cta,
.mf-store .lux-pcard-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 0 !important;
  background: linear-gradient(135deg, var(--mf-primary), color-mix(in srgb, var(--mf-primary) 62%, #0b1220)) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 13.5px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px -12px rgba(var(--mf-primary-rgb), 0.85);
  transition: transform .15s ease, box-shadow .2s ease, filter .15s ease;
}
.mf-store .mf-product-cta:hover,
.mf-store .lux-pcard-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 16px 32px -12px rgba(var(--mf-primary-rgb), 0.9);
}
.mf-store .mf-product-cta:active,
.mf-store .lux-pcard-cta:active {
  transform: translateY(0) scale(.985);
}
.mf-store .lux-pcard-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}
.mf-store .lux-pcard-cta:hover .lux-pcard-cta-shine {
  transform: translateX(120%);
}
.mf-store .lux-pcard-cta--soft {
  background: rgba(var(--mf-primary-rgb), 0.1) !important;
  color: var(--mf-primary) !important;
  -webkit-text-fill-color: var(--mf-primary) !important;
  box-shadow: none;
}
.mf-store .lux-pcard-cta--soft:hover {
  background: rgba(var(--mf-primary-rgb), 0.16) !important;
  color: var(--mf-primary) !important;
  filter: none;
  box-shadow: none;
}
.mf-store .mf-product-cta.lux-add-cart-btn.added,
.mf-store .lux-pcard-cta.added {
  background: linear-gradient(135deg, #12b76a, #039855) !important;
  box-shadow: 0 12px 26px -12px rgba(3,152,85,0.7);
}

@media (max-width: 720px) {
  .mf-store .lux-pcard-float {
    opacity: 1;
    transform: none;
  }
  .mf-store .lux-pcard-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }
  .mf-store .mf-product-body,
  .mf-store .lux-pcard-body {
    padding: 12px;
  }
  .mf-store .mf-product-title,
  .mf-store .lux-pcard-title {
    font-size: 13.5px;
    min-height: 0;
  }
  .mf-store .mf-product-cta,
  .mf-store .lux-pcard-cta {
    min-height: 42px;
    border-radius: 12px;
    font-size: 12.5px;
  }
  .mf-store .mf-product-img-frame,
  .mf-store .lux-pcard-img {
    padding: 14px;
  }
}

/* Shop layout */
.mf-store .mf-shop-layout {
  padding: 12px 0 40px;
}
.mf-store .mf-shop-inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) {
  .mf-store .mf-shop-inner {
    grid-template-columns: 1fr;
  }
  .mf-store .mf-sidebar {
    display: none;
  }
}
.mf-store .mf-sidebar-widget {
  background: #fff;
  border: 1px solid var(--mf-border);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.mf-store .mf-sidebar-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mf-text) !important;
}
.mf-store .mf-sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mf-store .mf-sidebar-cats a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--mf-text-light) !important;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: .12s;
}
.mf-store .mf-sidebar-cats a:hover {
  background: rgba(var(--mf-primary-rgb), 0.08);
  color: var(--mf-primary) !important;
}
.mf-store .mf-shop-toolbar {
  background: #fff;
  border: 1px solid var(--mf-border);
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.mf-store .mf-shop-count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(var(--mf-primary-rgb), 0.12);
  color: var(--mf-primary) !important;
  font-weight: 850;
  font-size: 1.05rem;
}
.mf-store .mf-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mf-text) !important;
}
.mf-store .mf-category-count {
  font-size: 12px;
  font-weight: 750;
  color: var(--mf-text-light) !important;
  background: #fff;
  border: 1px solid var(--mf-border);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Branches */
.mf-store .mf-branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.mf-store .mf-branch-card {
  background: #fff;
  border: 1px solid var(--mf-border);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  color: var(--mf-text) !important;
  transition: .18s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mf-store .mf-branch-card:hover,
.mf-store .mf-branch-card.is-current {
  border-color: rgba(var(--mf-primary-rgb), 0.4);
  box-shadow: 0 12px 28px -18px rgba(var(--mf-primary-rgb), 0.5);
}
.mf-store .mf-branch-name {
  font-weight: 800;
  font-size: 15px;
}
.mf-store .mf-branch-badge {
  width: fit-content;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--mf-primary-rgb), 0.12);
  color: var(--mf-primary);
}

/* About */
.mf-store .mf-about-section {
  padding: 20px 0 10px;
}
.mf-store .mf-about-pro {
  background: #fff;
  border: 1px solid var(--mf-border);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
  .mf-store .mf-about-pro { grid-template-columns: 1fr; }
}
.mf-store .mf-about-pro-content {
  padding: 36px 32px;
  color: var(--mf-text) !important;
}
.mf-store .mf-about-pro-content h2 {
  color: var(--mf-text) !important;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.mf-store .mf-about-pro-body {
  color: var(--mf-text-light) !important;
  font-size: 15px;
  line-height: 1.7;
}

/* Footer — refined dark with light text (intentional contrast band) */
.mf-store .mf-footer {
  background: #111113 !important;
  color: rgba(255,255,255,0.65) !important;
  margin-top: 56px;
  border-top: 0 !important;
  position: relative;
}
.mf-store .mf-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--mf-primary), color-mix(in srgb, var(--mf-primary) 40%, #fff));
}
.mf-store .mf-footer-col h4 {
  color: #fff !important;
}
.mf-store .mf-footer-col p,
.mf-store .mf-footer-col a {
  color: rgba(255,255,255,0.62) !important;
}
.mf-store .mf-footer-col a:hover {
  color: #fff !important;
}
.mf-store .mf-footer-bottom {
  color: rgba(255,255,255,0.4) !important;
  border-top-color: rgba(255,255,255,0.08) !important;
}

/* Lang switcher */
.mf-store .mf-lang-btn {
  background: #fff !important;
  border: 1px solid var(--mf-border) !important;
  color: var(--mf-text) !important;
  border-radius: 999px !important;
  font-weight: 700;
}
.mf-store .mf-lang-menu {
  background: #fff !important;
  border: 1px solid var(--mf-border) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
  overflow: hidden;
}
.mf-store .mf-lang-menu a {
  color: var(--mf-text) !important;
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}
.mf-store .mf-lang-menu a:hover,
.mf-store .mf-lang-menu a.is-active {
  background: rgba(var(--mf-primary-rgb), 0.08);
  color: var(--mf-primary) !important;
}

/* Cart / floating bits keep readable on light */
.mf-store .lux-store-cart-fab,
.mf-store [class*="cart-fab"] {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Kill admin dark inheritance on storefront text */
.mf-store,
.mf-store h1, .mf-store h2, .mf-store h3, .mf-store h4,
.mf-store p, .mf-store span, .mf-store a, .mf-store li,
.mf-store label, .mf-store button {
  -webkit-text-fill-color: unset;
}

@media (max-width: 720px) {
  .mf-container { padding: 0 14px; }
  .mf-store .mf-hero,
  .mf-store .mf-hero--slider,
  .mf-store .mf-hero-img { min-height: 240px; border-radius: 20px; }
  .mf-store .mf-hero-caption { padding: 24px 18px; }
  .mf-store .mf-hero-static { padding: 32px 22px; }
  .mf-store .mf-header-main { gap: 12px; padding: 12px 0; }
  .mf-store .mf-shop-toolbar { padding: 16px; flex-direction: column; align-items: flex-start; }
}
/* ===== END modern-daylight-storefront ===== */

/* ═══════════════════════════════════════════════════════════
   Full DESIGN layouts: Showcase vs Boutique
   ═══════════════════════════════════════════════════════════ */
.mf-store.mf-layout-showcase{
  --mf-radius: 14px;
}
.mf-store.mf-layout-showcase .mf-hero--slider,
.mf-store.mf-layout-showcase .mf-hero--fullbleed{
  border-radius: 0;
  margin-inline: 0;
  max-width: none;
}
.mf-store.mf-layout-showcase .mf-hero-caption{
  max-width: 560px;
  padding: 28px 32px;
}
.mf-store.mf-layout-showcase .mf-hero-caption h1{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.mf-store.mf-layout-showcase .mf-product-card-inner,
.mf-store.mf-layout-showcase .lux-pcard-inner{
  border-radius: 14px !important;
  box-shadow: 0 8px 28px -16px rgba(15,23,42,.22) !important;
}
.mf-store.mf-layout-showcase .mf-btn--primary,
.mf-store.mf-layout-showcase .mf-btn--hero{
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12.5px;
}

/* Boutique — soft, editorial */
.mf-store.mf-layout-boutique{
  --mf-radius: 22px;
  font-family: "Plus Jakarta Sans", Georgia, "Times New Roman", serif;
}
.mf-store.mf-layout-boutique .mf-container{
  max-width: 1080px;
}
.mf-store.mf-layout-boutique .mf-hero--slider,
.mf-store.mf-layout-boutique .mf-hero--framed{
  border-radius: 28px;
  overflow: hidden;
  margin: 18px auto 28px;
  max-width: 1000px;
  box-shadow: 0 24px 60px -28px rgba(44,36,32,.28);
}
.mf-store.mf-layout-boutique .mf-hero-caption{
  text-align: center;
  inset-inline: 10%;
  left: 10%;
  right: 10%;
  bottom: 12%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px 24px;
  color: #2c2420;
}
.mf-store.mf-layout-boutique .mf-hero-caption h1{
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2c2420;
}
.mf-store.mf-layout-boutique .mf-hero-label{
  color: var(--mf-primary);
}
.mf-store.mf-layout-boutique .mf-btn--hero{
  border-radius: 999px;
  background: var(--mf-primary);
  color: #fff;
}
.mf-store.mf-layout-boutique .mf-product-card-inner,
.mf-store.mf-layout-boutique .lux-pcard-inner{
  border-radius: 22px !important;
  border: 1px solid rgba(44,36,32,.06) !important;
  box-shadow: 0 10px 30px -20px rgba(44,36,32,.18) !important;
  background: #fff !important;
}
.mf-store.mf-layout-boutique .mf-product-title,
.mf-store.mf-layout-boutique .lux-pcard-title{
  font-weight: 650;
  letter-spacing: -0.01em;
}
.mf-store.mf-layout-boutique .mf-shop-toolbar h2{
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mf-store.mf-layout-boutique .mf-header{
  border-bottom: 0;
  box-shadow: none;
  background: transparent;
}
.mf-store.mf-layout-boutique .mf-header-main{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(44,36,32,.06);
  border-radius: 20px;
  margin: 10px 0;
  backdrop-filter: blur(12px);
}
.mf-store.mf-layout-boutique .mf-footer{
  background: #2c2420;
  border-top-color: var(--mf-primary);
}

/* Content pages (About / Contact) */
.mf-page{padding: 28px 0 56px; min-height: 55vh}
.mf-page-hero{margin-bottom: 22px}
.mf-page-kicker{
  display:inline-block; font-size:11px; font-weight:800; letter-spacing:.08em;
  text-transform:uppercase; color:var(--mf-primary); margin-bottom:8px
}
.mf-page-hero h1{
  margin:0 0 8px; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800;
  letter-spacing:-.03em; color:var(--mf-text)
}
.mf-page-lead{margin:0; max-width:46ch; color:var(--mf-text-light); font-size:15px; line-height:1.5}
.mf-page-card{
  background:var(--mf-surface); border:1px solid var(--mf-border);
  border-radius: var(--mf-radius, 18px); padding:22px 24px;
  box-shadow: 0 10px 30px -22px rgba(15,23,42,.2)
}
.mf-page-body{font-size:15px; line-height:1.7; color:var(--mf-text)}
.mf-page-empty{color:var(--mf-text-light); margin:0}
.mf-contact-grid{
  display:grid; grid-template-columns: 1.4fr .9fr; gap:16px; align-items:start
}
@media(max-width:800px){.mf-contact-grid{grid-template-columns:1fr}}
.mf-contact-aside{display:flex; flex-direction:column; gap:10px}
.mf-contact-item{
  display:flex; gap:12px; align-items:flex-start; padding:14px 16px;
  border-radius:16px; background:var(--mf-surface); border:1px solid var(--mf-border);
  text-decoration:none; color:var(--mf-text)
}
.mf-contact-item i{
  width:36px; height:36px; border-radius:12px; display:grid; place-items:center;
  background:rgba(var(--mf-primary-rgb),.1); color:var(--mf-primary); flex:none
}
.mf-contact-item strong{display:block; font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--mf-text-light); margin-bottom:2px}
.mf-contact-item span{font-size:14px; font-weight:650}

/* Multi-branch contact cards */
.mf-branch-grid{
  display:grid;
  gap:16px;
}
.mf-branch-grid.is-multi{
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
}
.mf-branch-grid.is-single{
  grid-template-columns:minmax(0,560px);
}
.mf-branch-card{
  background:var(--mf-surface,#fff);
  border:1px solid var(--mf-border,#e6e8ee);
  border-radius:20px;
  padding:18px;
  box-shadow:0 12px 32px -22px rgba(15,23,42,.2);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mf-branch-card.is-current{
  border-color:rgba(var(--mf-primary-rgb),.35);
  box-shadow:0 0 0 3px rgba(var(--mf-primary-rgb),.1),0 12px 32px -22px rgba(15,23,42,.2);
}
.mf-branch-card-h{
  display:flex;align-items:center;gap:12px;
}
.mf-branch-ic{
  width:42px;height:42px;border-radius:14px;display:grid;place-items:center;
  background:rgba(var(--mf-primary-rgb),.1);color:var(--mf-primary);font-size:16px;flex:none
}
.mf-branch-card-h h2{margin:0;font-size:1.05rem;font-weight:800;color:var(--mf-text);letter-spacing:-.02em}
.mf-branch-tag{
  display:inline-block;margin-top:3px;font-size:10px;font-weight:800;letter-spacing:.05em;
  text-transform:uppercase;color:var(--mf-primary);
  background:rgba(var(--mf-primary-rgb),.1);padding:2px 8px;border-radius:999px
}
.mf-branch-rows{display:flex;flex-direction:column;gap:8px}
.mf-branch-rows .mf-contact-item{margin:0}
.mf-branch-link{
  margin-top:auto;display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:800;color:var(--mf-primary);text-decoration:none;padding-top:4px
}
.mf-branch-link:hover{text-decoration:underline}


/* Slide price badge on storefront hero */
.mf-hero-price,
.mf-store .mf-hero-price{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:10px;padding:8px 14px;border-radius:999px;
  font-size:15px;font-weight:800;letter-spacing:.01em;
  color:#fff;background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}


/* === HERO CLEAN v2 — no white panel covering product === */
.mf-store .mf-hero-slide,
.mf-hero-slide{
  position: relative;
  overflow: hidden;
  cursor: default;
}
.mf-store .mf-hero-slide.is-linked,
.mf-hero-slide.is-linked{ cursor: pointer; }

.mf-store .mf-hero-img,
.mf-hero-img{
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Kill legacy white left panel + boutique frosted box */
.mf-store .mf-hero-caption,
.mf-hero-caption,
.mf-store .mf-hero-caption.mf-hero-caption--clean,
.mf-store.mf-layout-boutique .mf-hero-caption,
.mf-store.mf-layout-showcase .mf-hero-caption{
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  inset: auto 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  padding: 28px 28px 32px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: 0 !important;
  color: #fff !important;
  text-align: start !important;
  pointer-events: none;
  z-index: 3;
}
.mf-store .mf-hero-caption a,
.mf-hero-caption a{
  pointer-events: auto;
}

/* Soft bottom gradient only — product stays visible */
.mf-store .mf-hero-shade,
.mf-hero-shade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  max-height: 220px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.42) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.mf-store .mf-hero-slide.is-image-only .mf-hero-shade{
  height: 28%;
  max-height: 120px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.22));
}

.mf-store .mf-hero-label,
.mf-hero-label,
.mf-store.mf-layout-boutique .mf-hero-label{
  display: inline-block !important;
  width: fit-content !important;
  margin: 0 0 2px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.88) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.mf-store .mf-hero-caption h1,
.mf-store .mf-hero-title,
.mf-hero-caption h1,
.mf-store.mf-layout-boutique .mf-hero-caption h1,
.mf-store.mf-layout-showcase .mf-hero-caption h1{
  margin: 0 !important;
  max-width: min(18ch, 90%) !important;
  font-size: clamp(1.45rem, 3.2vw, 2.35rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* Price: elegant type, NO box covering product */
.mf-hero-price,
.mf-store .mf-hero-price,
.mf-store.mf-layout-boutique .mf-hero-price{
  display: block !important;
  margin: 2px 0 4px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem) !important;
  font-weight: 750 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
  line-height: 1.2 !important;
}

/* Slim glass CTA — not a heavy white slab */
.mf-store .mf-btn--hero,
.mf-hero .mf-btn--hero{
  margin-top: 6px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  background: rgba(255,255,255,.94) !important;
  color: #111 !important;
  border: 0 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.18) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  width: fit-content !important;
}
.mf-store .mf-btn--hero.mf-btn--hero-ghost{
  background: rgba(255,255,255,.16) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none !important;
}

/* Image-only linked slide: corner chip, no overlay box */
.mf-hero-stretch-link{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
}
.mf-hero-shade{ z-index: 1 !important; }
.mf-hero-caption{ z-index: 3 !important; }
.mf-hero-arrow, .mf-hero-dots{ z-index: 5 !important; }
.mf-hero-chip{
  position: absolute;
  inset-inline-end: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  color: #fff;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  opacity: .92;
  transition: .15s ease;
}
.mf-hero-stretch-link:hover .mf-hero-chip,
.mf-hero-slide.is-linked:hover .mf-hero-chip{
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 720px){
  .mf-store .mf-hero-img,
  .mf-hero-img{ min-height: 240px; max-height: 360px; }
  .mf-store .mf-hero-caption,
  .mf-hero-caption{
    padding: 20px 16px 22px !important;
  }
  .mf-store .mf-hero-caption h1,
  .mf-store .mf-hero-title{
    font-size: clamp(1.25rem, 6vw, 1.7rem) !important;
  }
}
