/* Add your CSS styles for the quick view popup here */
.doubledome_shopquick_preview_button {
    position: absolute;
    right: 10px;
    top: 5px;
}
.doubledome_shopquick_preview_button span.dashicons {
    width: 30px;
    height: 30px;
    font-size: 30px;
}
#ddshopquickpopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.ddshopquickpopup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width:1000px;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    max-width: 90%; /* Adjust the maximum width based on your design */
    margin: 20px auto;
}
.ddshopquickpopup_content .leftcol, .ddshopquickpopup_content .rightcol {
    width: 50%;
    display: inline-block;
    padding: 1%;
    vertical-align: top;
}
.dd_shopquick_details {
    padding: 10px 15px;
    background: #000;
    color: #fff;
    font-size:18px;
	margin-right:15px;
}
.ddshopquickpopup_content .rightcol form {
    max-width: 70%;
    display: inline-block;
    margin-right: 10px;
}
.ddshopquickpopup_content .rightcol form .quantity {
    display: inline-block;
}

/* Product Title */
.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Product Image */
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Product Price */
.product-price {
    font-size: 16px;
    color: #e44d26; /* WooCommerce default price color */
    margin-bottom: 10px;
}

/* Product Description */
.product-description {
    font-size: 14px;
    line-height: 1.4;
}

/* Close Button */
.close-button {
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

/* Hover effect on close button */
.close-button:hover {
    color: #333;
}

/* Loader */
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
	position: absolute;
    top: 48%;
    left: 49%;
}

/* Loader animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles */
@media screen and (max-width: 1100px) {
    #ddshopquickpopup .rightcol .dd_shopquick_details {
        padding:10px 15px;
		font-size:90%;
    }
}
@media screen and (max-width: 870px) {
    #ddshopquickpopup .rightcol .dd_shopquick_details {
        padding:10px 10px;
		font-size:75%;
    }
}
@media screen and (max-width: 767px) {
    #ddshopquickpopup .rightcol .dd_shopquick_details {
        display:inline-block;
		clear:both;
    }
	#ddshopquickpopup .rightcol a.dd_shopquick_details {
		margin-top: 20px;
	}
}
@media screen and (max-width: 640px) {
    #ddshopquickpopup .rightcol, #ddshopquickpopup .leftcol {
        width:100%;
    }
}