/* ===============================
   Mobile-only product page tweaks
================================= */
@media (max-width: 767px) {

    /* Product slider thumbnails stacked */
    .thumb_slider .indicator-item {
        flex: 1 1 45%;
        margin-bottom: 5px;
    }

    /* Color & Size selectors stacked */
    .size-container .selector-item,
    .color_inner .selector-item {
        flex: 1 1 100%;
        margin-bottom: 5px;
    }
    .size-container,
    .color_inner {
        display: flex;
        flex-direction: column;
    }

    /* Add to cart / Order buttons full width */
    .single_product {
        flex-direction: column;
        gap: 10px;
    }
    .single_product .btn {
        width: 100%;
    }

    /* Social share buttons smaller & stacked */
    .social-share a {
        font-size: 12px;
        padding: 6px 10px;
        flex: 1 1 48%;
        justify-content: center;
    }
    .social-share a img {
        width: 20px;
        height: 20px;
    }

    /* Breadcrumb / description padding */
    .homeproduct .container {
        padding: 0 10px;
    }
    .description-nav-wrapper ul.desc-nav-ul li {
        flex: 1 1 50%;
        text-align: center;
        margin-bottom: 5px;
    }

    /* Quantity selector full width */
    .quantity {
        flex-wrap: wrap;
    }
    .quantity input[type="text"] {
        width: 100%;
        margin: 5px 0;
    }
}
