.premium-shop {
    padding: 120px 0;
    background:
        radial-gradient(circle at top, rgba(255,105,180,0.08), transparent 60%),
        #090911;
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.premium-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-title span {
    color: #ff8bd6;
    text-shadow: 0 0 20px rgba(255,139,214,0.4);
}

.premium-shop__items {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.premium-card {
    width: 350px;
    padding: 35px;
    border-radius: 28px;
    position: relative;
    overflow: visible !important;

    background: rgba(20, 20, 35, 0.88);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 30px rgba(255,105,180,0.08),
        inset 0 0 20px rgba(255,255,255,0.02);

    text-align: center;
    transition: 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0 0 60px rgba(255,105,180,0.22),
        0 0 100px rgba(168,85,247,0.12);
}

.premium-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 8px 14px;
    border-radius: 12px;

    background: linear-gradient(90deg, #ff8bd6, #a855f7);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.premium-card img {
    width: 170px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}

.premium-card__name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.premium-card__desc {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.premium-card__price {
    font-size: 36px;
    font-weight: 700;
    color: #ff8bd6;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255,139,214,0.25);
}

.premium-card__btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 16px;

    background: linear-gradient(90deg, #ff8bd6, #a855f7);

    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    transition: 0.3s;
}

.premium-card__btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(255,105,180,0.35);
}

/* ОБЯЗАТЕЛЬНО */
.premium-card {
    position: relative;
    overflow: visible !important;
}

/* ВСПЛЫВАЮЩЕЕ ОКНО ПОВЕРХ ВСЕГО */
/* popup следует за курсором */
.loot-window {
    position: fixed;

    width: 380px;
    padding: 28px;
    border-radius: 18px;
	top: 50%;
	right: 40%;
	transform: translate(-50%, -50%);

    background: linear-gradient(
        180deg,
        rgba(25, 12, 4, 0.97),
        rgba(10, 6, 2, 0.97)
    );

    border: 1px solid rgba(255, 180, 70, 0.55);

    box-shadow:
        0 0 35px rgba(255, 170, 50, 0.15),
        inset 0 0 25px rgba(255, 200, 100, 0.05);

    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    z-index: 999999;
    pointer-events: none;

    transition: opacity 0.2s ease;
}

/* показать */
.premium-card:hover .loot-window {
    opacity: 1;
    visibility: visible;
}

/* ТЕМНЫЙ ФОН ПОД POPUP */
.loot-window::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* ПОКАЗ ПРИ HOVER */
.premium-card:hover .loot-window {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.loot-window__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc33;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ITEMS */
.loot-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);

    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
}

.loot-item span {
    width: 78%;
}

.loot-item b {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.loot-item:hover {
    color: #ffd76a;
    padding-left: 6px;
    transition: 0.3s;
}

