* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.complete-look-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.complete-look-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 600px;
    transform: scale(0.75);
    transform-origin: center center;
}

.search-pill {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: absolute;
    height: 48px;
    top: -16px;
    z-index: 20;
}

.search-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.search-term {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-top: -2px;
}

.dashed-line {
    width: 2px;
    height: 50%;
    background-image: linear-gradient(to bottom, #ffffff 50%, transparent 50%);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.line-circle {
    width: 8px;
    height: 9px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

.product-card {
    border-radius: 16px;
    padding: 0 0.75rem;
    position: absolute;
    right: -90px;
    top: 0;
    height: 300px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex: 1;
    position: relative;
    top: 20px;
    opacity: 1;
    transition: opacity 0.15s ease-in-out, transform 0.2s ease-out;
}

.product-sku {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.persona-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    position: absolute;
    left: 40px;
    top: -30px;
    width: auto;
    z-index: 10;
    border: 4px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(180deg, #CA83A2 0%, #EDADC6 20%, #D2C9FB 40%, #8D77F7 60%, #4E70CC 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.persona-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.persona-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin: 0 0 .25rem 0;
}

.persona-details p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.persona-details p span {
    color: #FC4482;
}

.occasion-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: absolute;
    right: -80px;
    top: 40px;
    width: 240px;
    z-index: 10;
    border: 4px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(180deg, #CA83A2 0%, #EDADC6 20%, #D2C9FB 40%, #8D77F7 60%, #4E70CC 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.occasion-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.occasion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.occasion-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #888;
    font-weight: bold;
}

.tick-icon {
    flex-shrink: 0;
}

.styled-for-pill {
    background: white;
    padding: 0.7rem 1rem 0.75rem;
    border-radius: 16px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 11;
    width: fit-content;
    position: relative;
    top: 20px;
    border: 4px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(180deg, #CA83A2 0%, #EDADC6 20%, #D2C9FB 40%, #8D77F7 60%, #4E70CC 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.bottom-items {
    position: absolute;
    bottom: -60px;
    display: flex-column;
    justify-content: center;
    justify-items: center;
    gap: 1rem;
    z-index: 10;
}

.bottom-items .bottom-item-cards {
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.item-card {
    background: white;
    border-radius: 12px;
    padding: 0.25rem;
    width: 140px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.item-card2 {
    position: relative;
    top: 40px;
}

.item-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.circle-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    box-shadow: 0 0 20px 10px rgba(141, 119, 247, 0.3);
    filter: brightness(1.3) contrast(1.0) saturate(1.3);
}