/* Compre o Look Styles */

.look-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.look-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.look-point {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.look-point:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 11;
}

.look-point::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

/* Modal Styles */
.look-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.look-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
}

.look-close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
}

.look-close:hover,
.look-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.look-product-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.look-product-item:last-child {
    border-bottom: none;
}

.look-product-image {
    width: 80px;
    margin-right: 15px;
}

.look-product-image img {
    max-width: 100%;
}

.look-product-info {
    flex-grow: 1;
}

.look-product-name {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.look-product-price {
    color: #333;
    font-weight: bold;
}

.look-product-action {
    margin-left: 15px;
}