/* ==========================================================================
   Order Bump (增购模块) 样式
   ========================================================================== */
.auras-order-bump-wrap {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auras-ob-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.auras-ob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.auras-ob-card {
    cursor: pointer;
    display: block;
    margin: 0;
}

/* 隐藏原生 Checkbox */
.auras-ob-checkbox {
    display: none !important;
}

.auras-ob-card-inner {
    border: 2px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 当 checkbox 被选中时，利用 CSS 伪类点亮外框 */
.auras-ob-checkbox:checked + .auras-ob-card-inner {
    border-color: #d15c5c; /* 替换为你的品牌红/绿 */
    background-color: #fdfaf9;
}

.auras-ob-img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}

.auras-ob-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.auras-ob-name {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.3;
    margin-bottom: 5px;
}

.auras-ob-price {
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
}

.auras-ob-price del {
    color: #999;
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 4px;
}

/* 选中状态的小对勾指示器 */
.auras-ob-check-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background-color: #d15c5c;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}
.auras-ob-check-indicator::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auras-ob-checkbox:checked + .auras-ob-card-inner .auras-ob-check-indicator {
    opacity: 1;
    transform: scale(1);
}