.woocommerce-cart table.cart .product-thumbnail.in_cart img {
	width: 150px;
}

/* General styles */
#custom-product-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 0 2rem 2rem 2rem;
	z-index: 13;
	width: 1500px;
	max-width: 80%;
	max-height: 90%;
	overflow-y: auto;
	border-radius: 10px;
}

#custom-product-popup .popup-header {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
	margin-bottom: 20px;
	padding-top: 10px;
}

#custom-product-popup .popup-header h2 {
    margin: 0;
    font-size: 18px;
}

#custom-product-popup label {
    display: inline-flex;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#popup-product-image {
    width: 100px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

#popup-product-name {
    font-size: 1.5em;
    margin: 0;
    color: var(--text_dark_gray);
}

#popup-product-description {
    font-size: 1em;
    color: #666;
    margin-top: 10px;
}

#custom-product-popup input[type="text"],
#custom-product-popup input[type="number"],
#custom-product-popup input[type="date"],
#custom-product-popup input[type="time"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#custom-product-popup #map {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#custom-product-popup #prices {
	margin: 1rem 0 1rem;
	font-weight: bold;
	font-size: 16px;
}

#product-price {
	font-weight: bold;
	font-size: 16px;
}

.front_head {
	padding: 10px 0;
	font-weight: 700;
	font-size: 1.3rem;
}

.number.nr_bullet {
	flex-shrink: 0;
	display: inline-block;
	border-radius: 50%;
	height: 3rem;
	width: 3rem;
	text-align: center;
	line-height: 3rem;
	font-weight: 900;
	color: #fff;
	background-color: var(--bs-primary);
}

#custom-product-popup #result {
    margin-top: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
	display: none;
}

.close-popup {
    display: block;
    width: 3rem;
    margin-left: auto; /* This will push the button to the right */
}

.navigation-buttons button {
	width: 100%;
}

.navigation-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.navigation-buttons button {
	flex: 1; /* Allow buttons to grow and shrink equally */
	margin: 0 10px; /* Add margin between buttons */
}

button {
	padding: 10px;
	background-color: var(--accent_light_green);
	color: var(--text_dark_gray);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	/*color: var(--bs-white);
	font-weight: bold;*/
}

/* Ensure first and last button have space only on one side */
.navigation-buttons button:first-child {
	margin-left: 0;
}

.navigation-buttons button:last-child {
	margin-right: 0;
}

button:hover {
    background-color: var(--primary_green);
    color: #fff;
}

/* Overlay for the popup */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 11;
}

/* Button to open the popup */
.card-body .add-to-cart-container button.open-popup {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent_light_green);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.card-body .add-to-cart-container button.open-popup:hover {
    background-color: var(--primary_green);
}

.order_button_container {
	padding: 1rem 0;
}

/* ammount */
.amount-option {
    cursor: pointer;
    padding: 10px;
    border: 1px solid var(--bs-primary);
    border-radius: 5px;
    text-align: center;
    margin: 5px 0;
    transition: background-color 0.3s, color 0.3s;
}

.amount-option:hover,
.amount-option.selected {
    background-color: var(--bs-primary);
    color: white;
}

@media (max-width: 576px) {
    .amount-option {
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .amount-option {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .amount-option {
        font-size: 18px;
    }
	
	#custom-product-popup {
		max-width: 90%;
	}
}

@media (max-width: 769px) {
	#custom-product-popup {
		max-width: 95%;
		padding: 0 1rem 1rem 1rem;
	}
	.product-info {
        display: block;
    }

    #popup-product-image {
        float: left;
        margin: 10px 15px 8px 0;
        width: 50%; /* Adjust the width as needed */
        height: auto;
    }

    .product-info div {
        display: block;
        margin-top: 0;
    }

    #popup-product-description {
        font-size: 14px; /* Adjust as needed */
    }
}

.quantity .input-group {
	display: none;
}

.wc-block-components-quantity-selector {
	display: none !important
}

/* footer widget style */

.footer-best-seller-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-product-thumbnail {
    margin-bottom: 20px;
}

.footer-product-thumbnail img {
    max-width: 150px;
    height: auto;
}

.footer-product-thumbnail .product-name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.owl-carousel .owl-item img {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}