.cb-card {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 20px;
}

.cb-content {
    flex: 1;
}

.cb-title {
    margin: 0 0 4px;
    font-size: 18px;
}

.cb-meta-line {
    font-size: 11px;
    margin-bottom: 8px;
    color: #666;
}

.cb-type {
    font-weight: 600;
    margin-right: 8px;
    color: #1e73be;
}

.cb-verify {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 5px;
}

.cb-verify.verified {
    background: #e6f4ea;
    color: #1e7e34;
    cursor: help;
}

.cb-verify.unverified {
    background: #f1f1f1;
    color: #777;
}

.cb-desc,
.cb-terms {
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.cb-desc,
.cb-terms {
    font-size: 12px;
    margin-top: 6px;
}

.cb-terms {
    font-size: 10px;
    color: #777;
}

.cb-toggle {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    color: #1e73be;
    cursor: pointer;
}

.cb-action {
    text-align: right;
    min-width: 140px;
}

.cb-code-btn,
.cb-deal-btn {
    background: #1e73be;
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cb-code-btn:hover,
.cb-deal-btn:hover {
    background: #155d94;
}

.cb-right-info {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

.cb-expired {
    opacity: 0.6;
}

/*
 * 
 */

.cb-brand-coupons .cb-coupon{
    border:1px solid #e5e5e5;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
    background:#ffffff;
    transition:0.3s;
}

.cb-coupon:hover{
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.cb-expired{
    opacity:0.6;
}

.cb-coupon-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cb-type{
    background:#eee;
    padding:3px 8px;
    font-size:12px;
    border-radius:4px;
    margin-left:10px;
}

.cb-badge{
    font-size:12px;
    padding:4px 8px;
    border-radius:4px;
}

.cb-badge.verified{
    background:#e6f8ec;
    color:#1e7e34;
}

.cb-badge.not-verified{
    background:#fff3cd;
    color:#856404;
}

.cb-badge.expired{
    background:#f8d7da;
    color:#721c24;
}

.cb-code-box{
    display:flex;
    align-items:center;
    margin-top:10px;
}

.cb-coupon-code{
    font-weight:bold;
    font-size:18px;
    background:#f1f1f1;
    padding:8px 12px;
    border-radius:6px;
    margin-right:10px;
}

.cb-copy-btn{
    background:#0073aa;
    color:#fff;
    border:none;
    padding:10px 16px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.cb-copy-btn:hover{
    background:#005177;
}

.cb-copy-btn.copied{
    background:#28a745;
}

.cb-deal-btn{
    display:inline-block;
    background:#0073aa;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
}

.cb-deal-btn:hover{
    background:#005177;
}