body{
	background-color: hsl(0, 0%, 98%);
}

h1,h2,h3,h4,h5,h6{
	color:hsl(0, 0%, 30%);
}

.box-element{
	box-shadow:hsl(0, 0%, 80%) 0 0 16px;
	background-color: #fff;
	border-radius: 4px;
	padding: 10px;
}

.thumbnail{
	width: 100%;
	height: 200px;
	-webkit-box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
    -moz-box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
    box-shadow: -1px -3px 5px -2px rgba(214,214,214,1);
}

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

.bg-dark{
	background-color: rgb(31, 23, 47)!important;
}

#cart-icon{
	width:25px;
	display: inline-block;
	margin-left: 15px;
}

#cart-total{
	display: block;
	text-align: center;
	color:#fff;
	background-color: red;
	width: 20px;
	height: 25px;
	border-radius: 50%;
	font-size: 14px;
}

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

.btn{
	border-radius: 0;
}

.row-image{
	width: 100px;
}

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

.cart-row{
	display: flex;
    align-items: flex-stretch;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ececec;

}

.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;
}

.container-fluid {
    padding: 20px;
}

.cart-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-row > div {
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.item img {
    width: 100%;
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.cart-row > .item {
    flex: 1 1 100%;
    max-width: 25%;
}

.cart-row > .precio, .fecha-inicio, .fecha-fin, .cantidad, .dias, .total, .borrar {
    flex: 1 1 50%;
    max-width: 12.5%;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0 5px;
}

@media (min-width: 768px) {
    .cart-row > .item {
        flex: 1 1 25%;
    }
    .cart-row > .precio, .fecha-inicio, .fecha-fin, .cantidad, .dias, .total, .borrar {
        flex: 1 1 12.5%;
    }
}


/* Default grid styling for larger screens */
.multi-columns-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px; /* Add spacing between columns */
  }
  
  .col {
	flex: 1 1 calc(25% - 16px); /* Four items per row, subtract gap */
	max-width: calc(25% - 16px);
	box-sizing: border-box;
  }
  
  .shop-item {
	border: 1px solid #ddd;
	padding: 16px;
	text-align: center;
	background-color: #fff;
	border-radius: 8px;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
	.col {
	  flex: 1 1 calc(50% - 16px); /* Two items per row on tablets */
	  max-width: calc(50% - 16px);
	}
  }
  
  @media (max-width: 480px) {
	.col {
	  flex: 1 1 100%; /* Full width on small screens */
	  max-width: 100%;
	}
  }
  
  .shop-item-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
  }
  

  @media (max-width: 576px) {
    .col-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .shop-item {
      margin-bottom: 20px;
    }
 }



