/* Product Category Pages */
.service-category-list ul li {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 5px;
}

.service-category-list ul li:hover {
    background-color: transparent;
    transform: translateX(5px);
}

.service-category-list ul li a {
    color: #333;
    text-decoration: none;
    padding: 9px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 16px;
}

.service-category-list ul li a:hover,
.service-category-list ul li.active a {
    color: #fff;
    background-color: transparent;
    font-weight: 600;
}

.category-section {
    margin-bottom: 80px;
    scroll-margin-top: 40px;
}

.category-title {
    margin-bottom: 40px;
    text-align: center;
}

.category-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #024c78;
    margin-bottom: 15px;
}

.category-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    aspect-ratio: 78 / 50;
    background: #fff;
}

.product-image a,
.product-image figure {
    display: block;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image img[src$="product_img_platinum_advance.jpg"] {
    object-fit: contain;
}

.product-image.product-image--contain img {
    object-fit: contain;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #024c78;
    margin-bottom: 10px;
}

.product-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: #4a90e2;
}

.product-page .category-title h2 {
    text-align: left;
    margin-bottom: 5px;
}

.product-page .category-title p {
    max-width: 100%;
    text-align: justify;
}

.product-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #024c78, #4a90e2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }

    .service-category-list {
        margin-bottom: 30px;
    }

    .category-title h2 {
        font-size: 2rem;
    }
}
