.fs-46cf2432-wrapper {
    padding: 40px;
    font-family: sans-serif;
}
.fs-46cf2432-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.fs-46cf2432-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #DDD;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fs-46cf2432-tab:hover {
    background: #f9f9f9;
    border-color: #bbb;
}
.fs-46cf2432-tab.active {
    background: #2B2E28;
    color: #fff;
    border-color: #2B2E28;
}
.fs-46cf2432-tab-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.fs-46cf2432-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .fs-46cf2432-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.fs-46cf2432-card {
    display: flex;
    flex-direction: column;
    background: #FFFEFC;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
    .fs-46cf2432-card {
        flex-direction: row;
    }
    .fs-46cf2432-card-img-wrap {
        width: 40%;
    }
    .fs-46cf2432-card-content {
        width: 60%;
    }
}
.fs-46cf2432-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.fs-46cf2432-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
@media (min-width: 768px) {
    .fs-46cf2432-card-img-wrap {
        aspect-ratio: auto;
    }
}
.fs-46cf2432-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}
.fs-46cf2432-card:hover .fs-46cf2432-card-img-wrap img {
    transform: scale(1.08);
}
.fs-46cf2432-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.fs-46cf2432-card:hover .fs-46cf2432-card-overlay {
    opacity: 1;
}
.fs-46cf2432-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.fs-46cf2432-card-row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}
.fs-46cf2432-card-title {
    font-family: serif;
    font-size: 22px;
    margin: 0;
    color: #222;
}
.fs-46cf2432-card-price {
    font-size: 14px;
    color: #888;
}
.fs-46cf2432-card-row2 {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}
.fs-46cf2432-card-row3 {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}
.fs-46cf2432-card-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: auto 0 12px;
}
.fs-46cf2432-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}
.fs-46cf2432-card.hide {
    display: none !important;
}
