.zwidgets-advanced-look-book {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-family: 'Inter', sans-serif;
    /* optional fallback */
}

.zwidgets-advanced-look-book .image-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    /* overflow: hidden; Removed to allow tooltips to extend outside */
    border-radius: 8px;
    /* Kept for reference/shadow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zwidgets-advanced-look-book .main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    /* Added matching radius */
}

/* The Dot (Hotspot) */
.zwidgets-advanced-look-book .hotspot-point {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.85);
    /* Dark circle */
    border: 2px solid #ffffff;
    /* White border */
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.zwidgets-advanced-look-book .hotspot-point:hover {
    transform: scale(1.1);
    background-color: #000;
}

/* The Tooltip Card */
.zwidgets-advanced-look-book .hotspot-card {
    position: absolute;
    top: 50%;
    left: 100%;
    /* Show to the right of the dot */
    transform: translateY(-50%);
    margin-left: 15px;
    /* Gap between dot and card */

    width: 260px;
    background-color: white;
    display: flex;
    /* Flex row for content + arrow area */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 20;
}

/* Show card on hover */
.zwidgets-advanced-look-book .hotspot-point:hover .hotspot-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Left-oriented Tooltip (for hotspots on the right side) */
.zwidgets-advanced-look-book .hotspot-point.tooltip-left .hotspot-card {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 15px;
}

/* Card Content Left Side */
.zwidgets-advanced-look-book .card-content {
    flex-grow: 1;
    padding: 20px;
    border-right: 1px solid #f0f0f0;
}

.zwidgets-advanced-look-book .product-name {
    font-size: 14px;
    font-weight: 700;
    /* Bold */
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.zwidgets-advanced-look-book .product-category {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Price Section */
.zwidgets-advanced-look-book .price-section {
    display: flex;
    flex-direction: column;
}

.zwidgets-advanced-look-book .old-price {
    font-size: 13px;
    color: #000;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 2px;
}

.zwidgets-advanced-look-book .current-price-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.zwidgets-advanced-look-book .currency {
    color: #cc0000;
    font-size: 14px;
    font-weight: 700;
}

.zwidgets-advanced-look-book .price-value {
    color: #cc0000;
    /* Red color from image */
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.zwidgets-advanced-look-book .discount-label {
    color: #cc0000;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

/* The Right Arrow Section */
.zwidgets-advanced-look-book .card-arrow-area {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
}

.zwidgets-advanced-look-book .card-arrow-area:hover {
    background-color: #fafafa;
}

.zwidgets-advanced-look-book .chevron-right {
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
}

/* Mobile Responsive Handling */
@media (max-width: 768px) {
    .zwidgets-advanced-look-book .hotspot-card {
        left: 50%;
        top: auto;
        bottom: calc(100% + 15px);
        /* Show above label on mobile */
        transform: translateX(-50%);
        margin-left: 0;
    }

    .zwidgets-advanced-look-book .image-wrapper {
        border-radius: 0;
        /* Full width on mobile often looks better without radius */
    }
}