.shop-the-look {
    padding: 0 0 64px;
}

.shop-the-look__header {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: left;
}

.shop-the-look__title {
    margin: 0 0 12px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #212121;
}

.shop-the-look__subtitle {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.shop-the-look__subtitle p {
    margin: 0;
}

.lookbook {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    max-width: 1664px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

.panel {
    position: relative;
    flex: 1;
    min-width: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.panel__photo {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.panel:hover .panel__photo {
    transform: scale(1.025);
}

.dot {
    position: absolute;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: #f8ab12;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    animation: eg-stl-pulse 2.5s infinite ease-in-out;
    z-index: 10;
    box-shadow:
        0 0 0 6px rgba(255, 165, 0, 0.4),
        0 0 0 12px rgba(255, 165, 0, 0.2);
}

.dot:hover,
.dot.active {
    background: #f8f8f8;
    border: 3px solid #f8ab12;
    transform: translate(-50%, -50%) scale(1.15);
}

@keyframes eg-stl-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 6px rgba(255, 165, 0, 0.4),
            0 0 0 12px rgba(255, 165, 0, 0.2);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(255, 165, 0, 0.5),
            0 0 0 15px rgba(255, 165, 0, 0.3);
    }
}

.product-card {
    position: absolute;
    background: #f8f8f8;
    border-radius: 16px;
    padding: 6px;
    display: flex;
    align-items: stretch;
    gap: 9px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 20;
    width: 294px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.product-card__image {
    border-radius: 10px;
    background: #eaeff0;
    flex: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 90px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__info {
    flex: 0.61;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 12px 24px 13px 0;
}

.product-card__price,
.product-card__name,
.product-card__brand {
    font-family: Helvetica, Arial, sans-serif;
    color: #212121;
    line-height: 1.3;
}

.product-card__price {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-card__name {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card__brand {
    font-size: 11px;
    font-weight: 400;
}

.product-card__cta {
    margin-top: 5px;
    display: inline-block;
    background: #f8ab12;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    width: fit-content;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.product-card__cta:hover {
    background: #d4891a;
    color: #fff;
}

@media screen and (max-width: 998px) {
    .lookbook > .panel {
        flex: 0 1 calc((100% - 22px) / 2);
        min-width: 280px;
    }

    .panel__photo {
        height: 560px;
    }
}

@media screen and (max-width: 640px) {
    .lookbook > .panel {
        flex: 1 1 100%;
    }

    .shop-the-look__title {
        font-size: 32px;
    }

    .product-card {
        width: min(294px, calc(100% - 32px));
    }
}
