.product-application-section {
    background: #ffffff;
    padding: 56px 0;
    border-top: 1px solid #e6edf5;
}

.application-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.application-image-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.application-image-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.application-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .product-gallery {
        position: static;
    }

    .product-main-image img {
        height: 350px !important;
    }

    h1 {
        font-size: 28px !important;
    }
}
