/* Media query for mobile devices */
@media (max-width: 768px) {
	.container {
		padding: 20px 10px;
	}
	.thumbnails {
		margin-top: 10px;
	}
	.swiper-slide {
		flex-direction: column;
	}
	.product-thumbs {
		width: 100%;
	}
	.product-details {
		text-align: center;
		padding: 20px 0;
	}
	.swiper-container {
		height: auto;
	}
	.product-description {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	.metrics-container {
		grid-template-columns: repeat(2, 2fr);
	}
	/* Style adjustments for table to display horizontally on mobile */
	.table-orders {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-top: 20px;
	}
	.table-header,.table-row {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
	}
	.table-header span,.table-row span {
		display: inline-block;
		padding: 10px;
		min-width: 120px;
	}
	.table-header {
		background-color: #f4f4f4;
		font-weight: bold;
	}
	.table-body {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
	.table-row {
		border-bottom: 1px solid #ddd;
	}
	.table-row.empty {
		padding: 15px;
		text-align: center;
	}
	.product-header {
		justify-content: space-between;
		width: 100%;
		gap: 20px;
	}
	.product-header img {
		margin-bottom: 10px;
		margin-right: 0;
	}
	.product-title {
		font-size: 15px;
	}
	.product-info {
		width: 100%;
        margin: 10px 0;
        gap: 10px;
	}
	.product-price {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.product-status {
		margin-bottom: 10px;
		width: 100%;
		justify-content: center;
	}
	.btn.statusProduct {
		width: 100%;
	}
	/* Show hamburger menu for mobile */
	.menu-toggle {
		display: block;
		font-size: 20px;
		margin-left: 10px;
	}
	/* Initially hide menu for mobile */
	.menu {
		display: none;
		flex-direction: column;
		background-color: #fff;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		padding: 20px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}
	/* Style the active menu */
	.menu.active {
		display: flex;
	}
	/* Style the menu items in mobile view */
	.menu-item {
		font-size: 18px;
		margin-bottom: 10px;
	}
	h1 {
		font-size: 1.5rem;
	}
	canvas {
		max-height: 300px;
	}
	.filter-buttons {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(2, 2fr);
	}
	#scanner-container video {
		border: none;
		border-radius: 0;
	}
	.orders-grid {
		grid-template-columns: repeat(1, 2fr);
	}
	.sticky-checkout .total-container {
		flex-direction: column;
		width: 100%;
	}
	#total {
		justify-content: space-between;
	}
	#total-amount {
		font-size: 22px;
		padding: 5px 10px;
	}
	#rest-to-pay {
		font-size: 20px;
	}
	.save-reset-btn {
		width: 100%;
		margin-top: 15px;
		display: flex;
		justify-content: space-between;
	}
	.login-form, .signup-form {
		width: 100%;
		box-shadow: none;
		padding: 20px;
	}
	.ls-btns a {
		padding: 8px 12px;
	}
	.mbd-none {
		display: none;
	}
	.filter-section, .total-boxes {
		flex-wrap: wrap;
	}
	.product-box {
		align-items: center;
		flex-direction: column;
		gap: 0;
	}
	.old-price {
		display: inline;
	}
	.promo-icon, .no-promo-icon {
		width: auto;
	}
	.product-actions {
		width: 100%;
		margin: 0;
	}
	.barcode-number {
	    width: 100%;
		margin-top: 10px;
		text-align: center;
	}
	#addChargeForm {
	    flex-wrap: wrap;
	}
	#addChargeForm div {
	    width: 100%;
	}
	.table {
	    display: block;
	    overflow: scroll;
	}
	.deconexion {
        display: inline;
    }
    .m-container {
        padding: 0;
    }
    #scanner-container, .add-product-form, .checkout-content {
        border-radius: 0;
    }
    .sticky-checkout {
        margin: 0;
    }
    .logo-enter {
        width: 300px;
    }
    .quantity-wrapper {
        flex-direction: column-reverse;
    }
    .quantity-wrapper .quantity {
        width: 32px;
        height: 32px;
    }
    .added-products-table tr td, .table tr td {
        padding: 10px;
    }
    .inline-group {
        display: flex;
        gap: 20px;
    }
    input, textarea {
        margin-bottom: 30px;
    }
    #imagePreview {
        margin: 0;
    }
    #imagePreview img {
        margin-bottom: 30px;
    }
}
/*end*/
@media print {
	.no-print {
		display: none;
	}
}
