.anik-coupon-card { display: flex; align-items: flex-start; border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; margin-bottom: 20px; background: #fff; }
.anik-coupon-image { flex: 0 0 150px; margin-right: 20px; }
.anik-coupon-image img { width: 150px; height: 150px; object-fit: cover; border-radius: 5px; }
.anik-coupon-main { flex: 1; display: flex; flex-direction: column; }
.anik-coupon-title { font-size: 1.3em; margin: 0 0 8px; }
.anik-coupon-description { color: #555; margin-bottom: 16px; flex-grow: 1; }
.anik-coupon-description p:last-child { margin-bottom: 0; }
.anik-coupon-actions { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.anik-coupon-code-area { position: relative; }
.anik-reveal-btn, .anik-revealed-code { border: 2px dashed #0073aa; border-radius: 5px; padding: 8px 12px; font-weight: bold; }
.anik-reveal-btn { background-color: #f0f8ff; color: #0073aa; cursor: pointer; }
.anik-revealed-code { background-color: #f9f9f9; display: flex; align-items: center; }
.the-code { color: #d9534f; font-size: 1.1em; margin-right: 10px; }
.anik-copy-btn { background-color: #0073aa; color: #fff; border: none; border-radius: 4px; padding: 4px 8px; cursor: pointer; font-size: 0.9em; }
.anik-visit-site-btn { background-color: #28a745; color: #fff; padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; }
.anik-visit-site-btn:hover { background-color: #218838; }
@media (max-width: 768px) {
    .anik-coupon-card { flex-direction: column; }
    .anik-coupon-image { margin: 0 auto 15px; }
    .anik-coupon-main { width: 100%; }
    .anik-coupon-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .anik-coupon-code-area, .anik-visit-site-btn { width: 100%; text-align: center; box-sizing: border-box; }
}