/* ═══════════════════════════════════════ */
/*   LOYALTY CARD — PREMIUM DARK GLASS     */
/* ═══════════════════════════════════════ */

.card-loyalty {
    background: linear-gradient(
        145deg,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(28, 28, 28, 0.9) 50%,
        rgba(18, 18, 18, 0.95) 100%
    ) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 3px solid #d4af37 !important;
    border-radius: 20px !important;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.card-loyalty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 0%,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.card-loyalty:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #fcf6ba !important;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Размер в сетке */
.row-bottom .card-loyalty {
    flex: 0 0 220px !important;
    width: 220px !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
}

/* Inner container — centered */
.loyalty-glass-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 16px 18px;
    position: relative;
    z-index: 1;
}

/* ═══ HEADER ═══ */
.loyalty-glass-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.loyalty-glass-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-diamond-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.loyalty-glass-brand {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.loyalty-glass-vip {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ═══ DIVIDERS ═══ */
.loyalty-glass-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 20%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent 100%
    );
    margin: 12px 0;
}

.loyalty-glass-divider.dashed {
    background: none;
    border: none;
    height: 1px;
    position: relative;
    margin: 12px 0;
}

.loyalty-glass-divider.dashed::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

/* ═══ BENEFITS LIST ═══ */
.loyalty-glass-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2px 0;
    width: 100%;
}

.loyalty-glass-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.loyalty-glass-item:hover {
    transform: translateX(6px);
}

.loyalty-glass-item:hover .lg-icon {
    color: #d4af37;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.lg-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lg-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.lg-text strong {
    color: #d4af37;
    font-weight: 700;
}

/* ═══ CTA BUTTON ═══ */
.loyalty-glass-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
}

.card-loyalty:hover .loyalty-glass-btn {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.card-loyalty:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
