.product-gallery-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .product-gallery {
        display: none;
    }

    .product-gallery-mobile {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .mobile-main-image-container {
        position: relative;
        width: 100%;
        height: 400px;
        background-color: #f9f9f9;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .mobile-main-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

    .mobile-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        color: #333;
    }

    .mobile-prev {
        left: 10px;
    }

    .mobile-next {
        right: 10px;
    }

    .mobile-thumbnails {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 5px 0;
        scrollbar-width: none;
    }

    .mobile-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .mobile-thumb {
        flex: 0 0 70px;
        height: 70px;
        border: 1px solid transparent;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0.6;
        transition: all 0.2s;
    }

    .mobile-thumb.active {
        border-color: #73a0c5;
        opacity: 1;
    }

    .mobile-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}