.fcb-wrapper{
    width:100%;
    margin:5px 0 22px;
    padding-top:5px;
    position:relative;
}

/* DREWNIANA PLAKIETA */
.fcb-plaque{
    position:relative;
    width:100%;
    box-sizing:border-box;
    padding:34px 54px 30px;
    border-radius:26px;
    overflow:visible;

    background:
        radial-gradient(circle at 20% 25%, rgba(255,255,255,.16), transparent 18%),
        radial-gradient(circle at 78% 35%, rgba(255,255,255,.10), transparent 20%),
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.16) 0 2px,
            rgba(255,255,255,.025) 2px 5px,
            transparent 5px 17px
        ),
        linear-gradient(
            90deg,
            #4a2712 0%,
            #8a5529 18%,
            #5d3519 38%,
            #9a632f 58%,
            #4d2913 78%,
            #7a4923 100%
        );

    box-shadow:
        0 10px 35px rgba(0,0,0,.22),
        inset 0 0 25px rgba(0,0,0,.28);
}

.fcb-plaque::before{
    content:"";
    position:absolute;
    inset:10px;
    border-radius:20px;
    border:1px solid rgba(255,230,180,.18);
    box-shadow:inset 0 0 26px rgba(0,0,0,.35);
    pointer-events:none;
}

.fcb-plaque::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:1px;
    background:rgba(255,230,180,.12);
    box-shadow:
        0 16px 0 rgba(0,0,0,.10),
        0 -18px 0 rgba(0,0,0,.10);

    pointer-events:none;
}

/* ŚRUBY */
.fcb-screw{
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #777,
            #252525 55%,
            #050505 100%
        );

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.35),
        0 2px 4px rgba(0,0,0,.55);

    z-index:4;
}

.fcb-screw::after{
    content:"";
    position:absolute;
    left:4px;
    right:4px;
    top:8px;
    height:2px;
    background:rgba(0,0,0,.65);
    transform:rotate(35deg);
}

.fcb-screw-tl{left:18px;top:18px;}
.fcb-screw-tr{right:18px;top:18px;}
.fcb-screw-bl{left:18px;bottom:18px;}
.fcb-screw-br{right:18px;bottom:18px;}

/* SCROLL */
.fcb-plaque-scroll{
    position:relative;
    z-index:2;
    width:100%;
}

/* LISTA */
.fcb-list{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:18px;
    justify-content:center;
}

/* ITEM */
.fcb-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none;

    color:#fff;

    min-width:170px;
    max-width:280px;

    padding:12px 10px;

    border-radius:18px;

    text-shadow:0 2px 4px rgba(0,0,0,.75);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        opacity .2s ease;

    position:relative;
    overflow:hidden;
}

.fcb-item::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,0)
        );

    opacity:0;
    transition:opacity .3s ease;
    pointer-events:none;
}

.fcb-item:hover{
    transform:translateY(-6px) scale(1.04);

    background:rgba(255,255,255,.08);

    box-shadow:
        0 10px 25px rgba(0,0,0,.25),
        inset 0 0 0 1px rgba(255,255,255,.12);
}

.fcb-item:hover::before{
    opacity:1;
}

.fcb-item:hover .fcb-image-wrap img{
    transform:scale(1.08) rotate(-2deg);

    filter:
        drop-shadow(0 6px 8px rgba(0,0,0,.7));
}

.fcb-item:hover .fcb-name{
    color:#fff6d6;
}

.fcb-item:active{
    transform:scale(.96);
    box-shadow:0 3px 8px rgba(0,0,0,.28);
}

/* IMAGE */
.fcb-image-wrap{
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.fcb-image-wrap img{
    max-height:52px;
    max-width:140px;

    width:auto;
    height:auto;

    display:block;

    filter:
        drop-shadow(0 5px 5px rgba(0,0,0,.62));

    transition:
        transform .3s ease,
        filter .3s ease;
}

/* NAME */
.fcb-name{
    font-weight:800;
    font-size:17px;
    line-height:1.2;
    margin-top:9px;

    transition:
        color .25s ease,
        transform .25s ease;
}

/* DESCRIPTION */
.fcb-description{
    font-size:12px;
    line-height:1.3;
    margin-top:4px;
    color:rgba(255,255,255,.82);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media only screen and (max-width:991px){

    /* PLAKIETA ZNIKA */
    .fcb-plaque{
        background:transparent !important;
        box-shadow:none !important;
        padding:0 !important;
    }

    .fcb-plaque::before,
    .fcb-plaque::after,
    .fcb-screw,
    .fcb-screw::after{
        display:none !important;
        content:none !important;
    }

    /* SCROLL */
    .fcb-plaque-scroll{
        width:100%;
        overflow-x:auto;
        overflow-y:hidden;

        -webkit-overflow-scrolling:touch;

        padding-bottom:8px;
    }

    .fcb-list{
        display:flex;
        flex-wrap:nowrap;
        justify-content:flex-start;

        width:max-content;

        gap:12px;
    }

    .fcb-item{
        flex:0 0 96px;

        width:96px;
        min-width:96px;
        max-width:96px;

        padding:10px 6px;
    }

    .fcb-image-wrap{
        height:44px;
    }

    .fcb-image-wrap img{
        max-width:86px;
        max-height:40px;
    }

    .fcb-name{
        font-size:12px;
        line-height:1.15;
        margin-top:6px;

        white-space:normal;
    }

    .fcb-description{
        display:none;
    }

    .fcb-plaque-scroll::-webkit-scrollbar{
        height:4px;
    }

    .fcb-plaque-scroll::-webkit-scrollbar-thumb{
        background:#999;
        border-radius:20px;
    }
}