.product-category-list {
    padding: 60px 0 100px;
    background-color: #f5f5f5;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row.row-reverse {
    flex-direction: row-reverse;
}

.product-image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-disclaimer {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.product-image-column img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-row:hover .product-image-column img {
    transform: scale(1.05);
}

.product-content-column {
    flex: 1.2;
}

.product-content-column h2 {
    font-size: 48px;
    color: #1a4a7c;
    margin-bottom: 20px;
    font-weight: 400;
}

.product-content-column .product-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

/* Page Banner adjustments for this page */
.taxonomy-product_cat .page-banner {
    margin-bottom: 40px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-row {
        gap: 40px;
    }

    .product-content-column h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .product-row,
    .product-row.row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .product-content-column .product-description {
        margin-left: auto;
        margin-right: auto;
    }

    .product-image-column img {
        max-height: 350px;
    }
}