.cart-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-icon-wrap a {
	color: #333;
	font-size: 24px;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
}
.cart-icon-wrap a:hover {
	color: #007bff;
}
.cart-count-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: #ff6b6b;
	color: white;
	font-size: 12px;
	font-weight: bold;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.cart-count-badge.updated {
	animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}


#cart-list {
	position: fixed;
	right: 10px;
	top: 10px;
	background-color: dark;
	width: 90%;
	max-width: 380px;
	border-radius: 0px; 
	box-shadow: none; 
	z-index: 1000;
	padding: 15px;
	max-height: 80vh;  
	overflow-y: auto;
	transition: all 0.3s ease;
	display: none;
}

.qty-text {
	width: 60px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 5px;
	transition: border-color 0.3s ease;
}

.qty-text:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.coupon-text {
	width: 100px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 5px;
	transition: border-color 0.3s ease;
}

.coupon-text:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.cart-amount-area {
	margin-top: 15px;
	border-top: 1px solid #ddd;
	padding-top: 15px;
}
		
.modal-content {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.form-label {
  font-weight: 500;
}

.form-control {
  border-radius: 5px;
}

.btn-secondary {
  background-color: #6c757d;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}

.btn-primary:hover {
  background-color: #0056b3;
}

hr {
  border-top: 2px solid #dee2e6;
}

.cart-wrapper-area {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-table {
  border-radius: 8px;
}

.card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-footer {
  background-color: #ffffff;
  border-top: 1px solid #e2e2e2;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.table th, .table td {
  padding: 1rem;
  vertical-align: middle;
}

.table thead th {
  background-color: #f1f1f1;
  font-weight: 600;
}

.total-price {
  font-weight: 600;
  color: #333;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
  background-color: #0056b3;
}

@media only screen and (max-width: 768px) {
	.hide-on-mobile
	{
	  display: none;
	}
	.cart-icon-wrap a {
		font-size: 20px;
	}

	.cart-count-badge {
		width: 18px;
		height: 18px;
		font-size: 11px;
	}
	

	.table th,
	.table td {
	  padding: 12px 8px;
	  font-size: 14px;
	}

	.alternative-command-options .dropdown-toggle {
	  width: 100%;
	  text-align: left;
	}

	.pagination .page-link {
	  padding: 8px 12px;
	  font-size: 14px;
	}
  }

@media only screen and (max-width: 576px) {
	.hide-on-mobile
	{
	  display: none;
	}
	.table th,
	.table td {
	  padding: 10px 5px;
	  font-size: 13px;
	}
  }