/* ================================================================
   Feature Products – Frontend Styles
   Matches varito.de aesthetic: clean, light, product-grid style
   ================================================================ */
#featurepro{background:#fff;padding:50px 0;}
.fp-section {
    padding: 60px 0;
    font-family: inherit;
}

.fp-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.fp-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    letter-spacing: -.01em;
}

.fp-section__desc {
    font-size: 15px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Category block ── */
.fp-category-block {
    margin-bottom: 56px;
}
.fp-category-block:last-child { margin-bottom: 0; }

.fp-category-block__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.fp-category-block__title a {
    color: inherit;
    text-decoration: none;
}
.fp-category-block__title a:hover { color: #555; }

/* ── Grid ── */
.fp-grid {
    display: grid;
    gap:40px;
}
.fp-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.fp-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.fp-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.fp-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.fp-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .fp-grid--cols-5,
    .fp-grid--cols-6 { grid-template-columns: repeat(3, 1fr); }
    .fp-grid--cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fp-grid--cols-2,
    .fp-grid--cols-3,
    .fp-grid--cols-4,
    .fp-grid--cols-5,
    .fp-grid--cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fp-grid { grid-template-columns: 1fr !important; }
}

/* ── Card ── */
.fp-card-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fp-card-item__image-wrap {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    position: relative;
}

.fp-card-item__star { display: none; }

.fp-card-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.fp-card-item:hover .fp-card-item__image {
    transform: scale(1.04);
}

.fp-card-item__image--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}
.fp-card-item__image--placeholder span {
    font-size: 48px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
}

.fp-card-item__body {
    padding: 16px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.fp-card-item__date {
    display: block;
    font-size: 11px;
    color: #999;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fp-card-item__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.45;
}
.fp-card-item__title a {
    color: inherit;
    text-decoration: none;
    max-height: 74px !important;
    min-height: 40px !important;
    height: 48px !important;
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
    margin: 10px 0;
}
.fp-card-item__title a:hover { color: #555; }

.fp-card-item__excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
}

.fp-card-item__btn {
    
   /* padding: 9px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 2px;
    margin-top: auto;
    transition: opacity .2s, transform .2s;
	*/
	color: #000;
    background-color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    /* border: none; */
    cursor: pointer;
    outline: none;
    cursor: pointer;
    outline: none;
    position: relative;
    display: inline-block;
    border: 1px solid;
    border-color: #000;
	padding: 8px 50px;
}
.fp-card-item__btn::before, .fp-card-item__btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 50%;
    border: 1px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
}
.fp-card-item__btn::before {
    top: -8px;
    left: -8px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #000;
    border-left-color: #000;
}
.fp-card-item__btn::after {
    bottom: -8px;
    right: -8px;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #000;
    border-right-color: #000;
}
.fp-card-item__btn:hover {
    background: #000;
    color: #fff;
	border-color: #777;
}

.fp-card-item__btn:hover:after, .fp-card-item__btn:hover:before {
    width: 100%;
    height: 100%;
}