/* Mobile responsive design for goldbar shop */
@media screen and (max-width: 600px) {
    .product-card {
        flex-direction: column !important;
        max-height: none !important;
        min-height: 200px !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }
    
    .gb-row {
        width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .gb-product-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .gb-product-details {
        width: 100% !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .gb-product-name {
        font-size: 20px !important;
    }
    
    .gb-product-descp {
        font-size: 16px !important;
    }
    
    .product-quantity {
        width: 100% !important;
    }
    .quantityinputs
    {
        display: none;
    }
    
    .product-quantity span {
       width: 100%;
        margin-bottom: 0.5rem !important;
    }
    
    .product-quantity > div {
        width: 100% !important;
    }
    
    .product-quantity .quantity-input {
        width: 120px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
    
    .product-quantity button {
        width: 20px !important;
        height: 22px !important;
        font-size: 14px !important;
    }
    
    .gb-divider {
        display: none !important;
    }
    
    .gb-row-bottom {
        width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    
    .gb-product-sell,
    .gb-product-buy {
        width: 100% !important;
    }
    
    .gb-sell-button,
    .gb-add-to-cart-button,
    a .gb-sell-button,
    a .gb-add-to-cart-button {
        width: 100% !important;
        font-size: 18px !important;
        padding: 12px !important;
    }
    
    .gb-product-sell a,
    .gb-product-buy a {
        width: 100% !important;
        display: block !important;
    }
}