/* Reward Join Card (breadcumb) */
.reward-join-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 360px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin-left: -8px;
    @media (max-width: 991px) {
        margin-left: 0;
        padding: 16px;
    }
}
.reward-join-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-family: "DM Sans";
    @media (max-width: 991px) {
        font-size: 15px;
    }
}
.reward-join-desc {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 14px;
    line-height: normal;
    @media (max-width: 991px) {
        font-size: 0.875rem;
    }
}
.reward-join-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    @media (max-width: 991px) {
        justify-content: center;
        align-items: center;
    }
}
.reward-btn-join {
    background: #9b1b3a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s;
}
.reward-btn-join:hover {
    background: #7a1530;
    color: #fff;
}
.reward-btn-signin {
    background: #fff;
    color: #9b1b3a;
    border: 2px solid #9b1b3a;
    border-radius: 8px;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.reward-btn-signin:hover {
    background: #9b1b3a;
    color: #fff;
}

.shop-page-wrap {
    background: #fff;
    min-height: 100vh;
    padding: 48px 0 64px;
    @media (max-width: 991px) {
        padding: 30px 0 60px 0;
    }
}
.shop-page-wrap .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}
.shop-page-wrap .sec-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    @media (max-width: 768px) {
        margin-bottom: 8px;
    }
}
.shop-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 32px;
}
.shop-sort-bar .result-count {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}
.shop-sort-bar .orderby {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    outline: none;
}
.shop-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    @media (max-width: 768px) {
        border: transparent;
        border-radius: 0;
    }
}
.shop-product-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-2px);
    @media (max-width: 768px) {
        transform: translateY(0);
        border-color: #e8e8e8;
        box-shadow: none;
    }
}
.shop-product-card .product-img {
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-product-card .product-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
}
.shop-product-card:hover .product-img img {
    transform: scale(1.04);
    @media (max-width: 768px) {
        transform: scale(1);
    }
}
.shop-product-card .product-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.2s ease;
}
.shop-product-card:hover .product-action {
    opacity: 1;
    transform: translateY(0);
}
.shop-product-card .product-action a {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 4px;
    cursor: pointer;
    background: #fff;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.shop-product-card .product-action a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
.shop-product-card .product-action a .action-text {
    display: block;
}
.shop-product-card .product-action a .icon {
    display: none;
}
.action-button-mobile {
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: 40px;
    height: 40px;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}
.action-button-mobile:hover {
    color: var(--white-color);
}
.shop-product-card .product-info {
    padding: 14px 16px 16px;
    border-top: 1px solid #f0f0f0;
    @media (max-width: 768px) {
        padding-inline: 4px;
        padding-block: 8px;
    }
}
.shop-product-card .product-info .product-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    @media (max-width: 768px) {
        margin-bottom: 0;
    }
}
.shop-product-card .product-info .product-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}
/* Addon / VIP redeem card */
.addon-card .product-action {
    display: none;
}
.product-redeem-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.product-redeem-btn:hover:not(:disabled) {
    background: #333;
}
.product-redeem-btn.disabled,
.product-redeem-btn:disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}
