.shopping-cart{
	padding-bottom: 50px;
	font-family: 'Montserrat', sans-serif;
}

.shopping-cart.dark{
	background-color: none;
}

.product {
  background-color: #ffffff; /* Sets background color */
  border-radius: 8px;        /* Rounds the corners */
  padding: 20px;             /* Adds space inside the row */
  margin-bottom: 20px;       /* Spaces out multiple products */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Optional: adds subtle depth */
}


.shopping-cart .block-heading{
    padding-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.shopping-cart .block-heading p{
	text-align: center;
	max-width: 420px;
	margin: auto;
	opacity:0.7;
}

.shopping-cart .dark .block-heading p{
	opacity:0.8;
}

.shopping-cart .block-heading h1,
.shopping-cart .block-heading h2,
.shopping-cart .block-heading h3 {
	margin-bottom:1.2rem;
	color: #3b99e0;
}

.shopping-cart .items{
	margin: auto;
}

.shopping-cart .items .product{
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.shopping-cart .items .product .info{
	padding-top: 0px;
	text-align: center;
}

.shopping-cart .items .product .info .product-name{
	font-weight: 600;
}

.shopping-cart .items .product .info .product-name .product-info{
	font-size: 14px;
	margin-top: 15px;
}

.shopping-cart .items .product .info .product-name .product-info .value{
	font-weight: 400;
}

.shopping-cart .items .product .info .quantity .quantity-input{
    margin: auto;
    width: 80px;
}

.shopping-cart .items .product .info .price{
	margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
 }

.shopping-cart .summary{
	border-top: 2px solid #F6F6F6;
    background-color: #FDFDFD;
    height: 100%;
    padding: 30px;
}

.shopping-cart .summary h3{
	text-align: center;
	font-size: 1.3em;
	font-weight: 600;
	padding-top: 20px;
	padding-bottom: 20px;
}

.shopping-cart .summary .summary-item:not(:last-of-type){
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shopping-cart .summary .text{
	font-size: 1em;
	font-weight: 600;
}

.shopping-cart .summary .price{
	font-size: 1em;
	float: right;
}

.btn.btn-primary { 
  display: inline-block;
  padding: 5px 20px;
  background-color: #D10024;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-top:20px;
}

/* force cart/product images to a reasonable responsive size (targets .image class used in cart.php) */
.section .product img.image,
.shopping-cart .product img.image,
.items .product img.image,
.cart-list .product-img img,
.product-widget .product-img img {
  max-width: 120px !important;    /* cap displayed width */
  width: auto !important;         /* allow natural scaling up to max-width */
  height: auto !important;        /* preserve aspect ratio */
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Slightly larger on wide screens */
@media (min-width: 992px) {
  .section .product img.image,
  .shopping-cart .product img.image {
    max-width: 140px !important;
  }
}

/* If you want exact fixed width (not recommended for all cases), replace max-width with width:
.shopping-cart .product .product-img img { width: 120px; height: auto; }
*/

@media (min-width: 768px) {
	.shopping-cart .items .product .info {
		padding-top: 25px;
		text-align: left; 
	}

	.shopping-cart .items .product .info .price {
		font-weight: bold;
		font-size: 22px;
		top: 17px; 
	}

	.shopping-cart .items .product .info .quantity {
		text-align: center; 
	}
	.shopping-cart .items .product .info .quantity .quantity-input {
		padding: 4px 10px;
		text-align: center; 
	}
}
