.custom-cart-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    font-family: 'Playfair', serif;
}

/* Left Column */
.cart-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55%;
    flex: 1 1 55%;
}

.cart-page-custom-conteiner .e-con-inner {
    padding: 0 5px 40px!important;
}

.custom-cart-title h1{
    text-align: start;
    margin: 15px 0 40px;
}

.cart-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #0B0B16;
    padding-bottom: 15px;
    gap: 24px;
}

.cart-header span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
    color: #14242E;
    font-family: "Bellota Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.cart-header span:nth-child(2),
.cart-header span:nth-child(3) {
    text-align: center;
    width: 72px;
    max-width: 72px;
}

.cart-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #0B0B16;
    padding: 16px 0;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cart-product-content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
}

.left-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-thumb img {
    width: 123px;
    height: 115px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.remove-item {
    background: transparent;
    border: none;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: -17px;
    left: auto;
    right: -14px;
    cursor: pointer;
}

.product-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%;
}

.product-name,
.product-price,
.product-price .woocommerce-Price-amount.amount{
    color: #0B0B16;
    font-family: 'Playfair';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.product-price .woocommerce-Price-amount.amount{
    color: rgba(11,11,11,0.50)!important;
	font-family: 'Bellota Text'!important;
}

.right-content {
    max-width: 300px;
    padding-top: 0;
}

.product-variation,
.product-qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
}

.custom-select {
    position: relative;
    width: 72px!important;
    height: 30px;
    border: 1px solid #0B0B16;
    cursor: pointer;
    font-family: 'Playfair', serif;
    font-size: 15px;
    text-align: center;
    background: #F9F9F9;
    z-index: 10;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.custom-select .select-trigger {
    padding: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}

.custom-select .custom-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.custom-select.open .custom-arrow {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.select-options {
    width: 72px;
    position: absolute;
    top: 100%;
    left: -1px;
    right: 0;
    background: #F9F9F9;
    border: 1px solid #0B0B16;
    border-top: none;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 15;
}

.select-options li {
    padding: 5px 0 6px;
    border-top: 1px solid #0B0B16;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
}

.select-options li:hover {
    background: #f0f0f0;
	background-color: #0B0B16;
	color: #F9F9F9;
}

.custom-select.open .select-options {
    display: block;
}

.product-qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
	min-width: 72px;
}

.product-qty button {
    width: 20px;
    height: 30px;
    background: transparent;
    font-family: 'Bellota';
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #0B0B16;
    color: #0B0B16;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-qty button:hover {
    color: rgba(11, 11, 22, 0.50);
}

.product-qty input.qty-input {
    width: 32px;
    text-align: center;
    border-top: 1px solid #0B0B16;
    border-bottom: 1px solid #0B0B16;
    border-left: none;
    border-right: none;
    height: 30px;
    min-height: 30px;
    background: transparent;
    padding: 0;
    font-family: 'Bellota';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product-qty input.qty-input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media screen and (min-width: 540px) {
    .cart-left {
        min-width: 400px;
    }
}

/* Right Column */
.cart-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    border: 1px solid #0B0B16;
    padding: 24px;
}

.cart-right h2 {
    color: #0B0B16;
    font-family: 'Playfair';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #0B0B16;
}

.coupon-section {
    padding-bottom: 16px;
    border-bottom: 1px solid #0B0B16;
}

.coupon-section input {
    padding: 8px;
    border: 1px solid #0B0B16;
    width: 100%;
    margin: 16px 0 0;
    background-color: #F9F9F9!important;
    min-height: 35px!important;
    height: 35px!important;
}

.coupon-section label{
    font-weight: 700;
    font-size: 20px;
    font-family: 'Playfair';
}

.coupon-code-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.coupon-section button {
    padding: 5px 12px;
    margin: 16px 0 0;
    border: 1px solid #0B0B16;
    background: #F9F9F9!important;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    font-family: 'Playfair';
}

.coupon-section button:hover {
    background: #0B0B16!important;
    color: #F9F9F9;
}

.order-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #0B0B16;
    padding: 16px 0;
    font-size: 14px;
}

.order-line .order-product-title,
.order-line .order-product-size {
    padding-right: 15px;
    color: #0B0B16;
    font-family: 'Playfair';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.order-line .order-product-price {
    color: #0B0B16;
    text-align: right;
    font-family: "Bellota Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cart-totals .totals-row {
    padding: 10px 0;
    color: #0B0B16;
    font-family: 'Playfair';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border-bottom: 1px solid #0B0B16;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-totals .totals-row .woocommerce-Price-amount.amount,
.cart-totals .totals-row .total,
.cart-totals .totals-row .vat{
    color: #0B0B16;
    text-align: right;
    font-family: "Bellota Text";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.checkout-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #F9F9F9;
    border: 1px solid #0B0B16;
    cursor: pointer;
    color:  #0B0B16;
    text-align: center;
    font-family: 'Playfair';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.checkout-btn svg {
	margin-left: 10px;
}

.checkout-btn:hover {
    background: #0B0B16;
    color: #F9F9F9;
}

.checkout-btn:hover svg {
    margin-left: 16px;
}

.checkout-btn:hover svg path {
    fill: #F9F9F9;
}

.product-info-mobile {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	
}

.cart-product-content-wrap__container {
	width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
}

.qty-minus {
	padding: 0 0px 3px;
}


@media screen and (max-width: 580px) {
   .product-info {
	   display: none!important;
   }
	
  .product-info-mobile {
	  display: -webkit-box!important;
	  display: -ms-flexbox!important;
	  display: flex!important;
   }
}



@media screen and (min-width: 992px) {
	
	.checkout-btn {
		font-size: 23px;
	}
	
	.cart-totals .totals-row {
        padding: 16px 0;
		font-size: 24px;
	}
	
	.cart-totals .totals-row .woocommerce-Price-amount.amount,
   .cart-totals .totals-row .total,
   .cart-totals .totals-row .vat{
      font-size: 24px;
   }
	
	.order-line .order-product-title,
    .order-line .order-product-size {
       font-size: 20px;
    }

    .order-line .order-product-price {
       font-size: 20px;
    }
	
	.cart-header span {
        font-size: 20px;
    }
	
	.cart-page-custom-conteiner {
		padding: 0!important;
	}
	
    .cart-page-custom-conteiner .e-con-inner {
        padding: 0 20px 100px!important;
    }

    .cart-right {
        min-width: 350px;
    }

    .cart-product {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
		padding: 21px 0;
        gap: 24px;
    }
	
	.right-content {
        padding-top: 12px;
    }

    .cart-product,
    .cart-product-content-wrap,
    .cart-header {
        gap: 32px;
    }

    .product-name,
    .product-price,
    .product-price .woocommerce-Price-amount.amount {
        font-size: 24px;
    }

    .product-price .woocommerce-Price-amount.amount {
        font-size: 20px!important;
    }

    .cart-right {
        padding: 32px 47px 40px;
    }

    .cart-right h2 {
        font-size: 24px;
    }

}

.cart-discount .woocommerce-remove-coupon {
   display: none;
}

.cart-discount {
   border-bottom: none!important;
}

.totals-row.coupon-pills {
   padding: 0 0 10px;
}

.coupon-pill {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #7a7a7a;
    border-radius: 100px;
    padding: 2px 4px 2px 8px;
    font-size: 16px;
    text-transform: uppercase;
    gap: 8px;
}

.coupon-pill .coupon-code {
  color: #0B0B16;
  font-weight: 500;
}

/* Крестик удаления */
.coupon-pill .coupon-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1px solid #7a7a7a;
  border-radius: 50%;
  text-decoration: none;
  color: #333333;
  font-size: 23px;
  line-height: 30px;
  cursor: pointer;
}

.coupon-pill .coupon-remove:hover {
  background: #E0E0E0;
}
