@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
.coupon-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); position: relative; font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; }
.coupon-card:hover { transform: translateY(-6px); border-color: #000000; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.coupon-img-wrapper { position: relative; width: 100%; aspect-ratio: 400/240; overflow: hidden; background: #F8FAFC; border-bottom: 1px solid #F1F5F9; }
.coupon-img-wrapper::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to top, rgba(0,0,0,0.03), transparent); pointer-events: none; }
.coupon-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.coupon-card:hover .coupon-img-wrapper img { transform: scale(1.08); }
.badge-verified { position: absolute; top: 12px; left: 12px; background: #000000; color: #D4FF00; padding: 6px 12px; font-size: 12px; font-weight: 800; border-radius: 30px; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 5; text-transform: uppercase; letter-spacing: 0.5px; }
.brand-logo-container { position: relative; height: 0; z-index: 10; }
.brand-logo-img, .brand-logo-img-category { position: absolute; background: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 1px solid #E2E8F0; object-fit: contain; padding: 6px; left: 20px; transition: transform 0.3s ease, border-color 0.3s ease; }
.brand-logo-img { width: 60px; height: 60px; top: -30px; }
.brand-logo-img-category { width: 65px; height: 65px; top: -32px; }
.coupon-card:hover .brand-logo-img, .coupon-card:hover .brand-logo-img-category { transform: translateY(-4px); border-color: #000000; }
.coupon-body { padding: 40px 20px 0 20px; display: flex; flex-direction: column; }
.coupon-body .title { font-size: 14px; color: #475569; margin-bottom: 8px; line-height: 1.5; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.discount-title { font-size: 24px; font-weight: 900; color: #000000; letter-spacing: -0.5px; line-height: 1.2; }
.brand-name { margin-top: auto; margin-bottom: 16px; display: inline-flex; }
.brand-name a { background: #FFFFFF; color: #000000 !important; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 8px; border: 1px solid #E2E8F0; border-left: 4px solid #D4FF00; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.brand-name a:hover { background: #F8FAFC; border-color: #000000; }
.brand-name a i { font-size: 14px; color: #000000; }
.coupon-footer { padding: 0 20px 20px 20px; background: transparent; }
.btn-get-deal { background-color: #000000; color: #D4FF00; border: 2px solid #000000; padding: 12px 0; border-radius: 12px !important; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-get-deal:hover { background-color: #D4FF00; color: #000000; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212, 255, 0, 0.3); }