.windows-catalog-9b87b849 {
    padding: 30px 0;
    font-family: 'Roboto', sans-serif;
}

.wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wc-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.wc-img-wrapper {
    position: relative;
    padding: 15px;
    background: #f7fafc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wc-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    /* Default shadow that gets overridden by Elementor styles */
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.wc-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wc-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #1a202c;
}

.wc-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #718096;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.wc-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    transition: background-color 0.25s ease;
    text-align: center;
}

.wc-wa-btn:hover {
    background-color: #128C7E;
}

.wc-wa-btn i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }
}
