body{
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #202124;
  line-height: 1.6;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

.navbar-brand {
  font-size: 1.7rem; 
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1.1rem; 
  color: #ffffff;
  padding: 0.75rem 1rem;
  transition: color 0.3s;
}

.navbar-toggler {
  border: none;
}

h5, h6{
  margin-top: 0.5rem;
}

.box-element{
	box-shadow:hsl(0, 0%, 80%) 0 0 16px;
	background-color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  transition: transform 0.2s;
}

.box-element:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

.thumbnail{
	width: 100%;
	height: 200px;
	max-height: 200px;
  object-fit: cover; 
  border-radius: 4px; 
}

.product{
	border-radius: 0 0 8px 8px;
}

#cart-icon {
  width: 30px;
  height: auto;
  margin-left: 1rem;
}

#cart-total {
  color: #ffc107; 
  font-weight: 600;
  margin-left: 0.5rem;
}

.col-lg-4{
	margin-top: 20px; 
  width: 100%; 
  height: auto; 
  object-fit: cover;
}

.col-lg-6, .col-lg-8, .col-lg-12{
  margin-top: 20px; 
}

.btn{
  font-family: "Open Sans", sans-serif;
	font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.3s, transform 0.2s;
}

.cart-btn{
  margin-top: 10px;
  margin-bottom: 30px;
}

.row-image{
	width: 100px;
}

.form-field{
	width:250px;
	display: inline-block;
	padding: 5px;
}

.cart-row{
	display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  object-fit: cover; 
}

.quantity{
	display: inline-block;
	font-weight: 700;
	padding-right:10px;
}

.chg-quantity{
	width: 12px;
	cursor: pointer;
	display: block;
	margin-top: 5px;
	transition:.1s;
}

.chg-quantity:hover{
	opacity: .6;
}


.hidden{
	display: none!important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-nav .nav-link {
      padding: 0.5rem;
  }
}
