/* ═══════════════════════════════════════
   EezyPrint Look Book Builder
   ═══════════════════════════════════════ */

.epai-lookbook {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: none;
}

.epai-lookbook--open {
    display: flex;
    justify-content: flex-end;
}

.epai-lookbook__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.epai-lookbook__panel {
    position: relative;
    width: 380px;
    max-width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111d2e 0%, #0d1520 100%);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.epai-lookbook__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.epai-lookbook__title {
    font-family: var(--eezy-font-heading, 'Eagle-Bold', sans-serif);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    flex: 1;
}

.epai-lookbook__count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.epai-lookbook__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 22px;
    padding: 4px;
}

.epai-lookbook__items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.epai-lookbook__empty {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 40px 20px;
    font-size: 13px;
}

.epai-lookbook__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
    cursor: grab;
}

.epai-lookbook__item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.epai-lookbook__item-img {
    width: 56px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    background: #111;
}

.epai-lookbook__item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.epai-lookbook__item-brand {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--eezy-primary, #00A7E1);
    font-family: var(--eezy-font-heading, sans-serif);
}

.epai-lookbook__item-name {
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
}

.epai-lookbook__item-price {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.epai-lookbook__item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}

.epai-lookbook__item-remove:hover {
    color: #f43f5e;
}

.epai-lookbook__footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 8px;
}

.epai-lookbook__btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--eezy-font-heading, sans-serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
}

.epai-lookbook__btn--save {
    background: var(--eezy-primary, #00A7E1);
    color: #fff;
}

.epai-lookbook__btn--save:hover {
    background: var(--eezy-primary-dark, #0086B4);
}

.epai-lookbook__btn--share {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.epai-lookbook__btn--share:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.epai-lookbook__notice {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    padding: 12px 16px;
    background: rgba(0, 167, 225, 0.15);
    border: 1px solid rgba(0, 167, 225, 0.3);
    color: var(--eezy-primary, #00A7E1);
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    animation: epai-notice-in 0.2s ease-out;
}

@keyframes epai-notice-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
