/* Product Center Page Styles */

.inside-banner .mobile img {
    width: 100%;
}

/* Product List Section */
.product-list {
    padding: 8rem 0;
    background: #f5f5f5;
}

.product-list .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.product-list .product-header {
    text-align: center;
    margin-bottom: 6rem;
}

.product-list .product-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 60px;
}

.product-list .product-header .subtitle {
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    margin-top: 20px;
    display: block;
}

/* Product Card */
.product-card {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.product-card:last-child {
    margin-bottom: 0;
}

.product-card .product-thumb {
    flex-shrink: 0;
    width: 54rem;
    height: 30rem;
    overflow: hidden;
}

.product-card .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
 
}

.product-card .product-divider {
    width: 1px;
    height: 60%;
    background: #e8e8e8;
    flex-shrink: 0;
}

.product-card .product-info {
    flex: 1;
    padding: 4rem 6rem;
}
.product-card{
		box-sizing: border-box;
	padding: 35px; 
}
/* White card */
.product-card-white {
    background: #fff;
 
}
.product-list .product-card-whiteL:hover{
	background-color: #0375e5;
}
/* Image on left, text on right */
.product-card-white .product-info-right {
    padding: 6rem 6rem 6rem 4rem;
}

/* Text on left, image on right */
.product-card-white .product-info-left {
    padding: 6rem 4rem 6rem 6rem;
}

.product-card-white .product-name {
    font-size: 26px;
    font-weight: 400;
    color: #000;
    margin: 0 0 1rem;
    line-height: 36px;
}

.product-card-white .product-desc {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    margin: 0 0 30px;
}

.product-card-white .product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 54px;
    font-size: 18px;
    color: #333;
    background: #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.product-card-white .product-link:hover {
    opacity: 0.85;
}

/* Blue card (even) */
.product-card-blue {
    background: #1a7be8;
}

.product-card-blue .product-info {
    padding: 6rem 4rem 6rem 6rem;
}

.product-card-blue .product-name {
    font-size: 2.6rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.product-card-blue .product-desc {
    font-size: 1.6rem;
    color: #fff;
    line-height: 3rem;
    margin: 0 0 3rem;
}

.product-card-blue .product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15.5rem;
    height: 5.3rem;
    font-size: 1.8rem;
    color: #333;
    background: #fff;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s;
}

.product-card-blue .product-link:hover {
    opacity: 0.85;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    height: 4.5rem;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    color: #333;
    background: #e8e8e8;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.pagination a:hover,
.pagination span.active {
    background: #164b95;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-list {
        padding: 6rem 0;
    }

    .product-list .product-header h2 {
        font-size: 40px;
    }

    .product-card,
    .product-card-white,
    .product-card-blue {
        flex-direction: column !important;
        background: #fff !important;
    }

    .product-card .product-thumb {
        width: 100%;
        height: 300px;
    }

    .product-card .product-divider {
        width: 100%;
        height: 1px;
    }

    .product-card .product-info {
        padding: 3rem 2rem !important;
    }

    .product-card .product-name {
        color: #000 !important;
    }

    .product-card .product-desc {
        color: #666 !important;
    }

    .product-card .product-link {
        background: #e5e5e5 !important;
        color: #333 !important;
    }
}

@media (max-width: 768px) {
    .product-list {
        padding: 4rem 2rem;
    }

    .product-list .product-header h2 {
        font-size: 30px;
    }

    .product-card .product-name {
        font-size: 22px;
    }

    .product-card .product-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .product-card .product-thumb {
        height:260px;
    }
	.product-list .product-header .subtitle{
		margin-bottom: 50px;
	}
}
