.card {
    border: none;
    border-radius: 1.5rem;
}
.list-group-item {
    border: none;
    background: transparent;
}
.btn-primary {
    background: #15639b;
    border: none;
}
.btn-primary:hover {
    background: #1d72c7;
}
/* 共用品牌色 */
.text-brand {
    color: #15639b;
}

/* 購物車 icon 尺寸（原 inline: 1.5rem） */
.icon-cart {
    font-size: 1.5rem;
}

/* Loading Overlay（原本全在 inline） */
#loadingOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none; /* 預設隱藏，與原行為一致 */
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
}

/* 置中容器（原 inline: absolute + transform） */
.loading-overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 大尺寸轉圈（原 inline: width/height: 3rem） */
.spinner-lg {
    width: 3rem;
    height: 3rem;
}
