/* hygge.css */
.hygge-container {
    max-width: 600px;
    margin: 0 auto;
    color: #1f2937;
    padding: 1rem;
    text-align: center;
}

.hygge-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.hygge-card:hover {
    transform: translateY(-5px);
}

.hygge-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.hygge-quote {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #111827;
    margin-bottom: 2rem;
    min-height: 80px;
}

.hygge-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-draw {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-draw:hover {
    background: #059669;
}

.btn-fav {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #ef4444;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.btn-fav:hover {
    background: #fef2f2;
}

.favorites-section {
    margin-top: 3rem;
    text-align: left;
}

.fav-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fav-list {
    list-style: none;
    padding: 0;
}

.fav-item {
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fav-item:first-child {
    border-top: 1px solid #f3f4f6;
}

.fav-remove {
    color: #9ca3af;
    cursor: pointer;
    margin-left: 1rem;
}

.fav-remove:hover {
    color: #ef4444;
}