.type-grid-section {
    width: 100%;
    background-color: #ffffff;
}

.product-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 80px;
    animation: fadeIn 1.5s ease-out;
    box-sizing: border-box;
}

.mb-48 {
    margin-bottom: 48px;
}

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

.product-card {
    background: #FFFFFF;
    border: 1px solid #F2F4F7;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
}

.product-img-box {
    background-color: #F2F4F7;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-card-title {
    margin: 0;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.btn-view-more svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-view-more:hover {
    gap: 12px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-container {
        padding: 48px var(--space-24) var(--space-80) var(--space-24) !important;
    }

    .residential-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .product-img-box {
        height: 370px !important;
        padding: 40px !important;
    }

    .product-card-title {
        margin-bottom: 8px !important;
    }
}

@media (max-width: 767px) {
    .product-container {
        padding: 48px 16px !important;
    }

    .residential-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .product-img-box {
        height: 185px !important;
        padding: 20px !important;
    }

    .product-info-box {
        padding: 16px  !important;
    }

    .product-card-title {
        margin-bottom: 4px !important;
    }
}