
/*cart popup*/
.popup-btn {
	display: flex; 
	align-items: center; 
	justify-content: center; 
	position : relative; 
	gap: 4px;
	cursor: pointer
}

#popup-toggle {
	display: none;
}

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99;
}

.popup-content {
	background: var(--thi-background-color);
	padding: 20px;
	max-width: 600px;
	width: 90%;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: relative;
	height: 600px;
	overflow: auto;
	border-radius: 8px;
	border: 4px solid black;
}

.popup-close,
.popup-close-btn {
	cursor: pointer;
	border: 2px solid white;
}

.popup-close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.popup-close-btn {
    display: flex;
    background: #000000;
    color: white;
    padding: 10px;
    text-align: center;
    position: sticky;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    top: 0px;
    right: 0px;
    transform: translate(50%, 50%);
	font-size: 10px
}
#popup-toggle:checked + .popup-btn + .popup-overlay {
	display: flex;
}

.cart-form {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
	flex-direction: column;
	gap: 20px
}

.cart-form-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
	flex-direction: column;
	gap: 20px
}

.cart-form-container > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    gap: 4px;
    /*background: white;*/
    flex-direction: column;
    text-align: center;
}


.cart-form-container input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.cart-form-container input[type=number] {
  -moz-appearance: textfield;
}



.quantity input.qty {
	width: 100%;
    background: black;
    color: white;
}
/*cart popup*/








.coupon {display: flex; gap: 10px !important}
button, .button {width: 100%; padding: 10px; display: flex;
align-items: center; justify-content: center}
button:hover .button:hover{width: 100%; padding: 10px}