.deal-card {
    height: 100%;
}

.deal-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    height: 100%;
    padding: 16px;
    
    border-radius: 12px;
    background: #f9fbfc;
    border: 1px solid #e6eaef;
    
    text-decoration: none;
    color: inherit;
    
    transition: all 0.2s ease;
}

.deal-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom:10px;
}

.deal-logo {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e6eaef;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.deal-shop {
    font-size:14px;
    font-weight:500;
    color:#374151;
    line-height:1.3;
    max-height:38px;
    overflow:hidden;
}

.deal-main {
    margin: 12px 0;
}

.deal-discount {
    font-size: 28px;
    font-weight: 800;
    color: #177c91;
    line-height: 1;
    
    letter-spacing: -0.5px;
}

.deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.deal-badge-expire {
    font-size: 11px;
    color: #d9534f;
    background: rgba(217,83,79,0.1);
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.deal-badge-days-left {
    font-size: 11px;
    color: #856404;
    background: rgba(255, 193, 7, 0.18);
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.deal-badge-neutral {
    font-size: 11px;
    color: #6b7280;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.deal-cta {
    white-space: nowrap;
    color:white;
    padding:6px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    background:#1f8aa0;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    display:flex;
    align-items:center;
    gap:5px;
    flex-shrink:0;
}


.deal-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #ffffff;
}

.deal-card-link:hover .deal-discount {
    color: #1498a5;
}

.deal-card-link:hover{
    text-decoration: underline;
}