/**
 * Paid Flowers Styling
 * Special styling for flowers given by pilgrims ($2 donations)
 */

/* Garden Page - Paid Flower Cards */
.flower-card.paid-flower {
    background: linear-gradient(135deg, rgba(205, 184, 125, 0.08) 0%, rgba(139, 69, 19, 0.05) 100%);
    border: 2px solid rgba(205, 184, 125, 0.4);
    box-shadow: 0 0 20px rgba(205, 184, 125, 0.1);
}

.flower-card.paid-flower:hover {
    border-color: #CDB87D;
    box-shadow: 0 0 30px rgba(205, 184, 125, 0.25);
}

.paid-flower-icon {
    font-size: 4rem;
    text-align: center;
    filter: drop-shadow(0 5px 15px rgba(205, 184, 125, 0.3));
    animation: gentlePulse 3s ease-in-out infinite;
}

/* Paid flower image in Garden cards */
.paid-flower-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    filter: sepia(0.1) contrast(1.05);
    transition: all 0.3s ease;
}

.flower-card.paid-flower:hover .paid-flower-img {
    filter: sepia(0) contrast(1.1);
    transform: scale(1.02);
}

/* Flower image in Fragment cards */
.fragment-flower-img {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(205, 184, 125, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Fragments Page - Paid Fragment Cards */
.fragment-card.paid-fragment {
    background: linear-gradient(135deg, rgba(205, 184, 125, 0.12) 0%, rgba(139, 69, 19, 0.08) 100%);
    border: 2px solid rgba(205, 184, 125, 0.5);
    position: relative;
}

.fragment-card.paid-fragment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(205, 184, 125, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.fragment-flower-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

/* Give Flower Section on Garden Page */
.give-flower-section {
    text-align: center;
    padding: clamp(30px, 6vw, 60px);
    margin: 60px 0;
    background: linear-gradient(135deg, rgba(205, 184, 125, 0.05) 0%, rgba(139, 69, 19, 0.03) 100%);
    border: 1px dashed rgba(205, 184, 125, 0.3);
    border-radius: 8px;
}

.give-flower-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: #CDB87D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.give-flower-section p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    opacity: 0.8;
}

.give-flower-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #CDB87D 0%, #8B4513 100%);
    color: #0a0806;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.give-flower-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(205, 184, 125, 0.4);
}

/* Paid Flowers Grid Section */
.paid-flowers-section {
    margin: 60px 0;
}

.paid-flowers-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #CDB87D;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.paid-flowers-section .section-subtitle {
    text-align: center;
    font-family: 'Shadows Into Light', cursive;
    color: #8B4513;
    margin-bottom: 2rem;
}

#paid-flowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 40px);
}

/* Empty state */
.no-paid-flowers {
    text-align: center;
    padding: 40px;
    opacity: 0.6;
    font-style: italic;
}