/* PC list empty state — products / videos */
.product-list > .pc-list-empty,
.grid-4 > .pc-list-empty,
#video-grid > .pc-list-empty {
    grid-column: 1 / -1;
}

.pc-list-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px 48px;
    text-align: center;
}

.pc-list-empty__card {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 44px 36px 32px;
    background: linear-gradient(180deg, #fff 0%, #fdfbf5 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 18px;
    box-shadow: 0 14px 44px rgba(201, 168, 76, 0.1), 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pc-list-empty__card::before,
.pc-list-empty__card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pc-list-empty__card::before {
    top: -55px;
    right: -55px;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 70%);
}

.pc-list-empty__card::after {
    bottom: -45px;
    left: -45px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(154, 123, 47, 0.1) 0%, transparent 70%);
}

.pc-list-empty__deco {
    position: absolute;
    z-index: 2;
    font-size: 20px;
    line-height: 1;
    opacity: 0.85;
    animation: pcListEmptyFloat 3s ease-in-out infinite;
    pointer-events: none;
}

.pc-list-empty__deco--1 { top: 18px; left: 22px; animation-delay: 0s; }
.pc-list-empty__deco--2 { top: 28px; right: 26px; animation-delay: .8s; font-size: 16px; }
.pc-list-empty__deco--3 { bottom: 22px; right: 36px; animation-delay: 1.4s; font-size: 24px; }

@keyframes pcListEmptyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.pc-list-empty__illustration {
    position: relative;
    z-index: 1;
    width: 108px;
    height: 108px;
    margin: 0 auto 22px;
}

.pc-list-empty__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #faf3e0 0%, #f5e6c4 100%);
    animation: pcListEmptyPulse 2.5s ease-in-out infinite;
}

.pc-list-empty__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    color: #C9A84C;
}

@keyframes pcListEmptyPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.92; }
}

.pc-list-empty__title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

.pc-list-empty__desc {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 0 auto 26px;
    font-size: 14px;
    line-height: 1.65;
    color: #888;
}

.pc-list-empty__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 210px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #C9A84C, #9A7B2F);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.32);
    transition: transform .15s, box-shadow .15s, opacity .15s;
}

.pc-list-empty__btn:hover {
    opacity: .95;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
    color: #fff;
}

.pc-list-empty__tips {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px dashed rgba(201, 168, 76, 0.25);
}

.pc-list-empty__tip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 120px;
}

.pc-list-empty__tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #faf6eb;
    color: #C9A84C;
}

.pc-list-empty__tip span {
    font-size: 12px;
    line-height: 1.35;
    color: #666;
}

.pc-list-empty__shortcuts {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    margin-top: 14px;
}

.pc-list-empty__shortcut {
    flex: 1;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    transition: border-color .15s, background .15s, color .15s;
}

.pc-list-empty__shortcut:hover {
    background: #faf6eb;
    border-color: rgba(201, 168, 76, 0.45);
    color: #9A7B2F;
}

@media (max-width: 768px) {
    .pc-list-empty { padding: 24px 10px 36px; }
    .pc-list-empty__card { padding: 32px 20px 24px; border-radius: 14px; }
    .pc-list-empty__illustration { width: 92px; height: 92px; }
    .pc-list-empty__icon { width: 92px; height: 92px; }
    .pc-list-empty__icon svg { width: 46px; height: 46px; }
    .pc-list-empty__title { font-size: 18px; }
    .pc-list-empty__desc { font-size: 13px; margin-bottom: 22px; }
    .pc-list-empty__tips { gap: 10px; }
    .pc-list-empty__tip { max-width: 96px; }
    .pc-list-empty__tip span { font-size: 11px; }
    .pc-list-empty__shortcuts { flex-direction: column; }
}
