.cart-popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 99;
    display: none;
}

#cart-popup {
    position: fixed;
		max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #19191c;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1000;
    color: #fff;
    height: auto;
    overflow: auto;
    border-radius: 15px;
    border-color: #3c3c3c !important;
}

div#cart-popup::-webkit-scrollbar {
    display: none;
}

#cart-popup h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 10px;
}

#cart-popup .close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

#cart-popup .close:hover {
    color: #ccc;
}

#cart-popup .added-product-container {
    /* display: flex; */
    margin: 20px 0px 0px;
    gap: 10px;
}

#cart-popup .added-product {
    width: 100%;
}

#cart-popup .added-product-single {
    display: flex;
		align-items: center;
		gap: 10px;
}

#cart-popup .added-product-image {
    width: 50%;
    padding: 15px;
}

#cart-popup .added-product-info {
    width: 50%;
}

#cart-popup .added-product-single .as-low-as {
    font-size: 13px;
    color: #ccc;
		text-transform: lowercase;
		margin-left: 5px;
}

#cart-popup .added-product-info h3 {
    text-transform: capitalize;
    font-size: 15px;
    margin-bottom: 10px;
}

#cart-popup .added-product-info h4 {
    text-align: left;
    font-size: 19px;
}

#cart-popup .added-product-control {
    width: 100%;
		margin-top: 20px;
}

#cart-popup .added-product-control p {
    font-size: 13px;
		text-align: center;
		margin-bottom: 10px;
}

#cart-popup .added-product-control div {
	display: flex;
	justify-content: space-between;
}

#cart-popup .added-product-control div a {
	width: 48%;
}



#cart-popup .two-shear-container, #cart-popup .four-shear-container {
    background: #000;
    padding: 15px;
    border-radius: 15px;
    border: 5px dashed #eee;
}

#cart-popup .two-shear-container > h3, #cart-popup .four-shear-container > h3 {
    margin-bottom: 25px;
    text-align: center;
}

#cart-popup .two-shear-container h4, #cart-popup .four-shear-container h4 {
    text-align: left; 
    font-size: 18px;
    margin-bottom: 15px;
}

#cart-popup .shear-set-product {
    display: flex;
    gap: 2%;
    align-items: center;
    justify-content: space-between;
}

#cart-popup .shear-set-product-image {
    width: 50%;
}

#cart-popup .shear-set-product-info h3 {
    font-weight: 500;
    font-size: 20px;
}

#cart-popup .shear-set-product-info h4 {
    text-align: left;
}

#cart-popup .shear-set-add-to-cart {
    background-image: linear-gradient(#0fb7f1, #5943dd);
    border-radius: 5px;
    margin-top: 20px;
    font-size: 36px;
    padding: 15px 25px;
}

#continue-shopping, #checkout-now {
    margin: 5px;
    border-radius: 5px;
}

#checkout-now {
    background-image: linear-gradient(#0fb7f1, #5943dd);
}

#continue-shopping {
    background-color: #000;
}

.two-shear-products .shear-set-product-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.two-shear-products .shear-set-product-image {
    width: 50%;
}

.four-shear-products .shear-set-product-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.four-shear-products .shear-set-product-image {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.four-shear-products .shear-set-product-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: space-evenly;
}

.shear-set-variation {
    background: #000;
}


@media only screen and (max-width: 920px) {
    #cart-popup {
        width: 95%;
        top: 40%;
    }

    #cart-popup .recommended-products .recommended-product {
        width: 48%;
    }

    .added-product-container {
        flex-direction: column;
    }

    .added-product, .added-product-control {
        width: 100% !important;
    }

    .two-shear-products .shear-set-product-inner { 
        padding: 0px;
    }

    .four-shear-products .shear-set-product-inner { 
        padding: 0px;
        align-items: stretch;
    }

    .four-shear-products .shear-set-product-image {
        padding: 15px 0px;
        justify-content: space-between;
    }

    #cart-popup .shear-set-product-info h3 {
        font-size: 15px;
    }

    #cart-popup .shear-set-product {
        align-items: end;
        flex-direction: column-reverse;
    }

    #cart-popup .shear-set-add-to-cart {
        font-size: 18px;
        padding: 10px 15px;
        margin-top: 5px;
    }

	#cart-popup .added-product-single .as-low-as {
		display: block;
		margin-left: 0px;
	}
}