/*
Theme Name: Loobek Child
Theme URI: https://demo.theme-sky.com/loobek/
Author: Theme Sky Team
Author URI: http://theme-sky.com/
Description: A Premium and Responsive WordPress theme, designed for E-Commerce websites
Template: loobek
Version: 1.0.0
License: GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Text Domain: loobek-child
*/

/* Custom border for models in Elementor Product Gallery (EAEL) */
#eael-product-gallery .product > div,
.eael-product-gallery .product > div,
.elementor-widget-eael-product-gallery .product > div {
    border: 3px solid #d19f62 !important;
    box-sizing: border-box;
    overflow: hidden; /* Ensures content stays within border */
    position: relative; /* Ensure positioning context for hover info */
}

/* Model Hover Info */
.model-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20; /* Above image */
    text-align: center;
    pointer-events: none; /* Allow click through to link if needed, but usually we want info visible */
}

/* Show on hover of the product card */
.product:hover .model-hover-info,
.product-wrapper:hover .model-hover-info {
    opacity: 1;
    visibility: visible;
}

.model-hover-inner {
    padding: 15px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product:hover .model-hover-inner,
.product-wrapper:hover .model-hover-inner {
    transform: translateY(0);
}

.model-hover-info .info-row {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.4;
    font-family: inherit;
}

.model-hover-info .label {
    font-weight: 600;
    color: #d19f62; /* Gold accent color */
    margin-right: 5px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.model-hover-info .value {
    color: #fff;
    font-weight: 500;
}
