#castertab a{
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.product_content_hover {
    display: none; /* Hide by default */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product_content_hover img, .product_content_hover .content{
    padding: 15px;
 }
.product_content_hover .content{
 	text-align: left;
 }
 
.product_content_hover  .product-cats{
    color: black;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
     
 
.product_content_hover h6{
     color: black;
    font-weight: 600;
 }
.product_content_hover .product-meta-sku{
 color: black;
 }

.product_content_hover .select-option-button{
	width: 100%;
    padding: 10px 0px;
    color: white;
    background-color: #F37021 !important;
}

/* Show on Hover */
#castertab a:hover .product_content_hover {
    display: block;
}

/* Small styling for inside the popover */
.popover-inner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Container for the popover */
.product_content_hover {
    position: absolute;
    z-index: 99;
}

/* The actual Spinner */
.custom-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state {
    min-width: 150px;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}