.complete-the-look-section {
    border-top: 1px solid #D9D3CE;
    padding: 20px 0 0;
}

.look-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.look-product {
    background: #F5F5F5;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 480px) {
    .look-product {
        flex-direction: column;
    }
}

.look-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.look-product .product-image {
    width: 90px;
    height: 90px;
    flex: 0 0 auto;
}

.look-product .product-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.product-info {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 480px) {
    .product-info {
        align-items: end;
    }
}

.look-product .product-info h4 {
    line-height: 1.3;
    margin-bottom: 20px;
}

.look-product .product-info h4 a {
    text-decoration: none;
}

.look-product .product-info .price * {
    font-size: 18px !important;
}
.look-product .product-info .price ins * {
    font-size: 19px !important;
}

.look-product .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2C1200;
    text-indent: -9999px;
    flex: 0 0 auto;
}
@media (min-width: 1200px) {
    .look-product .button {
        width: 48px;
        height: 48px;
    }
}
.look-product .button svg {
    width: 24px;
    height: 24px;
    transition: transform .3s ease-in-out;
}


.look-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.look-actions .add-all-to-cart {
    padding: 12px 24px;
    font-size: 1.1em;
}

.total-price {
    font-size: 1.2em;
    font-weight: bold;
}

.total-price .price-amount {
    color: #0073aa;
}

@media (max-width: 768px) {
    .look-products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .look-actions {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .look-actions .add-all-to-cart {
        width: 100%;
    }
}

/* Loading state */
.complete-the-look-section .loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success message */
.complete-the-look-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}