/* ============================================
   到位（Obtain）租客端 — 首頁專用樣式
   ============================================ */

/* -- 會員卡片 -- */
.vip-card {
    background: linear-gradient(135deg, #a89f91 0%, var(--app-primary) 100%);
    color: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin: 0 1.25rem 1.5rem;
    box-shadow: 0 8px 16px rgba(149, 140, 123, 0.25);
    position: relative;
    overflow: hidden;
}

/* -- 快捷按鈕區 -- */
.action-grid {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--app-text);
    gap: 0.5rem;
    cursor: pointer;
}

.action-icon-box {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 1px solid #EBE6DF;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--app-primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.1s;
}

.action-item:active .action-icon-box {
    transform: scale(0.95);
    background-color: #f8f9fa;
}

.action-label {
    font-size: 0.75rem;
    font-weight: 500;
}
