/* 免費算命頁  */
/* 標題加粗 */
.page-fortune-free .section-header h1.h2 {
    color: #520472 !important;
    font-weight: 800;
    text-shadow: none;
}

/* 只有在這一頁，麵包屑導覽的字體才會調整 */
.page-fortune-free .breadcrumb-item a {
    font-size: 0.95rem;
    color: #ccc;
}

.free-step-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    padding: 40px;
    margin-bottom: 30px;
    transition: 0.3s;
}
.free-step-card:hover {
    box-shadow: 0 15px 40px rgba(82, 4, 114, 0.08);
}
.step-number {
    width: 40px;
    height: 40px;
    background: #520472;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
}
.img-mockup {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    margin: 20px 0;
}
.feature-highlight {
    background: #fffdf5;
    border-left: 5px solid #FF0000;
    padding: 25px;
    border-radius: 0 15px 15px 0;
}
.text-purple-dark { color: #3a0351; font-weight: 700; }
.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    color: #333 !important;
    font-weight: 800;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* 讓數字圓圈更圓、更精緻 */
.step-number-circle {
    width: 32px;
    height: 32px;
    background: #520472;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0; /* 防止圓圈被擠壓變形 */
}

/* 增加圖片容器的質感 */
.img-container img {
    transition: 0.3s;
    cursor: zoom-in;
}
.img-container img:hover {
    transform: scale(1.02);
}