.mfc-page {
    overflow: visible;
}

.mfc-page .mfp-container {
    width: min(1680px, calc(100% - 72px));
}

.mfc-page--standard .mfp-container,
.mfc-page--journal .mfp-container {
    width: min(1680px, calc(100% - 72px));
}

.mfc-hero {
    position: relative;
    min-height: 100svh;
    padding: 118px 0 48px;
    overflow: hidden;
    color: #fff;
    background: #263238;
    isolation: isolate;
}

.mfc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--mfc-hero-image) center / cover no-repeat;
    transform: scale(1.02);
}

.mfc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(18,22,24,0.58), rgba(18,22,24,0.18) 48%, rgba(18,22,24,0.36)),
        linear-gradient(0deg, rgba(18,22,24,0.62), rgba(18,22,24,0.10) 55%);
}

.mfc-hero-inner {
    min-height: calc(100svh - 166px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mfc-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.mfc-breadcrumbs a,
.mfc-breadcrumbs span,
.mfc-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.17);
    border: 1px solid rgba(255,255,255,0.24);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.mfc-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: var(--mfp-font-display);
    font-size: clamp(54px, 7vw, 106px);
    line-height: 0.88;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.mfc-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.58;
}

.mfc-section {
    padding: 58px 0;
}

.mfc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.mfc-toolbar p {
    margin: 0;
    color: var(--mfp-text-soft);
    font-size: 15px;
}

.mfc-toolbar-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.mfc-toolbar-sort {
    width: min(260px, 38vw);
}

.mfc-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mfc-filter {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--mfp-border);
    background: var(--mfp-card);
    color: var(--mfp-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.mfc-filter-row--blog {
    margin: 0 0 30px;
}

.mfc-search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin: 0 0 18px;
}

.mfc-search-page-form input {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    padding: 0 28px;
    background: var(--mfp-card-strong);
    color: var(--mfp-text);
    font: inherit;
    font-weight: 750;
    outline: none;
}

.mfc-search-page-form input:focus {
    border-color: var(--mfp-accent);
    box-shadow: 0 0 0 3px var(--mfp-accent-soft);
}

.mfc-search-page-form button {
    min-height: 56px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    padding: 0 28px;
    background: var(--mfp-text);
    color: var(--mfp-bg);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.mfc-search-summary {
    margin: 0 0 26px;
    color: var(--mfp-text-soft);
    font-size: 16px;
    line-height: 1.5;
}

.mfc-filter:hover,
.mfc-filter.is-active {
    border-color: var(--mfp-accent);
    background: var(--mfp-accent);
    color: #fff;
}

.mfc-filter-drawer-button,
.mfc-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--mfp-border);
    background: var(--mfp-card);
    color: var(--mfp-text);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.mfc-filter-drawer-button {
    min-height: 50px;
}

.mfc-catalog-layout {
    display: grid;
    gap: 22px;
}

.mfc-filter-panel {
    position: relative;
    z-index: 40;
    display: grid;
    gap: 14px;
    max-height: 620px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--mfp-border);
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    transition:
        max-height 0.32s ease,
        padding-bottom 0.32s ease,
        border-color 0.32s ease,
        opacity 0.18s ease,
        transform 0.18s ease;
}

.mfc-filter-panel.is-collapsed {
    max-height: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.mfc-filter-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.mfc-filter-select {
    position: relative;
    min-width: 0;
}

.mfc-filter-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 50px;
    padding: 0 44px 0 16px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: var(--mfp-card-strong);
    color: var(--mfp-text);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.mfc-filter-select-trigger::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--mfp-text-muted);
    transform: translateY(-65%) rotate(45deg);
}

.mfc-filter-select-trigger [data-mfc-filter-select-label],
.mfc-filter-select-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mfc-filter-select-trigger[aria-expanded="true"] {
    border-color: var(--mfp-accent);
    box-shadow: 0 0 0 3px var(--mfp-accent-soft), inset 0 1px 0 rgba(255,255,255,0.42);
}

.mfc-filter-select-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 70;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--mfp-border);
    border-radius: 22px;
    background: color-mix(in srgb, var(--mfp-bg-soft) 92%, transparent);
    box-shadow: var(--mfp-shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.mfc-filter-select-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mfc-filter-search input {
    width: 100%;
    min-height: 38px;
    padding: 0 20px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: var(--mfp-card);
    color: var(--mfp-text);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    outline: none;
}

.mfc-filter-search input::placeholder {
    color: var(--mfp-text-muted);
}

.mfc-filter-search input:focus {
    border-color: color-mix(in srgb, var(--mfp-accent-strong) 70%, transparent);
    box-shadow: 0 0 0 3px var(--mfp-accent-soft), inset 0 1px 0 rgba(255,255,255,0.42);
}

.mfc-filter-select-options {
    display: grid;
    gap: 8px;
    max-height: 472px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.mfc-filter-select-option {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: var(--mfp-card-strong);
    color: var(--mfp-text);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}

.mfc-filter-select-option[hidden] {
    display: none;
}

.mfc-filter-select-option--clear {
    color: var(--mfp-accent-strong);
}

.mfc-filter-swatch {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1px solid color-mix(in srgb, var(--mfp-text) 16%, transparent);
    border-radius: 999px;
    background: var(--mfc-filter-swatch, var(--mfp-card-strong));
    box-shadow:
        inset 0 0 0 2px color-mix(in srgb, var(--mfp-card) 82%, transparent),
        0 2px 8px color-mix(in srgb, var(--mfp-text) 10%, transparent);
}

.mfc-filter-select-option:hover,
.mfc-filter-select-option.is-selected {
    border-color: color-mix(in srgb, var(--mfp-accent-strong) 70%, transparent);
    background: var(--mfp-accent-soft);
    color: var(--mfp-accent-3);
}

.mfc-filter-select-option.is-selected::after {
    content: "✓";
    margin-left: auto;
}

.mfc-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.mfc-active-filter,
.mfc-filter-reset {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--mfp-text-soft);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.mfc-catalog-filter-shell.is-filter-loading {
    opacity: 0.62;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.mfc-filter-reset {
    justify-self: start;
}

.mfc-filter-empty {
    margin-top: 24px;
    padding: 36px;
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card);
}

.mfc-load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    margin-top: 22px;
    color: var(--mfp-text-soft);
    font-size: 13px;
    font-weight: 850;
    opacity: 0.72;
}

.mfc-load-more[hidden] {
    display: none;
}

.mfc-load-spinner {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--mfp-accent) 22%, transparent);
    border-top-color: var(--mfp-accent);
    animation: mfc-load-spin 0.8s linear infinite;
}

@keyframes mfc-load-spin {
    to {
        transform: rotate(360deg);
    }
}

.mfc-category-grid,
.mfc-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mfc-category-card,
.mfc-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--mfp-radius);
    color: var(--mfp-text);
    text-decoration: none;
    background: var(--mfp-card);
    border: 1px solid var(--mfp-border);
    box-shadow: var(--mfp-shadow-soft);
    isolation: isolate;
}

.mfc-category-card img,
.mfc-brand-card img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 7.1;
    height: auto;
    object-fit: cover;
    transition: transform 0.48s ease;
}

.mfc-category-card::after,
.mfc-brand-card::after {
    display: none;
}

.mfc-category-card:hover img,
.mfc-brand-card:hover img {
    transform: scale(1.045);
}

.mfc-card-content {
    /* position: relative; */
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 132px;
    padding: 18px;
    background: var(--mfp-bg-soft);
}

.mfc-card-count {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    /* padding: 0 10px;
    border-radius: 999px;
    background: var(--mfp-accent-soft);
    border: 1px solid var(--mfp-border); */
    color: var(--mfp-accent-strong);
    font-size: 13px;
    font-weight: 750;
}

.mfc-card-content h2,
.mfc-card-content h3 {
    margin: 12px 0 0;
    color: var(--mfp-text);
    font-size: 18px;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.mfc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        filter 0.28s ease;
}

.mfc-category-grid + .mfc-product-grid,
.mfc-category-grid + .mfc-infinite-feed {
    margin-top: 28px;
}

.mfc-infinite-feed {
    position: relative;
}

.mfc-page-chunk + .mfc-page-chunk {
    margin-top: 22px;
}

.mfc-infinite-sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.mfc-infinite-sentinel--top {
    margin-bottom: -1px;
}

.mfc-infinite-sentinel--bottom {
    margin-top: 1px;
}

.mfc-infinite-feed.is-loading-next .mfc-infinite-sentinel--bottom,
.mfc-infinite-feed.is-loading-prev .mfc-infinite-sentinel--top {
    height: 48px;
}

.mfc-load-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mfc-load-more[hidden] {
    display: none;
}

.mfc-load-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--mfp-border-strong);
    border-radius: 999px;
    background: var(--mfp-card-strong);
    color: var(--mfp-accent-strong);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--mfp-shadow-soft);
}

.mfc-load-more-button:hover {
    border-color: var(--mfp-accent);
    background: var(--mfp-accent);
    color: #fff;
}

.mfc-load-more-button:disabled {
    opacity: 0.52;
    cursor: wait;
}

html.mfc-infinite-ready .mfc-pagination {
    display: none;
}

.mfc-pagination {
    display: flex;
    justify-content: center;
    margin: 34px 0 0;
}

.mfc-pagination .woocommerce-pagination {
    width: 100%;
}

.mfc-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mfc-pagination .page-numbers li {
    margin: 0;
}

.mfc-pagination .page-numbers a,
.mfc-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: var(--mfp-card);
    color: var(--mfp-text);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.mfc-pagination .page-numbers a:hover,
.mfc-pagination .page-numbers .current {
    border-color: var(--mfp-accent);
    background: var(--mfp-accent);
    color: #fff;
}

.mfc-product-grid.is-filter-loading {
    opacity: 0.36;
    filter: saturate(0.78);
    transform: translateY(6px);
    pointer-events: none;
}

.mfc-product-grid.is-filter-revealing {
    animation: mfc-filter-grid-reveal 0.34s ease both;
}

@keyframes mfc-filter-grid-reveal {
    from {
        opacity: 0.28;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfc-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card);
    box-shadow: var(--mfp-shadow-soft);
}

.mfc-product-card.is-page-revealing {
    animation: mfc-product-card-reveal 0.42s ease both;
}

@keyframes mfc-product-card-reveal {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfc-product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.mfc-product-image {
    position: relative;
    aspect-ratio: 4 / 7.1;
    overflow: hidden;
    background: #eee8e1;
}

.mfc-product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity 0.5s ease,
        transform 2s cubic-bezier(0,0,0.44,1.18);
}

.mfc-product-image img:first-child {
    opacity: 1;
    transform: scale(1);
}

.mfc-product-hover {
    opacity: 0;
    transform: scale(1);
}

.mfc-product-card:hover .mfc-product-image img:first-child {
    opacity: 1;
    transform: scale(1);
}

.mfc-product-card:hover .mfc-product-hover {
    opacity: 1;
    transform: scale(1.08);
}

.mfc-product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    max-width: calc(100% - 24px);
    pointer-events: none;
}

.mfc-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(45,38,31,0.18);
}

.mfc-product-badge--hit {
    background: var(--mfp-badge-hit);
}

.mfc-product-badge--sale {
    background: var(--mfp-badge-sale);
}

.mfc-product-badge--new {
    background: var(--mfp-badge-new);
}

.mfc-product-badge--default {
    background: var(--mfp-text);
}

.mfc-product-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
}

.mfc-post-date {
    margin: 0 0 8px;
    color: var(--mfp-accent-strong);
    font-size: 13px;
    font-weight: 700;
}

.mfc-product-body h3,
.mfc-post-body h2 {
    margin: 0;
    color: var(--mfp-text);
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.mfc-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    margin: auto 0 0;
    padding-top: 10px;
    color: var(--mfp-text);
    font-size: 15px;
    font-weight: 750;
}

.mfc-product-price--sale > span:first-child {
    color: var(--mfp-badge-sale);
}

.mfc-product-price del {
    color: var(--mfp-text-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration-thickness: 1px;
}

.mfc-product-price ins {
    text-decoration: none;
}

.mfc-product-discount {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 3px 6px;
    border-radius: 999px;
    background: var(--mfp-badge-sale);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.mfc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mfc-post-card {
    overflow: hidden;
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card);
    box-shadow: var(--mfp-shadow-soft);
}

.mfc-post-card a {
    color: inherit;
    text-decoration: none;
}

.mfc-post-image {
    aspect-ratio: 1.42 / 1;
    overflow: hidden;
    background: #eee8e1;
}

.mfc-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.48s ease;
}

.mfc-post-card:hover .mfc-post-image img {
    transform: scale(1.04);
}

.mfc-post-body {
    padding: 22px;
}

.mfc-post-body p {
    margin: 12px 0 0;
    color: var(--mfp-text-soft);
    font-size: 15px;
    line-height: 1.6;
}

.mfc-post-excerpt {
    position: relative;
    max-height: calc(1.6em * 4);
    overflow: hidden;
}

.mfc-post-excerpt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.8em;
    background: linear-gradient(180deg, color-mix(in srgb, var(--mfp-card) 0%, transparent), var(--mfp-card));
    pointer-events: none;
}

.mfc-article {
    padding: 0 0 70px;
}

.mfc-article-head {
    position: relative;
    min-height: 100svh;
    max-width: none;
    margin: 0 0 42px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: #263238;
    isolation: isolate;
}

.mfc-article-head::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--mfc-article-image) center / cover no-repeat;
}

.mfc-article-head::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(18,22,24,0.58), rgba(18,22,24,0.16) 52%, rgba(18,22,24,0.38)),
        linear-gradient(0deg, rgba(18,22,24,0.66), rgba(18,22,24,0.08) 55%);
}

.mfc-article-head-inner {
    width: min(1680px, calc(100% - 72px));
    margin: 0 auto;
    padding: 118px 0 48px;
}

.mfc-article-head h1 {
    margin: 18px 0 0;
    max-width: 1080px;
    font-family: var(--mfp-font-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.9;
    font-weight: 600;
}

.mfc-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mfc-article-cover {
    display: none;
}

.mfc-article-body {
    max-width: 860px;
    margin: 60px auto 0;
    color: var(--mfp-text-soft);
    font-size: 19px;
    line-height: 1.78;
}

.mfc-article-body p {
    margin: 0 0 24px;
}

.mfc-article-body h2 {
    margin: 44px 0 18px;
    color: var(--mfp-text);
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.mfc-article-body .has-large-font-size {
    margin: 44px 0 18px;
    color: var(--mfp-text);
    font-family: var(--mfp-font-display);
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.88;
    letter-spacing: 0.012em;
    font-weight: 600;
}

.mfc-inline-image,
.mfc-article-body .wp-block-image,
.mfc-article-body .wp-block-gallery,
.mfc-article-body > p:has(> img:only-child) {
    margin: 34px 0;
    overflow: hidden;
    border-radius: var(--mfp-radius);
}

.mfc-inline-image img,
.mfc-article-body .wp-block-image img,
.mfc-article-body .wp-block-gallery img,
.mfc-article-body > p:has(> img:only-child) img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.mfc-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 48px 0 0;
}

.mfc-article-tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--mfp-border);
    border-radius: 999px;
    background: var(--mfp-card);
    color: var(--mfp-text-soft);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.mfc-article-tag:hover {
    border-color: var(--mfp-accent);
    background: var(--mfp-accent);
    color: #fff;
}

.mfc-club-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
    gap: 28px;
    align-items: start;
}

.mfc-club-intro,
.mfc-club-table-card,
.mfc-club-note {
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card);
    box-shadow: var(--mfp-shadow-soft);
}

.mfc-club-intro {
    padding: clamp(28px, 4vw, 54px);
}

.mfc-club-intro h2 {
    max-width: 900px;
    margin: 0;
    font-family: var(--mfp-font-display);
    font-size: clamp(42px, 5vw, 78px);
    line-height: 0.9;
    font-weight: 600;
}

.mfc-club-intro > p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--mfp-text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.mfc-club-reasons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.mfc-club-reason {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--mfp-border);
    border-radius: var(--mfp-radius);
    background: var(--mfp-card-strong);
}

.mfc-club-reason span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--mfp-accent-soft);
    color: var(--mfp-accent-strong);
    font-weight: 800;
}

.mfc-club-reason h3 {
    margin: 0;
    color: var(--mfp-text);
    font-size: 18px;
    line-height: 1.18;
}

.mfc-club-reason p {
    margin: 10px 0 0;
    color: var(--mfp-text-soft);
    font-size: 15px;
    line-height: 1.58;
}

.mfc-club-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.mfc-club-table-card,
.mfc-club-note {
    padding: 24px;
}

.mfc-club-table-card h2,
.mfc-club-note h2 {
    margin: 0 0 16px;
    color: var(--mfp-text);
    font-size: 24px;
    line-height: 1.08;
}

.mfc-club-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

.mfc-club-table th,
.mfc-club-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--mfp-border);
    color: var(--mfp-text);
    font-size: 15px;
    text-align: left;
}

.mfc-club-table th {
    color: var(--mfp-text-muted);
    font-size: 13px;
    font-weight: 750;
}

.mfc-club-table tr:last-child td {
    border-bottom: 0;
}

.mfc-club-table td:last-child {
    color: var(--mfp-accent-strong);
    font-weight: 800;
}

.mfc-club-note ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    color: var(--mfp-text-soft);
    font-size: 15px;
    line-height: 1.55;
}

@media (min-width: 1920px) {
    .mfc-page .mfp-container {
        width: min(1780px, calc(100% - 96px));
    }

    .mfc-page--standard .mfp-container,
    .mfc-page--journal .mfp-container,
    .mfc-article-head-inner {
        width: min(1780px, calc(100% - 96px));
    }
}

@media (max-width: 1100px) {
    .mfc-category-grid,
    .mfc-brand-grid,
    .mfc-product-grid,
    .mfc-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mfc-toolbar {
        display: grid;
    }

    .mfc-toolbar-actions {
        justify-content: stretch;
    }

    .mfc-toolbar-sort {
        width: auto;
        min-width: 0;
    }

    .mfc-filter-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mfc-club-layout {
        grid-template-columns: 1fr;
    }

    .mfc-club-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .mfc-page .mfp-container {
        width: min(100% - 28px, var(--mfp-container, 1240px));
    }

    .mfc-hero {
        min-height: 100svh;
        padding: 96px 0 28px;
    }

    .mfc-hero-inner {
        min-height: calc(100svh - 124px);
    }

    .mfc-hero h1 {
        font-size: clamp(42px, 15vw, 60px);
    }

    .mfc-hero p {
        font-size: 16px;
    }

    .mfc-section {
        padding: 42px 0;
    }

    .mfc-toolbar {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .mfc-toolbar-actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-self: stretch;
        width: 100%;
    }

    .mfc-toolbar-sort,
    .mfc-filter-drawer-button {
        justify-self: stretch;
        width: 100%;
        max-width: none;
    }

    .mfc-category-grid,
    .mfc-brand-grid,
    .mfc-product-grid,
    .mfc-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mfc-filter-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mfc-search-page-form {
        grid-template-columns: 1fr;
    }

    .mfc-search-page-form button {
        width: 100%;
    }

    .mfc-filter-select-trigger {
        min-height: 54px;
        padding-left: 18px;
        font-size: 16px;
    }

    .mfc-filter-select-menu {
        position: static;
        margin-top: 8px;
        box-shadow: none;
    }

    .mfc-filter-select-menu[hidden] {
        display: none;
    }

    .mfc-category-card,
    .mfc-brand-card {
        min-height: 0;
    }

    .mfc-card-content h2,
    .mfc-card-content h3 {
        font-size: 15px;
    }

    .mfc-card-content {
        min-height: 180px;
        padding: 14px;
    }

    .mfc-product-body,
    .mfc-post-body {
        padding: 14px;
    }

    .mfc-product-badges {
        top: 8px;
        right: 8px;
        gap: 5px;
        max-width: calc(100% - 16px);
    }

    .mfc-product-badge {
        min-height: 22px;
        padding: 4px 7px;
        font-size: 9px;
    }

    .mfc-product-body h3,
    .mfc-post-body h2 {
        font-size: 15px;
    }

    .mfc-post-body p {
        display: none;
    }

    .mfc-post-excerpt::after {
        display: none;
    }

    .mfc-article {
        padding: 0 0 48px;
    }

    .mfc-article-head {
        min-height: 100svh;
    }

    .mfc-article-head-inner {
        width: min(100% - 28px, var(--mfp-container, 1240px));
        padding: 96px 0 28px;
    }

    .mfc-article-head h1 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .mfc-article-cover {
        border-radius: 28px;
    }

    .mfc-article-body {
        font-size: 17px;
        line-height: 1.7;
    }

    .mfc-article-body h2 {
        font-size: 28px;
    }

    .mfc-article-body .has-large-font-size {
        font-size: clamp(42px, 15vw, 60px);
    }

    .mfc-club-reasons {
        grid-template-columns: 1fr;
    }

    .mfc-club-intro {
        padding: 28px;
    }

    .mfc-club-intro h2 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .mfc-club-table-card,
    .mfc-club-note {
        padding: 20px;
    }

    .mfc-club-table th,
    .mfc-club-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
}
