/* Digital Loyalty Card - Bliss & Seed Archive Elite */

.loyalty-card-container {
    background: var(--luxury-black);
    padding: 3rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    margin: 2rem auto;
    color: var(--luxury-white);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.loyalty-card-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.loyalty-header {
    margin-bottom: 2rem;
}

.loyalty-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stamp-slot {
    aspect-ratio: 1;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stamp-slot.stamped {
    border: 2px solid var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
}

.stamp-icon {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--luxury-gold);
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stamp-slot.stamped .stamp-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.reward-slot {
    grid-column: span 3;
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reward-slot.unlocked {
    opacity: 1;
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.reward-status {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.reward-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reward-code-box {
    background: #000;
    padding: 1rem;
    border: 1px solid var(--luxury-gold);
    color: var(--luxury-gold);
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    display: none;
    margin-top: 1rem;
}

.unlocked .reward-code-box {
    display: block;
}

.loyalty-footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* Animations */
@keyframes stampPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.stamp-slot.new-stamp {
    animation: stampPulse 0.6s ease;
}