/* Offcanvas container */
.offcanvas {
    position: fixed;
    top: 0;
    right: -900px; /* hidden by default */
    min-width: 500px;
    height: 100vh;
    background: #EDE7DB;
    /* box-shadow: -3px 0px 8px rgba(0,0,0,0.2); */
    padding: 0px 30px 30px;
    transition: right 0.8s ease;
    z-index: 1001;
}

/* Show offcanvas */
.offcanvas.active {
    right: 0;
    transition: right 0.8s ease;
}

/* Overlay background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.8s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    transition: 0.8s ease;
}

/* Buttons */
.open-btn-wrapper {
    position: fixed;
    right: 0;
    bottom: 0;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
	z-index: 999;
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    float: right;
    color:#8f8f8f;
}

.cart-title{
    font-size: 32px;
    color:#1e1f1c;
}
.cart-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
}

.cart-items-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.cart-inner{
	display:flex;
	align-items: center;
	width: 300px;
}

.cart-tax-title{
	display: flex;
	flex-direction: column;
	padding-left: 25px;
	
}
/* .item-content {
    display: flex;
    flex-direction: column;
} */
.cart-list-image{
    height: 75px;
    width: 75px;
}
.cart-item-title {
    font-weight: bold;
    font-size: 18px;
	padding-top: 10px;
}

.cart-item-taxonomy {
    font-size: 15px;
    color: #777;
}

.cart-line{
	margin-top: 0px !important;
}
.item-id {
    font-size: 12px;
    color: #aaa;
}

.cart-remove-btn {
    font-size: 28px;
    color: #8f8f8f;
    text-decoration: none;
}

.count-wrapper{
	position: relative;

}
.count{
	position: absolute;
    top: 15px;
    right: 15px;
	color: #000;
    background: #ffc800;
    height: 25px;
    width: 25px;
    text-align: center;
    align-items: center;
    padding: 2px;
    border-radius: 50%;

}

.mini-cart-footer{
	padding: 15px 20px;
	background: #000;
	position: fixed;
	bottom: 10px;
	color: #ffffff;
    cursor: pointer;
}

.mini-cart-footer a{
	color: #ffff !important;
	
}
.mini-cart-footer a::hover{
	background: #ffff;
	color: #000;
}

/* .list-headings{
	display: flex;
	justify-content: space-between;
	text-align: center;
	align-items: center;
	padding: 12px;
} */

/* css for the order-confirmation page */

.order-confirmation {
/*   max-width: 1200px; */
  margin: 30px auto;
  display: flex;
  gap: 120px;
  font-family: poppins, sans-serif;
  background: #F6F3EF;
}

.order-left {
  	flex: 2;
}

.order-left h2 {
  font-size: 32px;
  margin-bottom: 30px;
	font-weight: 500;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.order-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 20px;
}

.item-info {
  flex: 1;
}

.item-info strong {
  display: block;
  font-size: 24px;
  letter-spacing: 1px;
}

.item-info span {
  font-size: 18px;
  color: #1E1F1C;
	font-weight: 500;
  letter-spacing: 1px;
}

.item-price {
  font-size: 20px;
}

.divider {
  height: 1px;
  background: #d8d8d8;
  margin: 30px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 15px;
	color: #1E1F1C;
}

.summary-row.total {
  font-size: 20px;
	color: #1E1F1C;
  font-weight: bold;
}

.order-right {
  flex: 1;
	max-width: 500px;
	justify-self: right;
}
.order_review_heading{
	font-weight: 500;
}
.info-box {
  background: #ffffff;
  padding: 30px;
}

.info-box h4 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 25px;
	font-weight: 500;
	font-family: lato;
}

.info-box h4:first-child {
  margin-top: 0;
}

.info-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* .woocommerce-checkout-review-order-table td{
	font-size: 19px;
	font-weight: 500;
} */

 .product-name, .product-total, .cart-subtotal, .woocommerce-shipping-totals{
	font-size: 19px;
	font-weight: 500 !important;
	
}
.order-total th, .order-total .amount {
	font-weight: 600 !important;
	font-size: 19px;
	
} 

.woocommerce-additional-fields{
	display: none !important;
}

.checkout-inline-error-message{
	display: none;
}
.woocommerce-ResetPassword.lost_reset_password p:first-of-type {
    display: none;
}


.woocommerce-checkout label,
.woocommerce-checkout input::placeholder {
    text-transform: uppercase !important;
}