@media(max-width:799px) {

	body {
		background: #f7f7f7;
	}
	
	.container {
		padding: 0 15px;
	}

	.headerBg {
		background-color: #1a1a1a;
	}

	/* Header */
	.header {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
		background:#111;
		padding:14px 16px;
		display:flex;
		align-items:center;
		justify-content:space-between;
		color:#fff;
	}

	.logo {
		font-weight:700; font-size:18px;
	}

	/* Basket (MATCH IMAGE) */
	.basket {
		position:fixed;
		left:12px;
		right:12px;
		bottom:74px;
		background:#fff;
		border-radius:14px;
		padding:12px;
		box-shadow:0 6px 20px rgba(0,0,0,.18);
	}

	.basket-top {
		display:flex;
		justify-content:space-between;
		align-items:center;
		font-size:13px;
		margin-bottom:6px;
	}

	.basket-top strong {
		color:#0a7a3d; 
	}
	
	.basket-sub {
		font-size:11px;
		text-align:center;
		color:#777;
		margin-bottom:10px;
	}

	.basket-btn {
		background:#111;
		color:#fff;
		padding:14px;
		border-radius:10px;
		display:flex;
		justify-content:center;
		align-items:center;
		gap:8px;
		font-weight:600;
	}

	/* Bottom Navigation (MATCH IMAGE) */
	.bottom-nav {
		position: fixed;
		bottom:-1px;
		left:0;
		right:0;
		background:#fff;
		display:flex;
		justify-content:space-around;
		border-top:1px solid #e1e1e1;
		padding:10px 0 8px;
		font-size:11px;
		color:#666;
	}

	.bottom-nav div {
		opacity: 0.5;
	}

	.bottom-nav .active {
		color:#000; font-weight:600;
		opacity: 1;
	}

	.bottom-nav a svg {
		padding: 8px;
	}

	.bottom-nav .active svg {
		background: #dfdfdf;
    border-radius: 10px;
	}

	.spacer {
		height:180px;
	}

	/* Shop Page Menu */
	.menu {
		background:#1b1b1b; color:#fff;
	}

	.menu-item {
		padding:16px;
		border-bottom:1px solid #2a2a2a;
		display:flex;
		justify-content:space-between;
		align-items:center;
		font-size:18px;
		font-weight: 1000;
	}

	
	/* Submenu */
	.submenu {
		background:#fff;
		display:none;
		animation:slide .25s ease;
	}

	.menu-item.active + .submenu {
		display:block;
	}

	.filter {
		padding:14px 16px;
		border-bottom:1px solid #eee;
		font-size:14px;
		color:#555;
	}

	.filterItems {
		align-items: center;
		gap: 12px;
		padding: 14px 16px;
		border-bottom: 1px solid #eee;
		font-size: 14px;
		color: #111;
	}

	.filterItemOpt {
		background: #f0f0f0;
		padding: 3px 12px;
		border-radius: 40px;
	}

	.filterItemOpt.active {
		background: #656565;
		color: #fff;
	}

	.filterItems .doneBtn {
		background: #000;
		border: solid 1px;
		border-radius: 5px;		
	}

	/* Hide the actual checkbox square */
	.filterItemOpt input[type="checkbox"] {
		display: none;
	}

	/* Default State */
	.filterItemOpt {
		background: #f0f0f0;
		padding: 3px 12px;
		border-radius: 40px;
		cursor: pointer;
		display: inline-block;
		transition: all 0.2s ease;
	}

	/* Active state when checkbox is checked */
	.filterItemOpt:has(input:checked) {
		background: #656565;
		color: #fff;
	}

	.sub-item {
		display:flex;
		align-items:center;
		gap:12px;
		padding:14px 16px;
		border-bottom:1px solid #eee;
		color:#111;
	}

	.sub-item .icon {
		width:34px;
		height:34px;
		border-radius:50%;
		background:#f2f2f2;
		display:flex;
		align-items:center;
		justify-content:center;
		font-weight:600;
		color:#555;
		font-size:14px;
	}

	@keyframes slide {
		from {
			opacity:0; transform:translateY(-6px);
		}
		to {
			opacity:1;
		}
	}

	/* Products listing */
	.products {
		padding:14px;
		display:grid;
		grid-template-columns:repeat(3,1fr);
		gap:16px;
	}

	.product {
		border-radius:12px;
		font-size:13px;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	}

	.p-img {
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}

	.pContent h5 {
		line-height: 18px;
	}

	.product .adQty {
		top: 6px;
		right: 6px;
		left: 6px;
	}

	.product .packSize {
		transform: rotate(90deg);
		top: 45%;
		left: -24px;
	}

	.product .packSize label {
		background: #eee;
		color: #919191;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}

	.product .pHighlight {
		padding: 3px 10px;
		background: #000;
		color: #fff;
		font-size: 10px;
		border-radius: 10px;
		bottom: 0;
		left: 8px;
	}

	.product .hot {
		background: #dd3c3e;
	}

	.product .new {
		background: #3877e1;
	}

	.productCalculation {
		background: #fff;
		right: 3%;
		left: 3%;
		bottom: 10%;
		border-radius: 5px;
		box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	}

	.productCalculation .w-25, .productCalculation .w-50, .productCalculation label {
		line-height: 12px;
		border-color: #000 !important;
	}


	/* Filter Chips */
	.active-filters {
		padding:10px 14px;
		display:flex;
		gap:8px;
	}

	.chip {
		background:#eee;
		padding:6px 10px;
		border-radius:20px;
		font-size:12px;
		cursor:pointer;
	}

	/* Filter Panel */
	.filter-panel {
		position:fixed;
		top:0; right:0; bottom:0;
		width:100%;
		background:#fff;
		z-index:99;
		display:none;
	}

	.filter-header {
		padding:16px;
		display:flex;
		justify-content:space-between;
		border-bottom:1px solid #eee;
	}

	.filter-title {
		font-weight:600;
		margin:16px;
	}

	.filter-options {
		display:flex;
		gap:10px;
		padding:0 16px;
	}

	.f-btn {
		padding:10px 14px;
		border-radius:20px;
		border:1px solid #ddd;
		background:#fff;
	}

	.f-btn.active {
		background:#111;
		color:#fff;
	}

	/* PRODUCT FILTER BAR */
	.product-filter {
		background:#fff;
		padding:10px 14px;
		display:flex;
		justify-content:space-between;
		align-items:center;
		border-bottom:1px solid #eee;
		font-size:13px;
	}

	.pf-left {
		display:flex;
		align-items:center;
		gap:8px;
	}

	.pf-right {
		color:#d00;
		font-size:12px;
		cursor:pointer;
	}

	.brand-list {
		background:#fff;
	}

	.pf-left {
		display:flex;
		align-items:center;
		gap:8px;
		font-size:13px;
	}

	#activeBrand {
		background:#eee;
		padding:6px 10px;
		border-radius:20px;
		font-size:12px;
	}

	.resetFilter {
		background: #f7e5e5;
		color: #e60325;
		font-size: 12px;
		padding: 3px 10px;
		border-radius: 5px;
	}

	#filterLabel {
		background: #f9f9f9b5;
		padding: 3px 10px;
		border-radius: 5px;
		font-size: 12px;
		line-height: 28px;
	}

	#filterLabel svg {
		font-size: 11px;
		padding-left: 2px;
	}

	.filter-options-panel {
		background:#fff;
		padding-bottom:12px;
	}

	.filter-header {
		display:flex;
		justify-content:space-between;
		align-items:center;
		padding:14px 16px;
		border-bottom:1px solid #eee;
	}

	.doneFilter {
		background:#111;
		color:#fff;
		border:none;
		padding:6px 14px;
		border-radius:6px;
		font-size:12px;
	}

	.filter-title {
		font-weight:600;
		padding:12px 16px 6px;
	}

	.filter-options {
		display:flex;
		gap:8px;
		padding:0 16px 16px;
	}

	.f-btn {
		border:1px solid #ddd;
		background:#fff;
		padding:8px 14px;
		border-radius:20px;
		font-size:12px;
	}

	.f-btn.active {
		background:#111;
		color:#fff;
		border-color:#111;
	}

	.dNone {
		display:none; 
	}

	/* Login */
	.authMain {
    height: 100vh;
    background: #fbfbfb;
	}

	.screen {
    height: 100%;
    background: linear-gradient(to bottom, #fbfbfb 55%, #ffffff 55%);
	}

	.bottom-nav label {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 6px;
	}


	/* SignUp */
	.step-signup-modal form {
		overflow: hidden;
		position: relative;
	}

	.form-step {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }

  .form-step.active {
    display: block;
    position: relative;
  }

  .upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .upload-box {
    width: 300px;
    height: 180px;
    background: #fff;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .upload-box.dragover {
    border-color: #3498db;
    background-color: #f0f8ff;
  }

  .upload-box h3 {
    margin-bottom: 10px;
  }

  .upload-box input[type="file"] {
    display: none;
  }

  .file-list {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    text-align: left;
    max-height: 80px;
    overflow-y: auto;
  }

  .file-list li {
    list-style: disc;
    margin-left: 15px;
  }

  .form-step textarea {
  	height: 100px;
  }

	.step-signup-modal textarea {
		height: 70px;
	}

	.fielUploadBox svg {
		color: #b7b7b7;
		padding-bottom: 10px;
		font-size: 20px;
	}

	.step-signup-modal .fielUploadBox {
    height: 150px;
    border: 2px dashed #e3e3e3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #8f8f8f;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    position: relative;
  }

  .step-signup-modal .fielUploadBox.dragover {
    border-color: #3498db;
    background-color: #f0f8ff;
  }

  .step-signup-modal .fielUploadBox i {
    font-size: 25px;
    color: #b7b7b7;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

	.step-signup-modal .black-checkbox .form-check-input {
		width: 14px;
		height: 14px;
		background-color: #ffffff;
		border: 1.5px solid #000000;
		cursor: pointer;
		border-radius: 3px !important;
		margin-top: 5px;
		padding: 0;
	}

	.step-signup-modal .black-checkbox .form-check-input:checked {
		background-color: #000 !important;
		border-color: #000 !important;
		padding: 0 !important;
	}

	.step-signup-modal .black-checkbox .form-check-label {
		color: #333 !important;
		cursor: pointer;
		padding-top: 1px;
	}

	.step-signup-modal .black-checkbox {
		padding-left: 40px;
	}

	.bg-purple {
		background-color: #000;
	}

	.step-signup-modal .blackTransparentBtn, .step-signup-modal .blackDarkBtn {
		width: 115px;
	}

	.fixedBreadcrumb {
		position: sticky;
		top: 0;
		right: 0;
		left: 0;
		background: #fff;
		z-index: 999;
	}

	.formOuter {
		padding-bottom: 70px;
	}

	/* Scan Page */
	.scanCol {
		background: #e9e9e9;
<<<<<<< HEAD
		border-radius: 16px;
=======
		border-radius: 5px;
>>>>>>> c85fc1a5a57e0983481e7822159a2234e93871a8
		height: 50px;
		width: 50px;
	}

	.recentScan {
		height: 130px;
	}

	.placeholderText {
		color: #c7c7c7;
		top: 45%;
		right: 30%;
	}

	/* Product Landing */
	.productLanding .slick-arrow {
		display: none !important;
	}

	.productLanding .slick-dots button {
		padding: 0 !important;
	}

	.productLanding .slick-dots li button:before {
		font-size: 16px !important;
		line-height: 0 !important;
		width: 0 !important;
		height: 0 !important;
	}

	.productLanding .slick-dots li, .productLanding .slick-dots li button {
		width: 0 !important;
		height: 0 !important;
	}

	.bottom-nav.productDetailBtn div {
		opacity: inherit !important;
	}

	.bottom-nav.productDetailBtn {
		padding: 10px 0;
	}

	.bottom-nav.productDetailBtn label {
		display: inherit;
	}

	.qtyOuter .add {
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.qtyOuter .less {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}

	.bottom-nav.productDetailBtn button {
		padding: 5px 0 !important;
	}

	.qtyOuter {
		background: #000;
		border: solid 1px #000;
		border-radius: 10px;
	}

	.qtyOuter input {
		color: #fff;
		background: #000;
	}

<<<<<<< HEAD
	/* Account */
	.editBtn {
		border: solid 1px #d9d9d9;
		background: #f7f7f7;
		padding: 8px 0;
		border-radius: 12px;
	}
=======
>>>>>>> c85fc1a5a57e0983481e7822159a2234e93871a8


	
}

@media(max-width:499px) {

	.products {
		padding:14px;
		display:grid;
		grid-template-columns:repeat(2,1fr);
		gap:16px;
	}
<<<<<<< HEAD
=======
	
}

/*@media(max-width:499px) {
>>>>>>> c85fc1a5a57e0983481e7822159a2234e93871a8
	
}

/*@media(max-width:499px) {
	
}
*/
@media(max-width:399px) {
	
	.font12 {
		font-size: 10px;
	}

	.font13 {
		font-size: 11px;
	}

	.font14 {
		font-size: 12px;
	}

	.font15 {
		font-size: 13px;
	}

	.font16 {
		font-size: 14px;
	}

	.font18 {
		font-size: 16px !important;
	}

	.font20, h4 {
		font-size: 18px;
	}

	.font22 {
		font-size: 18px;
	}

	.font28 {
		font-size: 24px;
	}

}