    
    .fc-archive {
        --fc-primary: #F26223;
        --fc-primary-dark: #D94E15;
        --fc-secondary: #1C1A1E;
        --fc-text: #424242;
        --fc-text-light: #6B7280;
        --fc-bg: #FAFAFA;
        --fc-white: #FFFFFF;
        --fc-border: #E5E7EB;
        --fc-radius: 16px;
        --fc-radius-sm: 10px;
        --fc-shadow: 0 2px 8px rgba(0,0,0,0.06);
        --fc-shadow-hover: 0 12px 32px rgba(0,0,0,0.1);
        --fc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
        background: #FAFAFA;
    }

    .fc-archive * { box-sizing: border-box; }

    
    .fc-cat-header {
        background: #FAFAFA;
        padding: 100px 0 0;
        position: relative;
        overflow: hidden;
    }
    .fc-cat-header__inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px 24px;
        position: relative;
        z-index: 1;
    }
    .fc-cat-header__breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--fc-text-light);
        margin-bottom: 14px;
        font-family: 'DM Sans', sans-serif;
    }
    .fc-cat-header__breadcrumb a {
        color: var(--fc-text-light);
        text-decoration: none;
        transition: color 0.2s;
    }
    .fc-cat-header__breadcrumb a:hover { color: var(--fc-primary); }
    .fc-cat-header__breadcrumb svg { width: 14px; height: 14px; opacity: 0.4; }

    .fc-cat-header__content {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
    }
    .fc-cat-header__left { flex: 1; min-width: 0; }

    .fc-cat-header__badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 14px;
        background: rgba(242, 98, 35, 0.08);
        border: 1px solid rgba(242, 98, 35, 0.15);
        border-radius: 50px;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: var(--fc-primary);
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .fc-cat-header__title {
        font-size: 28px;
        font-weight: 700;
        color: var(--fc-secondary);
        margin: 0;
        line-height: 1.2;
    }
    .fc-cat-header__meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 8px;
    }
    .fc-cat-header__count {
        font-size: 14px;
        color: var(--fc-text-light);
        font-family: 'DM Sans', sans-serif;
    }
    .fc-cat-header__desc {
        font-size: 14px;
        color: var(--fc-text-light);
        line-height: 1.6;
        max-width: 550px;
        margin-top: 8px;
        font-family: 'DM Sans', sans-serif;
    }
    .fc-cat-header__desc p { margin: 0; }


    .fc-subcats {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
    }
    .fc-subcats__pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: 100px;
        color: var(--fc-text);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: var(--fc-transition);
        font-family: 'DM Sans', sans-serif;
    }
    .fc-subcats__pill:hover {
        border-color: var(--fc-primary);
        color: var(--fc-primary);
        background: rgba(242, 98, 35, 0.05);
    }
    .fc-subcats__pill-count {
        background: var(--fc-bg);
        border-radius: 100px;
        padding: 2px 8px;
        font-size: 11px;
        font-weight: 600;
        color: var(--fc-text-light);
        transition: var(--fc-transition);
    }
    .fc-subcats__pill:hover .fc-subcats__pill-count {
        background: rgba(242, 98, 35, 0.1);
        color: var(--fc-primary);
    }


    .fc-cat-usps {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0px 24px 0px;
    }
    .fc-cat-usps__inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius);
    }
    .fc-cat-usp {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        position: relative;
        transition: background 0.3s ease;
    }
    .fc-cat-usp:hover {
        background: rgba(0,0,0,0.015);
    }
    .fc-cat-usp:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--fc-border);
    }
    .fc-cat-usp__icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .fc-cat-usp__icon--truck {
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.03));
        color: #4CAF50;
    }
    .fc-cat-usp__icon--stock {
        background: linear-gradient(135deg, rgba(242, 98, 35, 0.1), rgba(242, 98, 35, 0.03));
        color: var(--fc-primary);
    }
    .fc-cat-usp__icon--clock {
        background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(30, 136, 229, 0.03));
        color: #1E88E5;
    }
    .fc-cat-usp__icon--euro {
        background: linear-gradient(135deg, rgba(142, 36, 170, 0.1), rgba(142, 36, 170, 0.03));
        color: #9C27B0;
    }
    .fc-cat-usp__text {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--fc-secondary);
        line-height: 1.35;
    }
    .fc-cat-usp__sub {
        display: block;
        font-weight: 400;
        font-size: 12px;
        color: var(--fc-text-light);
        margin-top: 1px;
    }

    
    .fc-shop {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 24px 80px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 32px;
        align-items: start;
    }

    
    .fc-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
    .fc-toolbar__left {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .fc-toolbar__results {
        font-size: 14px;
        color: var(--fc-text-light);
        font-family: 'DM Sans', sans-serif;
    }
    .fc-toolbar__right {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .fc-toolbar__sort {
        appearance: none;
        padding: 10px 40px 10px 16px;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        background: var(--fc-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        color: var(--fc-text);
        cursor: pointer;
        transition: var(--fc-transition);
    }
    .fc-toolbar__sort:focus {
        outline: none;
        border-color: var(--fc-primary);
        box-shadow: 0 0 0 3px rgba(242, 98, 35, 0.1);
    }
    .fc-toolbar__view {
        display: flex;
        gap: 4px;
    }
    .fc-toolbar__view-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        background: var(--fc-white);
        cursor: pointer;
        color: var(--fc-text-light);
        transition: var(--fc-transition);
    }
    .fc-toolbar__view-btn.active,
    .fc-toolbar__view-btn:hover {
        border-color: var(--fc-primary);
        color: var(--fc-primary);
        background: rgba(242, 98, 35, 0.05);
    }
    .fc-toolbar__view-btn svg { width: 18px; height: 18px; }

    
    .fc-toolbar__filter-toggle {
        display: none;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        background: var(--fc-white);
        font-size: 14px;
        font-weight: 600;
        color: var(--fc-text);
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }
    .fc-toolbar__filter-toggle svg { width: 18px; height: 18px; }

    
    .fc-sidebar {
        position: sticky;
        top: 100px;
    }
    .fc-filter {
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius);
        padding: 24px;
        margin-bottom: 16px;
    }
    .fc-filter__title {
        font-size: 14px;
        font-weight: 700;
        color: var(--fc-secondary);
        margin: 0 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
    }
    .fc-filter__title svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s;
    }
    .fc-filter.is-collapsed .fc-filter__title svg { transform: rotate(-90deg); }
    .fc-filter.is-collapsed .fc-filter__body { display: none; }

    .fc-filter__option {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        cursor: pointer;
        font-size: 14px;
        color: var(--fc-text);
        font-family: 'DM Sans', sans-serif;
        transition: color 0.2s;
    }
    .fc-filter__option:hover { color: var(--fc-primary); }
    .fc-filter__checkbox {
        width: 18px;
        height: 18px;
        border: 2px solid var(--fc-border);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--fc-transition);
        flex-shrink: 0;
    }
    .fc-filter__option input { display: none; }
    .fc-filter__option input:checked + .fc-filter__checkbox {
        background: var(--fc-primary);
        border-color: var(--fc-primary);
    }
    .fc-filter__option input:checked + .fc-filter__checkbox::after {
        content: '';
        width: 10px;
        height: 10px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .fc-filter__count {
        margin-left: auto;
        font-size: 12px;
        color: var(--fc-text-light);
        background: var(--fc-bg);
        padding: 2px 8px;
        border-radius: 100px;
    }

    
    .fc-filter__colors {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 10px;
    }
    .fc-filter__color-swatch {
        position: relative;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .fc-filter__color-swatch input { display: none; }
    .fc-filter__color-circle {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2.5px solid var(--fc-border);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    }
    .fc-filter__color-circle--multi {
        background: conic-gradient(#e74c3c, #f1c40f, #2ecc71, #3498db, #9b59b6, #e74c3c) !important;
    }
    .fc-filter__color-swatch:hover .fc-filter__color-circle {
        transform: scale(1.15);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
    .fc-filter__color-swatch input:checked + .fc-filter__color-circle {
        border-color: var(--fc-primary);
        transform: scale(1.1);
        box-shadow: 0 0 0 3px rgba(242, 98, 35, 0.15), 0 4px 12px rgba(0,0,0,0.1);
    }
    .fc-filter__color-swatch input:checked + .fc-filter__color-circle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
        filter: var(--check-filter, drop-shadow(0 1px 2px rgba(0,0,0,0.3)));
    }
    .fc-filter__color-name {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: var(--fc-text-light);
        text-align: center;
        max-width: 56px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.2;
        transition: color 0.2s;
    }
    .fc-filter__color-swatch:hover .fc-filter__color-name,
    .fc-filter__color-swatch input:checked ~ .fc-filter__color-name {
        color: var(--fc-primary);
        font-weight: 600;
    }
    
    .fc-filter__body--limited .fc-filter__option:nth-child(n+6) {
        display: none;
    }
    .fc-filter__body--limited.is-expanded .fc-filter__option:nth-child(n+6) {
        display: flex;
    }
    .fc-filter__toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 8px;
        padding: 6px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--fc-primary);
        transition: all 0.2s ease;
    }
    .fc-filter__toggle:hover {
        opacity: 0.8;
    }
    .fc-filter__toggle svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }
    .fc-filter__body--limited.is-expanded + .fc-filter__toggle svg {
        transform: rotate(180deg);
    }

    .fc-filter__color-count {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--fc-white);
        border: 1.5px solid var(--fc-border);
        border-radius: 50%;
        font-family: 'DM Sans', sans-serif;
        font-size: 9px;
        font-weight: 700;
        color: var(--fc-text-light);
        line-height: 1;
    }

    
    .fc-filter__price-inputs {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .fc-filter__price-input {
        flex: 1;
        min-width: 0;
        max-width: calc(50% - 15px);
        padding: 10px 12px;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        font-size: 14px;
        font-family: 'DM Sans', sans-serif;
        color: var(--fc-text);
        text-align: center;
        outline: none;
        transition: var(--fc-transition);
        -moz-appearance: textfield;
        box-sizing: border-box;
    }
    .fc-filter__price-input::-webkit-outer-spin-button,
    .fc-filter__price-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .fc-filter__price-input:focus {
        border-color: var(--fc-primary);
        box-shadow: 0 0 0 3px rgba(242, 98, 35, 0.1);
    }
    .fc-filter__price-sep { color: var(--fc-text-light); font-size: 14px; flex-shrink: 0; }

    .fc-filter__apply {
        width: 100%;
        margin-top: 12px;
        padding: 10px;
        background: var(--fc-primary);
        color: var(--fc-white);
        border: none;
        border-radius: var(--fc-radius-sm);
        font-size: 14px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        transition: var(--fc-transition);
    }
    .fc-filter__apply:hover { background: var(--fc-primary-dark); }

    
    .fc-active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    .fc-active-filters:empty { display: none; }
    .fc-active-filter {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: rgba(242, 98, 35, 0.08);
        border: 1px solid rgba(242, 98, 35, 0.2);
        border-radius: 100px;
        font-size: 12px;
        font-weight: 500;
        color: var(--fc-primary);
        text-decoration: none;
        transition: var(--fc-transition);
        font-family: 'DM Sans', sans-serif;
    }
    .fc-active-filter:hover {
        background: rgba(242, 98, 35, 0.15);
        border-color: var(--fc-primary);
    }
    .fc-active-filter svg { width: 12px; height: 12px; }
    .fc-clear-all {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        color: var(--fc-text-light);
        text-decoration: none;
        transition: color 0.2s;
        font-family: 'DM Sans', sans-serif;
    }
    .fc-clear-all:hover { color: #E53935; }

    
    .fc-products {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .fc-products.fc-products--list {
        grid-template-columns: 1fr;
    }

    
    .fc-product-card {
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.04);
        position: relative;
    }
    .fc-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(242, 98, 35, 0.1);
        border-color: rgba(242, 98, 35, 0.08);
    }

    
    .fc-product-card__badges {
        position: absolute;
        top: 12px;
        left: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 5;
    }
    .fc-product-card__badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        font-family: 'Poppins', sans-serif;
    }
    .fc-product-card__badge--sale {
        background: #D21F13;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(210, 31, 19, 0.25);
    }
    .fc-product-card__badge--new {
        background: #1C1A1E;
        color: #ffffff;
    }
    .fc-product-card__badge--featured {
        background: linear-gradient(135deg, #F26223, #F5923E);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(242, 98, 35, 0.3);
    }

    
    .fc-product-card__image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #f5f5f5;
        display: block;
        border-radius: 20px 20px 0 0;
    }
    .fc-product-card__image a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .fc-product-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
    }
    .fc-product-card:hover .fc-product-card__image img {
        transform: scale(1.06);
        filter: brightness(1.03);
    }

    
    .fc-product-card__actions {
        position: absolute;
        bottom: 12px;
        right: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 5;
    }
    .fc-product-card__action-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        color: #1C1A1E;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
        text-decoration: none;
    }
    .fc-product-card__action-btn:nth-child(2) { transition-delay: 0.06s; }
    .fc-product-card:hover .fc-product-card__action-btn {
        opacity: 1;
        transform: translateX(0);
    }
    .fc-product-card__action-btn:hover {
        background: linear-gradient(135deg, #F26223, #F5923E);
        color: #ffffff;
        transform: translateX(0) scale(1.08);
        box-shadow: 0 4px 14px rgba(242, 98, 35, 0.3);
    }
    .fc-product-card__action-btn svg {
        width: 15px;
        height: 15px;
        pointer-events: none;
    }

    
    .fc-product-card__content {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .fc-product-card__category {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: #F26223;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 6px;
        padding: 3px 10px;
        background: rgba(242, 98, 35, 0.08);
        border-radius: 6px;
        width: fit-content;
    }
    .fc-product-card__title {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #1C1A1E;
        line-height: 1.4;
        margin: 0 0 4px;
        max-height: 2.8em;
        overflow: hidden;
        transition: color 0.3s ease;
    }
    .fc-product-card__title a {
        color: inherit;
        text-decoration: none;
    }
    .fc-product-card:hover .fc-product-card__title,
    .fc-product-card:hover .fc-product-card__title a {
        color: #F26223;
    }
    .fc-product-card__subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        color: #94a3b8;
        line-height: 1.4;
        margin-bottom: 10px;
        max-height: 1.4em;
        overflow: hidden;
    }

    
    .fc-product-card__specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        margin-bottom: 12px;
    }
    .fc-product-card__spec {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 8px;
        background: #f5f6f8;
        border-radius: 7px;
        transition: background 0.2s;
    }
    .fc-product-card:hover .fc-product-card__spec {
        background: #eef0f2;
    }
    .fc-product-card__spec-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        flex-shrink: 0;
    }
    .fc-product-card__spec-icon svg {
        width: 12px;
        height: 12px;
    }
    .fc-product-card__spec-icon--thickness {
        background: rgba(242, 98, 35, 0.1);
        color: #F26223;
    }
    .fc-product-card__spec-icon--water {
        background: rgba(30, 136, 229, 0.1);
        color: #1E88E5;
    }
    .fc-product-card__spec-icon--floor {
        background: rgba(46, 125, 50, 0.1);
        color: #2E7D32;
    }
    .fc-product-card__spec-icon--wear {
        background: rgba(142, 36, 170, 0.1);
        color: #8E24AA;
    }
    .fc-product-card__spec-icon--color {
        background: rgba(255, 152, 0, 0.1);
        color: #F57C00;
    }
    .fc-product-card__spec-icon--type {
        background: rgba(0, 137, 123, 0.1);
        color: #00897B;
    }
    .fc-product-card__spec-text {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: #424242;
        font-weight: 600;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .fc-product-card__spec-label {
        display: block;
        font-size: 8px;
        font-weight: 500;
        color: #6B7280;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    
    .fc-product-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        margin-top: auto;
    }
    .fc-product-card__price {
        display: flex;
        align-items: baseline;
        gap: 6px;
        flex-wrap: wrap;
    }
    .fc-product-card__price-current {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #F26223;
        line-height: 1;
    }
    .fc-product-card__price-current--normal {
        color: #1C1A1E;
    }
    .fc-product-card__price-old {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #94a3b8;
        text-decoration: line-through;
        font-weight: 500;
    }
    .fc-product-card__price-unit {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #94a3b8;
        font-weight: 500;
    }
    .fc-product-card__view-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 14px;
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(135deg, #F26223, #F5923E);
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(242, 98, 35, 0.2);
        white-space: nowrap;
    }
    .fc-product-card__view-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(242, 98, 35, 0.3);
    }
    .fc-product-card__view-btn svg {
        width: 12px;
        height: 12px;
    }

    
    .fc-products--list .fc-product-card {
        flex-direction: row;
    }
    .fc-products--list .fc-product-card__image { aspect-ratio: auto; min-height: 200px; width: 280px; flex-shrink: 0; border-radius: 20px 0 0 20px; }
    .fc-products--list .fc-product-card__content { justify-content: center; }

    
    .fc-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--fc-border);
    }
    .fc-pagination a, .fc-pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        font-size: 14px;
        font-weight: 600;
        color: var(--fc-text);
        text-decoration: none;
        transition: var(--fc-transition);
        font-family: 'DM Sans', sans-serif;
    }
    .fc-pagination a:hover {
        border-color: var(--fc-primary);
        color: var(--fc-primary);
        background: rgba(242, 98, 35, 0.05);
    }
    .fc-pagination .current {
        background: var(--fc-primary);
        border-color: var(--fc-primary);
        color: white;
    }
    .fc-pagination .dots {
        border: none;
        color: var(--fc-text-light);
    }

    
    .fc-no-results {
        text-align: center;
        padding: 60px 24px;
        grid-column: 1 / -1;
    }
    .fc-no-results__icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        color: var(--fc-border);
    }
    .fc-no-results__title {
        font-size: 20px;
        font-weight: 600;
        color: var(--fc-secondary);
        margin: 0 0 8px;
    }
    .fc-no-results__text {
        font-size: 15px;
        color: var(--fc-text-light);
        font-family: 'DM Sans', sans-serif;
    }

    
    .fc-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
    .fc-sidebar-close {
        display: none;
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--fc-border);
        background: var(--fc-white);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        color: var(--fc-text);
    }
    .fc-sidebar-close svg { width: 18px; height: 18px; }

    
    @media (max-width: 1100px) {
        .fc-products { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
        .fc-shop { grid-template-columns: 1fr; }
        .fc-toolbar__filter-toggle { display: flex; }
        .fc-sidebar-close { display: flex; }
        .fc-sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100vh;
            background: var(--fc-white);
            z-index: 9999;
            overflow-y: auto;
            padding: 60px 20px 20px;
            transition: left 0.3s ease;
        }
        .fc-sidebar.is-open { left: 0; }
        .fc-sidebar.is-open + .fc-sidebar-overlay { display: block; }
        .fc-products--list .fc-product-card { grid-template-columns: 1fr; }
    }
    @media (max-width: 1024px) {
        .fc-cat-usps__inner { grid-template-columns: repeat(2, 1fr); }
        .fc-cat-usp:nth-child(2)::after { display: none; }
        .fc-cat-header__content { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 768px) {
        /* ── Category Header: compact mobile ── */
        .fc-cat-header { padding: 80px 0 0; }
        .fc-cat-header__inner { padding: 0 16px 16px; }
        .fc-cat-header__breadcrumb { font-size: 11px; gap: 5px; margin-bottom: 10px; }
        .fc-cat-header__breadcrumb svg { width: 10px; height: 10px; }
        .fc-cat-header__badge {
            padding: 3px 10px;
            font-size: 10px;
            gap: 4px;
            margin-bottom: 6px;
        }
        .fc-cat-header__badge svg { width: 10px; height: 10px; }
        .fc-cat-header__title { font-size: 20px; line-height: 1.15; }
        .fc-cat-header__desc { font-size: 12px; line-height: 1.5; margin-top: 6px; }
        .fc-cat-header__desc p { margin: 0; }

        /* Subcategory pills: horizontal scroll */
        .fc-subcats {
            margin-top: 10px;
            gap: 5px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 4px;
        }
        .fc-subcats::-webkit-scrollbar { display: none; }
        .fc-subcats__pill {
            padding: 5px 12px;
            font-size: 11px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .fc-subcats__pill-count { font-size: 9px; padding: 1px 6px; }

        /* USPs: 2x2 compact grid */
        .fc-cat-usps__inner {
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 0;
        }
        .fc-cat-usp::after { display: none !important; }
        .fc-cat-usp {
            padding: 10px 12px;
            gap: 8px;
            position: relative;
        }
        /* Border grid separators */
        .fc-cat-usp:nth-child(odd) { border-right: 1px solid var(--fc-border); }
        .fc-cat-usp:nth-child(-n+2) { border-bottom: 1px solid var(--fc-border); }
        .fc-cat-usp__icon { width: 28px; height: 28px; border-radius: 7px; }
        .fc-cat-usp__icon svg { width: 14px; height: 14px; }
        .fc-cat-usp__text { font-size: 10px; }
        .fc-cat-usp__sub { font-size: 9px; }

        /* ── Toolbar: compact single row ── */
        .fc-toolbar {
            padding: 10px 16px;
            gap: 8px;
            background: var(--fc-white);
            border: 1px solid var(--fc-border);
            border-radius: var(--fc-radius-sm);
            margin-bottom: 16px;
        }
        .fc-toolbar__left { gap: 8px; }
        .fc-toolbar__filter-toggle {
            padding: 7px 12px;
            font-size: 12px;
            gap: 5px;
            border-radius: 8px;
        }
        .fc-toolbar__filter-toggle svg { width: 14px; height: 14px; }
        .fc-toolbar__results { font-size: 11px; }
        .fc-toolbar__right { gap: 6px; }
        .fc-toolbar__sort {
            padding: 7px 28px 7px 10px;
            font-size: 12px;
            border-radius: 8px;
            background-position: right 8px center;
        }
        .fc-toolbar__view { display: none; }

        /* ── Product cards ── */
        .fc-products { grid-template-columns: 1fr 1fr; gap: 12px; }
        .fc-product-card__content { padding: 12px; }
        .fc-product-card__title { font-size: 13px; }
        .fc-product-card__subtitle { display: none; }
        .fc-product-card__price-current { font-size: 15px; }
        .fc-product-card__price-unit { font-size: 10px; }
        .fc-product-card__price-old { font-size: 11px; }
        .fc-product-card__footer { padding-top: 10px; }
        .fc-product-card__view-btn { padding: 6px 10px; font-size: 10px; }
        .fc-product-card__view-btn svg { width: 10px; height: 10px; }
        .fc-product-card__action-btn { width: 32px; height: 32px; }
        .fc-product-card__action-btn svg { width: 14px; height: 14px; }
        .fc-product-card__specs { grid-template-columns: 1fr; gap: 4px; }
        .fc-product-card__spec { padding: 5px 8px; }
        .fc-product-card__spec-icon { width: 20px; height: 20px; }
        .fc-product-card__spec-icon svg { width: 10px; height: 10px; }
        .fc-product-card__spec-text { font-size: 10px; }
        .fc-product-card__spec-label { font-size: 8px; }
        .fc-product-card__badge { font-size: 9px; padding: 3px 8px; }

        /* Active filters compact */
        .fc-active-filters { gap: 6px; flex-wrap: wrap; }
        .fc-active-filter { font-size: 11px; padding: 4px 10px; }
        .fc-active-filter svg { width: 10px; height: 10px; }
        .fc-clear-all { font-size: 11px; }

        /* Pagination compact */
        .fc-pagination { margin-top: 24px; }
        .fc-pagination .page-numbers { width: 34px; height: 34px; font-size: 12px; }
    }
    @media (max-width: 480px) {
        .fc-cat-header { padding: 72px 0 0; }
        .fc-cat-header__inner { padding: 0 12px 12px; }
        .fc-cat-header__breadcrumb { font-size: 10px; gap: 4px; margin-bottom: 8px; }
        .fc-cat-header__title { font-size: 18px; }
        .fc-cat-header__badge { font-size: 9px; padding: 2px 8px; }
        .fc-cat-header__desc { font-size: 11px; }
        .fc-subcats__pill { padding: 4px 10px; font-size: 10px; }

        /* USPs even tighter */
        .fc-cat-usp { padding: 8px 10px; gap: 6px; }
        .fc-cat-usp__icon { width: 24px; height: 24px; border-radius: 6px; }
        .fc-cat-usp__icon svg { width: 12px; height: 12px; }
        .fc-cat-usp__text { font-size: 9px; }
        .fc-cat-usp__sub { font-size: 8px; }

        /* Toolbar tighter */
        .fc-toolbar { padding: 8px 12px; gap: 6px; margin-bottom: 12px; border-radius: 8px; }
        .fc-toolbar__filter-toggle { padding: 6px 10px; font-size: 11px; border-radius: 6px; }
        .fc-toolbar__filter-toggle svg { width: 12px; height: 12px; }
        .fc-toolbar__results { font-size: 10px; }
        .fc-toolbar__sort { padding: 6px 24px 6px 8px; font-size: 11px; border-radius: 6px; }

        /* Product grid single column */
        .fc-products { grid-template-columns: 1fr; gap: 10px; }
    }


    .fc-product {
        --fc-primary: #F26223;
        --fc-primary-dark: #D94E15;
        --fc-accent: #D21F13;
        --fc-title: #1C1A1E;
        --fc-text: #424242;
        --fc-text-light: #757575;
        --fc-bg: #FAFAFA;
        --fc-white: #FFFFFF;
        --fc-border: #E8E8E8;
        --fc-green: #2E7D32;
        --fc-red: #D32F2F;
        --fc-radius: 24px;
        --fc-radius-sm: 12px;
        --fc-radius-xs: 8px;
        --fc-shadow: 0 2px 20px rgba(0,0,0,0.06);
        --fc-shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
        --fc-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        --fc-font-primary: 'Poppins', sans-serif;
        --fc-font-secondary: 'DM Sans', sans-serif;

        font-family: var(--fc-font-secondary);
        color: var(--fc-text);
        background: var(--fc-bg);
    }

    /* --- Floating Product Notice --- */
    .fc-product-notice {
        position: fixed;
        top: 24px;
        right: 24px;
        z-index: 99999;
        animation: fcNoticeSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    @keyframes fcNoticeSlideIn {
        from { opacity: 0; transform: translateX(40px); }
        to { opacity: 1; transform: translateX(0); }
    }
    .fc-product-notice__card {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        max-width: 400px;
        min-width: 300px;
    }
    .fc-product-notice__card--success {
        border-left: 4px solid var(--fc-green);
    }
    .fc-product-notice__icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(46, 125, 50, 0.1);
        color: var(--fc-green);
    }
    .fc-product-notice__content {
        flex: 1;
        min-width: 0;
    }
    .fc-product-notice__text {
        display: block;
        font-family: var(--fc-font-secondary);
        font-size: 14px;
        font-weight: 500;
        color: var(--fc-title);
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .fc-product-notice__btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: linear-gradient(135deg, var(--fc-primary), #F5923E);
        color: #fff;
        border-radius: var(--fc-radius-xs);
        font-size: 13px;
        font-weight: 600;
        font-family: var(--fc-font-primary);
        text-decoration: none;
        transition: var(--fc-transition);
        box-shadow: 0 2px 8px rgba(242, 98, 35, 0.2);
    }
    .fc-product-notice__btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(242, 98, 35, 0.3);
        color: #fff;
    }
    .fc-product-notice__close {
        background: none;
        border: none;
        padding: 4px;
        cursor: pointer;
        color: var(--fc-text-light);
        transition: color 0.2s;
        flex-shrink: 0;
    }
    .fc-product-notice__close:hover {
        color: var(--fc-title);
    }

    /* Hide default WC notices on product page (we use custom) */
    .fc-product > .woocommerce-notices-wrapper {
        display: none;
    }

    @media (max-width: 640px) {
        .fc-product-notice {
            top: auto;
            bottom: 16px;
            right: 12px;
            left: 12px;
        }
        .fc-product-notice__card {
            max-width: 100%;
            min-width: 0;
            padding: 14px 16px;
            gap: 10px;
        }
        .fc-product-notice__icon { width: 30px; height: 30px; }
        .fc-product-notice__icon svg { width: 16px; height: 16px; }
        .fc-product-notice__text { font-size: 13px; margin-bottom: 8px; }
        .fc-product-notice__btn { font-size: 12px; padding: 7px 14px; }
    }

    /* --- WooCommerce Notices (Product Page Fallback) --- */
    .fc-product .woocommerce-message,
    .fc-product .woocommerce-error,
    .fc-product .woocommerce-info {
        max-width: 1400px;
        margin: 0 auto;
        padding: 16px 24px 16px 52px;
        font-family: var(--fc-font-secondary);
        font-size: 14px;
        line-height: 1.5;
        color: var(--fc-text);
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        box-shadow: var(--fc-shadow);
        position: relative;
        list-style: none;
    }
    .fc-product .woocommerce-message::before,
    .fc-product .woocommerce-info::before,
    .fc-product .woocommerce-error::before {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
    }
    .fc-product .woocommerce-message {
        border-left: 4px solid var(--fc-green);
    }
    .fc-product .woocommerce-message::before {
        color: var(--fc-green) !important;
    }
    .fc-product .woocommerce-error {
        border-left: 4px solid var(--fc-red);
    }
    .fc-product .woocommerce-error::before {
        color: var(--fc-red) !important;
    }
    .fc-product .woocommerce-info {
        border-left: 4px solid var(--fc-primary);
    }
    .fc-product .woocommerce-info::before {
        color: var(--fc-primary) !important;
    }
    .fc-product .woocommerce-message a,
    .fc-product .woocommerce-error a,
    .fc-product .woocommerce-info a {
        color: var(--fc-primary);
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .fc-product .woocommerce-message a:hover,
    .fc-product .woocommerce-error a:hover,
    .fc-product .woocommerce-info a:hover {
        opacity: 0.8;
    }
    .fc-product .woocommerce-message a.button,
    .fc-product .woocommerce-info a.button {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        background: linear-gradient(135deg, var(--fc-primary), #F5923E);
        color: #fff;
        border-radius: var(--fc-radius-xs);
        font-size: 13px;
        font-weight: 600;
        font-family: var(--fc-font-primary);
        text-decoration: none;
        margin-right: 12px;
        float: right;
        transition: var(--fc-transition);
        box-shadow: 0 2px 8px rgba(242, 98, 35, 0.2);
        opacity: 1;
    }
    .fc-product .woocommerce-message a.button:hover,
    .fc-product .woocommerce-info a.button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(242, 98, 35, 0.3);
        opacity: 1;
    }
    .fc-product .woocommerce-message li,
    .fc-product .woocommerce-error li,
    .fc-product .woocommerce-info li {
        list-style: none;
    }


    .fc-breadcrumbs {
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 30px 20px;
        font-size: 13px;
        color: var(--fc-text-light);
        font-family: var(--fc-font-secondary);
    }
    .fc-breadcrumbs a {
        color: var(--fc-text-light);
        text-decoration: none;
        transition: color 0.2s;
    }
    .fc-breadcrumbs a:hover { color: var(--fc-primary); }
    .fc-breadcrumbs svg { vertical-align: middle; margin: 0 8px; }

    
    .fc-product-main {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    
    .fc-gallery { position: sticky; top: 100px; }
    .fc-gallery__main {
        position: relative;
        width: 100%;
        aspect-ratio: 1;
        border-radius: var(--fc-radius);
        overflow: hidden;
        background: var(--fc-white);
        box-shadow: var(--fc-shadow);
        cursor: zoom-in;
    }
    .fc-gallery__main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }
    .fc-gallery__main:hover img { transform: scale(1.05); }
    .fc-gallery__badge {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .fc-gallery__badge span {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        font-family: var(--fc-font-primary);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .fc-gallery__badge--sale { background: var(--fc-accent); color: var(--fc-white); }
    .fc-gallery__badge--new { background: var(--fc-green); color: var(--fc-white); }

    .fc-gallery__thumbs {
        display: flex;
        gap: 12px;
        margin-top: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .fc-gallery__thumb {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: var(--fc-radius-sm);
        overflow: hidden;
        border: 2px solid transparent;
        cursor: pointer;
        transition: var(--fc-transition);
        background: var(--fc-white);
    }
    .fc-gallery__thumb.is-active,
    .fc-gallery__thumb:hover {
        border-color: var(--fc-primary);
    }
    .fc-gallery__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    
    .fc-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: rgba(0,0,0,0.9);
        align-items: center;
        justify-content: center;
        padding: 40px;
    }
    .fc-lightbox.is-active { display: flex; }
    .fc-lightbox__close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.15);
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .fc-lightbox__close:hover { background: rgba(255,255,255,0.3); }
    .fc-lightbox__img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: var(--fc-radius-sm);
    }
    .fc-lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.15);
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .fc-lightbox__nav:hover { background: rgba(255,255,255,0.3); }
    .fc-lightbox__nav--prev { left: 20px; }
    .fc-lightbox__nav--next { right: 20px; }

    
    .fc-info { padding-top: 10px; }

    .fc-info__cats {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .fc-info__cat {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 100px;
        background: rgba(242, 98, 35, 0.08);
        color: var(--fc-primary);
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        font-family: var(--fc-font-primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s;
    }
    .fc-info__cat:hover { background: rgba(242, 98, 35, 0.15); color: var(--fc-primary); }

    .fc-info__title {
        font-family: var(--fc-font-primary);
        font-size: 32px;
        font-weight: 700;
        color: var(--fc-title);
        line-height: 1.25;
        margin: 0 0 8px;
    }

    .fc-info__sku {
        font-size: 13px;
        color: var(--fc-text-light);
        margin-bottom: 20px;
    }

    
    .fc-info__price-wrap {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 6px;
    }
    .fc-info__price {
        font-family: var(--fc-font-primary);
        font-size: 36px;
        font-weight: 700;
        color: var(--fc-title);
    }
    .fc-info__price--sale {
        color: var(--fc-accent);
    }
    .fc-info__price--old {
        font-size: 20px;
        font-weight: 400;
        color: var(--fc-text-light);
        text-decoration: line-through;
    }
    .fc-info__price-unit {
        font-size: 14px;
        color: var(--fc-text-light);
        margin-bottom: 20px;
    }
    .fc-info__price-save {
        display: inline-block;
        padding: 4px 10px;
        background: rgba(211, 47, 47, 0.08);
        color: var(--fc-accent);
        font-size: 13px;
        font-weight: 600;
        border-radius: 6px;
    }

    
    .fc-info__stock-specs {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }
    .fc-info__stock {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
    }
    .fc-info__stock--instock { background: rgba(46, 125, 50, 0.08); color: var(--fc-green); }
    .fc-info__stock--outofstock { background: rgba(211, 47, 47, 0.08); color: var(--fc-red); }
    .fc-info__spec-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 100px;
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        font-size: 13px;
        color: var(--fc-text);
        transition: border-color 0.2s;
    }
    .fc-info__spec-pill:hover { border-color: var(--fc-primary); }
    .fc-info__spec-pill svg { color: var(--fc-primary); flex-shrink: 0; }
    .fc-info__spec-pill-label { color: var(--fc-text-light); }
    .fc-info__spec-pill-value { font-weight: 600; color: var(--fc-title); }

    
    .fc-info__short-desc {
        font-size: 15px;
        line-height: 1.7;
        color: var(--fc-text);
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--fc-border);
    }
    .fc-info__short-desc p { margin: 0 0 10px; }
    .fc-info__short-desc p:last-child { margin-bottom: 0; }

    
    .fc-calc {
        background: var(--fc-white);
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius);
        padding: 24px;
        margin-bottom: 28px;
    }
    .fc-calc__header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
    .fc-calc__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(242, 98, 35, 0.08);
        color: var(--fc-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .fc-calc__title {
        font-family: var(--fc-font-primary);
        font-size: 16px;
        font-weight: 700;
        color: var(--fc-title);
        margin: 0;
    }
    .fc-calc__subtitle {
        font-size: 12px;
        color: var(--fc-text-light);
    }
    .fc-calc__info {
        display: flex;
        gap: 16px;
        padding: 12px 16px;
        background: var(--fc-bg);
        border-radius: var(--fc-radius-xs);
        margin-bottom: 16px;
        font-size: 13px;
    }
    .fc-calc__info-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .fc-calc__info-item strong {
        color: var(--fc-title);
        font-weight: 600;
    }
    .fc-calc__input-row {
        margin-bottom: 14px;
    }
    .fc-calc__label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--fc-title);
        margin-bottom: 6px;
    }
    .fc-calc__input-wrap {
        position: relative;
        max-width: 240px;
    }
    .fc-calc__input {
        width: 100%;
        padding: 12px 50px 12px 16px;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-xs);
        font-size: 16px;
        font-family: var(--fc-font-secondary);
        color: var(--fc-title);
        outline: none;
        transition: border-color 0.2s;
        -moz-appearance: textfield;
        box-sizing: border-box;
    }
    .fc-calc__input::-webkit-outer-spin-button,
    .fc-calc__input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .fc-calc__input:focus { border-color: var(--fc-primary); box-shadow: 0 0 0 3px rgba(242,98,35,0.08); }
    .fc-calc__input-unit {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        font-weight: 600;
        color: var(--fc-text-light);
        pointer-events: none;
    }
    .fc-calc__checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        cursor: pointer;
        font-size: 14px;
        color: var(--fc-text);
        user-select: none;
    }
    .fc-calc__checkbox input { display: none; }
    .fc-calc__check {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        border: 2px solid var(--fc-border);
        background: var(--fc-white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    .fc-calc__check svg { opacity: 0; transition: opacity 0.2s; }
    .fc-calc__checkbox input:checked + .fc-calc__check {
        background: var(--fc-primary);
        border-color: var(--fc-primary);
    }
    .fc-calc__checkbox input:checked + .fc-calc__check svg { opacity: 1; }

    
    .fc-calc__result {
        display: none;
        background: linear-gradient(135deg, rgba(46,125,50,0.04), rgba(46,125,50,0.08));
        border: 1px solid rgba(46, 125, 50, 0.2);
        border-radius: var(--fc-radius-sm);
        padding: 20px;
        margin-top: 4px;
    }
    .fc-calc__result.is-visible { display: block; }
    .fc-calc__result-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        font-size: 14px;
        color: var(--fc-text);
    }
    .fc-calc__result-row strong {
        color: var(--fc-title);
        font-weight: 600;
    }
    .fc-calc__result-divider {
        border: none;
        border-top: 1px solid rgba(46, 125, 50, 0.15);
        margin: 10px 0;
    }
    .fc-calc__result-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0 0;
    }
    .fc-calc__result-total-label {
        font-family: var(--fc-font-primary);
        font-size: 15px;
        font-weight: 700;
        color: var(--fc-green);
    }
    .fc-calc__result-total-value {
        font-family: var(--fc-font-primary);
        font-size: 22px;
        font-weight: 700;
        color: var(--fc-green);
    }

    
    .fc-info__actions {
        display: flex;
        gap: 12px;
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--fc-border);
    }
    .fc-info__qty {
        display: flex;
        align-items: center;
        border: 1px solid var(--fc-border);
        border-radius: var(--fc-radius-sm);
        overflow: hidden;
        background: var(--fc-white);
    }
    .fc-info__qty-btn {
        width: 44px;
        height: 50px;
        border: none;
        background: transparent;
        font-size: 18px;
        color: var(--fc-text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .fc-info__qty-btn:hover { background: var(--fc-bg); }
    .fc-info__qty input {
        width: 50px;
        height: 50px;
        border: none;
        border-left: 1px solid var(--fc-border);
        border-right: 1px solid var(--fc-border);
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        font-family: var(--fc-font-secondary);
        color: var(--fc-title);
        -moz-appearance: textfield;
        outline: none;
    }
    .fc-info__qty input::-webkit-outer-spin-button,
    .fc-info__qty input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .fc-info__add-to-cart {
        flex: 1;
        height: 50px;
        border: none;
        border-radius: var(--fc-radius-sm);
        background: linear-gradient(135deg, var(--fc-primary), #F5923E);
        color: var(--fc-white);
        font-family: var(--fc-font-primary);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(242, 98, 35, 0.3);
    }
    .fc-info__add-to-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(242, 98, 35, 0.4);
    }
    .fc-info__add-to-cart:active { transform: translateY(0); }

    /* Hide WC "view cart" link after AJAX add-to-cart */
    .fc-info__actions .added_to_cart.wc-forward {
        display: none !important;
    }

    .fc-info__offerte-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 50px;
        border: 2px solid var(--fc-primary);
        border-radius: var(--fc-radius-sm);
        background: transparent;
        color: var(--fc-primary);
        font-family: var(--fc-font-primary);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        margin-top: 10px;
    }
    .fc-info__offerte-btn:hover {
        background: var(--fc-primary);
        color: var(--fc-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(242, 98, 35, 0.3);
    }
    .fc-info__offerte-btn:active { transform: translateY(0); }

    
    .fc-info__usps {
        margin-top: 25px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }
    .fc-info__usp {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: linear-gradient(135deg, #fafafa, #f5f5f5);
        border-radius: var(--fc-radius-sm);
        border: 1px solid rgba(0,0,0,0.04);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .fc-info__usp:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        border-color: rgba(242, 98, 35, 0.15);
    }
    .fc-info__usp-icon {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .fc-info__usp-icon--shipping {
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.05));
        color: var(--fc-green);
    }
    .fc-info__usp-icon--service {
        background: linear-gradient(135deg, rgba(242, 98, 35, 0.1), rgba(242, 98, 35, 0.05));
        color: var(--fc-primary);
    }
    .fc-info__usp-icon--payment {
        background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(30, 136, 229, 0.05));
        color: #1E88E5;
    }
    .fc-info__usp-icon--return {
        background: linear-gradient(135deg, rgba(142, 36, 170, 0.1), rgba(142, 36, 170, 0.05));
        color: #8E24AA;
    }
    .fc-info__usp-text {
        font-family: var(--fc-font-secondary);
        font-size: 13px;
        font-weight: 600;
        color: var(--fc-title);
        line-height: 1.35;
    }
    @media (max-width: 480px) {
        .fc-info__usps { grid-template-columns: 1fr; }
    }

    
    .fc-tabs {
        max-width: 1400px;
        margin: 0 auto 60px;
        padding: 0 30px;
    }
    .fc-tabs__nav {
        display: flex;
        border-bottom: 2px solid var(--fc-border);
        gap: 0;
        overflow-x: auto;
    }
    .fc-tabs__nav-btn {
        padding: 16px 28px;
        border: none;
        background: transparent;
        font-family: var(--fc-font-primary);
        font-size: 15px;
        font-weight: 500;
        color: var(--fc-text-light);
        cursor: pointer;
        position: relative;
        white-space: nowrap;
        transition: color 0.2s;
    }
    .fc-tabs__nav-btn::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--fc-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .fc-tabs__nav-btn:hover { color: var(--fc-title); }
    .fc-tabs__nav-btn.is-active {
        color: var(--fc-primary);
        font-weight: 600;
    }
    .fc-tabs__nav-btn.is-active::after { transform: scaleX(1); }

    .fc-tabs__panel {
        display: none;
        padding: 36px 0;
    }
    .fc-tabs__panel.is-active { display: block; }

    .fc-tabs__desc {
        font-size: 15px;
        line-height: 1.8;
        color: var(--fc-text);
        max-width: 900px;
    }
    .fc-tabs__desc p { margin: 0 0 16px; }
    .fc-tabs__desc h2, .fc-tabs__desc h3 {
        font-family: var(--fc-font-primary);
        color: var(--fc-title);
        margin: 24px 0 12px;
    }
    .fc-tabs__desc ul { padding-left: 20px; margin: 0 0 16px; }
    .fc-tabs__desc li { margin-bottom: 6px; }

    
    .fc-attrs-table {
        width: 100%;
        max-width: 700px;
        border-collapse: collapse;
    }
    .fc-attrs-table tr { border-bottom: 1px solid var(--fc-border); }
    .fc-attrs-table tr:last-child { border-bottom: none; }
    .fc-attrs-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
    .fc-attrs-table td:first-child {
        font-weight: 600;
        color: var(--fc-title);
        width: 200px;
        background: rgba(242, 98, 35, 0.02);
    }

    
    .fc-related {
        max-width: 1400px;
        margin: 0 auto 80px;
        padding: 0 30px;
    }
    .fc-related__title {
        font-family: var(--fc-font-primary);
        font-size: 28px;
        font-weight: 700;
        color: var(--fc-title);
        margin: 0 0 30px;
    }
    .fc-related__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .fc-related__card {
        background: var(--fc-white);
        border-radius: var(--fc-radius);
        overflow: hidden;
        box-shadow: var(--fc-shadow);
        transition: var(--fc-transition);
        text-decoration: none;
        display: block;
    }
    .fc-related__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--fc-shadow-lg);
    }
    .fc-related__card-img {
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
        background: var(--fc-white);
    }
    .fc-related__card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }
    .fc-related__card:hover .fc-related__card-img img { transform: scale(1.05); }
    .fc-related__card-body { padding: 16px 20px 20px; }
    .fc-related__card-title {
        font-family: var(--fc-font-primary);
        font-size: 14px;
        font-weight: 600;
        color: var(--fc-title);
        margin: 0 0 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .fc-related__card-price {
        font-family: var(--fc-font-primary);
        font-size: 18px;
        font-weight: 700;
        color: var(--fc-title);
    }
    .fc-related__card-price--old {
        font-size: 14px;
        font-weight: 400;
        color: var(--fc-text-light);
        text-decoration: line-through;
        margin-right: 6px;
    }
    .fc-related__card-unit {
        font-size: 12px;
        color: var(--fc-text-light);
        font-weight: 400;
    }

    
    @media (max-width: 1024px) {
        .fc-product { padding-top: 50px; }
        .fc-product-main {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0 20px 40px;
        }
        .fc-gallery { position: static; }
        .fc-info__title { font-size: 26px; }
        .fc-info__price { font-size: 30px; }
        .fc-related__grid { grid-template-columns: repeat(2, 1fr); }
        .fc-breadcrumbs { padding: 16px 20px; }
        .fc-tabs { padding: 0 20px; }
        .fc-related { padding: 0 20px; }
    }

    @media (max-width: 640px) {
        .fc-info__title { font-size: 22px; }
        .fc-info__price { font-size: 26px; }
        .fc-info__specs { grid-template-columns: 1fr 1fr; }
        .fc-info__qty { justify-content: center; }
        .fc-gallery__thumbs { gap: 8px; }
        .fc-gallery__thumb { width: 64px; height: 64px; }
        .fc-tabs__nav-btn { padding: 12px 18px; font-size: 14px; }
        .fc-related__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
        .fc-related__card-body { padding: 12px 14px 16px; }
    }

/* ═══════════════════════════════════════════════════════════════
   Raamdecoratie Configurator – Stepped Layout
   ═══════════════════════════════════════════════════════════════ */

.fc-rd {
    --rd-primary: #F26223;
    --rd-primary-light: #FFF3ED;
    --rd-primary-gradient: linear-gradient(135deg, #F26223, #F5923E);
    --rd-title: #1C1A1E;
    --rd-text: #424242;
    --rd-text-light: #6B7280;
    --rd-bg: #FAFAFA;
    --rd-white: #FFFFFF;
    --rd-border: #E5E7EB;
    --rd-success: #10B981;
    --rd-error: #EF4444;
    --rd-radius: 16px;
    --rd-radius-sm: 10px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 24px;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    background: var(--rd-white);
    overflow: hidden;
}
.fc-rd * { box-sizing: border-box; }

/* ── Top bar ── */
.fc-rd__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background: var(--rd-bg);
    border-bottom: 1px solid var(--rd-border);
}
.fc-rd__topbar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--rd-title);
    margin: 0;
}
.fc-rd__topbar-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-title);
    white-space: nowrap;
}

/* ── Steps navigation ── */
.fc-rd__steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 28px 16px;
    border-bottom: 1px solid var(--rd-border);
}
.fc-rd__steps-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    font-family: inherit;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.fc-rd__steps-nav-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--rd-border);
    font-size: 14px;
    font-weight: 700;
    color: var(--rd-text-light);
    background: var(--rd-white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fc-rd__steps-nav-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--rd-text-light);
    white-space: nowrap;
    transition: color 0.2s ease;
}
.fc-rd__steps-nav-item.is-active .fc-rd__steps-nav-num {
    border-color: var(--rd-primary);
    background: var(--rd-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(242,98,35,0.3);
}
.fc-rd__steps-nav-item.is-active .fc-rd__steps-nav-label {
    color: var(--rd-primary);
    font-weight: 600;
}
.fc-rd__steps-nav-item.is-done .fc-rd__steps-nav-num {
    border-color: var(--rd-success);
    background: var(--rd-success);
    color: #fff;
}
.fc-rd__steps-nav-item.is-done .fc-rd__steps-nav-label {
    color: var(--rd-success);
}
.fc-rd__steps-nav-line {
    flex: 1;
    height: 2px;
    background: var(--rd-border);
    min-width: 20px;
    max-width: 80px;
    margin: 0 4px;
    margin-bottom: 22px;
    border-radius: 1px;
}

/* ── Panels ── */
.fc-rd__panels {
    position: relative;
}
.fc-rd__panel {
    display: none;
    animation: fcRdFadeIn 0.35s ease;
}
.fc-rd__panel.is-active {
    display: block;
}
@keyframes fcRdFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.fc-rd__panel-inner {
    padding: 24px 28px;
}
.fc-rd__panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--rd-title);
    margin: 0 0 20px 0;
}
.fc-rd__panel-title svg {
    color: var(--rd-primary);
    flex-shrink: 0;
}
.fc-rd__panel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-top: 1px solid var(--rd-border);
    background: var(--rd-bg);
}
.fc-rd__btn-next {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    background: var(--rd-primary-gradient);
    border: none;
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fc-rd__btn-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(242,98,35,0.3);
}
.fc-rd__btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    background: var(--rd-white);
    border: 1.5px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--rd-text);
    cursor: pointer;
    transition: all 0.2s ease;
}
.fc-rd__btn-prev:hover {
    border-color: var(--rd-text-light);
    background: var(--rd-bg);
}

/* ── Required asterisk ── */
.fc-rd__req {
    color: var(--rd-error);
    font-weight: 700;
    font-size: 13px;
}

/* ── Color dots (inline preview) ── */
.fc-rd__colors-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fc-rd__color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
    padding: 0;
}
.fc-rd__color-dot--light {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.06);
}
.fc-rd__color-dot:hover {
    transform: scale(1.15);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.12);
}
.fc-rd__color-dot.is-active {
    border-color: var(--rd-title);
    box-shadow: 0 0 0 2px var(--rd-white), 0 0 0 4px var(--rd-title);
    transform: scale(1.1);
}
.fc-rd__color-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rd-bg);
    border: 1.5px solid var(--rd-border);
    border-radius: 20px;
    padding: 7px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--rd-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.fc-rd__color-more:hover {
    border-color: var(--rd-primary);
    color: var(--rd-primary);
    background: var(--rd-primary-light);
}
.fc-rd__color-none {
    color: var(--rd-text-light);
    font-style: italic;
}
.fc-rd__color-selected {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rd-text);
    min-height: 20px;
}
.fc-rd__color-dot-mini {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    flex-shrink: 0;
    display: inline-block;
}

/* ── Color slide-out panel ── */
.fc-rd__color-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fc-rd__color-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.fc-rd__color-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92vw;
    height: 100vh;
    background: var(--rd-white);
    z-index: 9999;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.fc-rd__color-panel.is-open {
    right: 0;
}
.fc-rd__color-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--rd-border);
    flex-shrink: 0;
}
.fc-rd__color-panel-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rd-title);
    margin: 0;
}
.fc-rd__color-panel-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--rd-bg);
    border-radius: 50%;
    cursor: pointer;
    color: var(--rd-text);
    transition: background 0.15s ease;
}
.fc-rd__color-panel-close:hover {
    background: var(--rd-border);
}
.fc-rd__color-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}
.fc-rd__color-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    background: var(--rd-white);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.fc-rd__color-card:hover {
    border-color: var(--rd-text-light);
    background: var(--rd-bg);
}
.fc-rd__color-card.is-active {
    border-color: var(--rd-primary);
    background: var(--rd-primary-light);
}
.fc-rd__color-card-swatch {
    width: 100%;
    height: 64px;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.fc-rd__color-card-swatch--light {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.fc-rd__color-card-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--rd-text);
    text-align: center;
}
.fc-rd__color-card.is-active .fc-rd__color-card-name {
    color: var(--rd-primary);
}

/* ── Maten (dimensions) – side-by-side layout ── */
.fc-rd__maten-layout {
    display: flex;
    gap: 32px;
    align-items: stretch;
}
.fc-rd__maten-fields {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.fc-rd__maten-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}
.fc-rd__maten-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-title);
    margin-bottom: 2px;
}
.fc-rd__maten-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.fc-rd__maten-input {
    width: 100%;
    padding: 12px 56px 12px 16px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--rd-title);
    background: var(--rd-white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -moz-appearance: textfield;
}
.fc-rd__maten-input::-webkit-outer-spin-button,
.fc-rd__maten-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.fc-rd__maten-input:focus {
    outline: none;
    border-color: var(--rd-primary);
    box-shadow: 0 0 0 3px rgba(242,98,35,0.12);
}
.fc-rd__maten-input.is-error {
    border-color: var(--rd-error);
    box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.fc-rd__maten-unit {
    position: absolute;
    right: 36px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rd-text-light);
    pointer-events: none;
}
.fc-rd__maten-check {
    position: absolute;
    right: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.5);
}
.fc-rd__maten-check.is-valid {
    opacity: 1;
    transform: scale(1);
}
.fc-rd__maten-hint {
    font-size: 12px;
    color: var(--rd-text-light);
}
.fc-rd__maten-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-text-light);
    padding-top: 22px;
}

/* ── Maten visual preview ── */
.fc-rd__maten-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.fc-rd__maten-window {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px 32px 12px;
}
.fc-rd__maten-window-inner {
    width: 120px;
    height: 120px;
    background: var(--rd-primary-light);
    border: 2px solid var(--rd-primary);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(242,98,35,0.1);
}
.fc-rd__maten-window-blinds {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.fc-rd__maten-w-label {
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.fc-rd__maten-w-label span {
    font-size: 12px;
    font-weight: 700;
    color: var(--rd-primary);
    white-space: nowrap;
}
.fc-rd__maten-h-label {
    position: absolute;
    right: 4px;
    top: 24px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.fc-rd__maten-h-label span {
    font-size: 12px;
    font-weight: 700;
    color: var(--rd-primary);
    white-space: nowrap;
    writing-mode: vertical-lr;
}
.fc-rd__maten-area {
    margin-top: 12px;
    font-size: 14px;
    color: var(--rd-text);
    text-align: center;
}
.fc-rd__maten-area strong {
    color: var(--rd-primary);
    font-weight: 700;
}

/* ── Dimension errors (reused) ── */
.fc-rd__dim-error {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: var(--rd-error);
    font-weight: 500;
}
.fc-rd__dim-error.is-visible {
    display: block;
}

/* ── Option groups ── */
.fc-rd__opt-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rd-border);
}
.fc-rd__opt-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.fc-rd__opt-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rd-title);
    margin-bottom: 10px;
}

/* ── Cards (illustrated options) ── */
.fc-rd__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fc-rd__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border: 1.5px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    background: var(--rd-white);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 100px;
    flex: 0 1 auto;
}
.fc-rd__card:hover {
    border-color: var(--rd-text-light);
    background: var(--rd-bg);
}
.fc-rd__card.is-active {
    border-color: var(--rd-primary);
    background: var(--rd-primary-light);
    box-shadow: 0 0 0 1px var(--rd-primary);
}
.fc-rd__card-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 48px;
}
.fc-rd__card-svg svg {
    max-width: 100%;
    max-height: 100%;
}
.fc-rd__card-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--rd-text);
    text-align: center;
    line-height: 1.3;
}
.fc-rd__card.is-active .fc-rd__card-name {
    color: var(--rd-primary);
}
.fc-rd__card-price {
    font-size: 11px;
    color: var(--rd-text-light);
}
.fc-rd__card.is-active .fc-rd__card-price {
    color: var(--rd-primary);
}

/* ── Chips (text-only options) ── */
.fc-rd__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fc-rd__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1.5px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    background: var(--rd-white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--rd-text);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.fc-rd__chip:hover {
    border-color: var(--rd-text-light);
    background: var(--rd-bg);
}
.fc-rd__chip.is-active {
    border-color: var(--rd-primary);
    background: var(--rd-primary-light);
    color: var(--rd-primary);
    font-weight: 600;
    box-shadow: 0 0 0 1px var(--rd-primary);
}
.fc-rd__chip-price {
    font-size: 11px;
    color: var(--rd-text-light);
    font-weight: 400;
}
.fc-rd__chip.is-active .fc-rd__chip-price {
    color: var(--rd-primary);
}

/* ── Field errors ── */
.fc-rd__field-error {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: var(--rd-error);
    font-weight: 500;
}
.fc-rd__field-error.is-visible {
    display: block;
}

/* ── Summary (step 4) ── */
.fc-rd__summary {
    margin-bottom: 16px;
}
.fc-rd__sum-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--rd-border);
    font-size: 14px;
    color: var(--rd-text);
}
.fc-rd__sum-row:last-child {
    border-bottom: none;
}
.fc-rd__sum-row span {
    color: var(--rd-text-light);
}
.fc-rd__sum-row strong {
    color: var(--rd-title);
    font-weight: 600;
}
.fc-rd__sum-row--price {
    border-bottom-style: solid;
    margin-top: 8px;
    padding-top: 12px;
}
.fc-rd__sum-row--surcharge span {
    font-style: italic;
}

/* ── Price bar ── */
.fc-rd__price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    margin: 0 -28px 16px;
    border-top: 3px solid #FCD34D;
    background: linear-gradient(90deg, #FEF9C3 0%, #FDE68A 100%);
}
.fc-rd__price-bar-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--rd-title);
}
.fc-rd__price-bar-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--rd-title);
}

/* ── Final row (qty + order button) ── */
.fc-rd__final-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.fc-rd__qty-wrap {
    flex: 0 0 90px;
}
.fc-rd__qty-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--rd-title);
    text-align: center;
    -moz-appearance: textfield;
}
.fc-rd__qty-input::-webkit-outer-spin-button,
.fc-rd__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.fc-rd__qty-input:focus {
    outline: none;
    border-color: var(--rd-primary);
}
.fc-rd__order-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--rd-primary-gradient);
    border: none;
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fc-rd__order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(242,98,35,0.3);
}
.fc-rd__order-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}
@keyframes fc-spin {
    to { transform: rotate(360deg); }
}

/* ── USPs ── */
.fc-rd__usps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 18px 0;
}
.fc-rd__usp {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--rd-text);
    line-height: 1.4;
}
.fc-rd__usp svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Extra buttons ── */
.fc-rd__extra-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fc-rd__extra-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border: 1.5px solid var(--rd-border);
    border-radius: var(--rd-radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--rd-title);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--rd-white);
}
.fc-rd__extra-btn:hover {
    border-color: var(--rd-text-light);
    background: var(--rd-bg);
}
.fc-rd__extra-btn--dark {
    background: var(--rd-title);
    color: var(--rd-white);
    border-color: var(--rd-title);
}
.fc-rd__extra-btn--dark:hover {
    background: #333;
    border-color: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .fc-rd__topbar { padding: 14px 20px; }
    .fc-rd__topbar-title { font-size: 15px; }
    .fc-rd__steps-nav { padding: 16px 16px 12px; gap: 0; }
    .fc-rd__steps-nav-num { width: 30px; height: 30px; font-size: 13px; }
    .fc-rd__steps-nav-label { font-size: 11px; }
    .fc-rd__steps-nav-line { min-width: 12px; }
    .fc-rd__panel-inner { padding: 20px; }
    .fc-rd__panel-nav { padding: 14px 20px; }
    .fc-rd__maten-layout { flex-direction: column; gap: 24px; }
    .fc-rd__maten-fields { flex-direction: column; gap: 8px; }
    .fc-rd__maten-divider { transform: rotate(90deg); padding-top: 0; }
    .fc-rd__maten-field { min-width: unset; width: 100%; }
    .fc-rd__cards { gap: 8px; }
    .fc-rd__card { min-width: 80px; padding: 10px 10px; }
    .fc-rd__card-svg { width: 52px; height: 38px; }
    .fc-rd__chip { padding: 8px 14px; font-size: 12px; }
    .fc-rd__price-bar { margin: 0 -20px 16px; padding: 14px 20px; }
    .fc-rd__price-bar-amount { font-size: 22px; }
    .fc-rd__final-row { flex-direction: column; }
    .fc-rd__qty-wrap { flex: unset; width: 100%; }
    .fc-rd__order-btn { width: 100%; }
    .fc-rd__color-panel { width: 100vw; right: -100vw; }
    .fc-rd__color-panel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fc-rd__form-row { flex-direction: column; gap: 0; }
}

/* Quote form inside configurator */
.fc-rd__quote-form {
    margin-top: 12px;
}

.fc-rd__form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.fc-rd__form-field {
    flex: 1;
}

.fc-rd__form-field textarea.fc-rd__maten-input {
    min-height: 70px;
    font-family: var(--fc-font-secondary, 'DM Sans', sans-serif);
}
