/* Shop This Look Section */
.lookbook-section {
    padding: 80px 15px; /* Vertical spacing and safety margins for mobile */
    background: transparent;
    width: 100%;
}

.lookbook-layout {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1140px; /* Matches Bootstrap standard container */
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

.lookbook-image-col {
    width: 58.333333%; /* Back to the original 7-column layout */
    display: flex;
}

.lookbook-content-col {
    width: 41.666667%; /* Back to the original 5-column layout */
    display: flex;
    background-color: #f8f9fa;
}

.lookbook-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.lookbook-image img {
    width: 100%;
    height: auto;
    max-height: 750px; /* Limits tall images without forcing wide images to be padded */
    object-fit: contain;
}

.lookbook-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px; /* Generous padding inside the content area */
    width: 100%;
}

.lookbook-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
}

.lookbook-title {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lookbook-products {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.lookbook-products li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lookbook-products li:last-child {
    border-bottom: none;
}

.lookbook-product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    background: #f5f5f5;
}

.lookbook-product-info {
    flex: 1;
}

.lookbook-product-name {
    display: block;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.lookbook-product-name:hover {
    color: #b8860b;
}

.lookbook-product-price {
    font-size: 13px;
    color: #888;
}

.lookbook-product-price .sale {
    color: #c41e3a;
    margin-right: 8px;
}

.lookbook-product-price .original {
    text-decoration: line-through;
    color: #aaa;
}

.lookbook-cta {
    display: inline-block;
    color: #1a1a2e;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #1a1a2e;
    padding-bottom: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lookbook-cta:hover {
    letter-spacing: 2px;
    color: #1a1a2e;
}

@media (max-width: 991px) {
    .lookbook-image-col,
    .lookbook-content-col {
        width: 100%;
    }
    
    .lookbook-image img {
        height: auto;
        max-height: 500px;
    }

    .lookbook-content {
        padding: 40px 30px;
    }
    .lookbook-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .lookbook-section {
        padding: 40px 0;
    }
    .lookbook-image img {
        height: auto;
        max-height: 350px;
    }
    .lookbook-content {
        padding: 30px 20px;
    }
    .lookbook-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}
