.fc-gallery-section {
    padding: 80px 0;
    background: #f8fafc;
}

.fc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.fc-gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.fc-gallery-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.fc-gallery-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.fc-gallery-compare-item {
    position: relative;
    overflow: hidden;
}

.fc-gallery-compare-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fc-gallery-card:hover .fc-gallery-compare-item img {
    transform: scale(1.05);
}

.fc-gallery-label {
    position: absolute;
    top: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    z-index: 2;
}

.fc-gallery-label.before {
    right: 12px;
    background: rgba(233, 69, 96, 0.9);
}

.fc-gallery-label.after {
    left: 12px;
    background: rgba(52, 180, 74, 0.9);
}

.fc-gallery-info {
    padding: 20px 24px 24px;
}

.fc-gallery-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 8px;
}

.fc-gallery-info p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 12px;
}

.fc-gallery-category {
    display: inline-block;
    padding: 4px 14px;
    background: #eef2ff;
    color: #0E5AB7;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fc-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fc-gallery-compare-item img {
        height: 200px;
    }

    .fc-gallery-section {
        padding: 50px 0;
    }
}

.fc-filter-btn {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    background: #fff;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.fc-filter-btn:hover {
    border-color: #0E5AB7;
    color: #0E5AB7;
}

.fc-filter-btn.active {
    background: #0E5AB7;
    border-color: #0E5AB7;
    color: #fff;
}