/*
Theme Name: DealsLite
Theme URI:  https://example.com/
Author:     ChatGPT for User
Author URI: https://example.com/
Description: Lightweight WordPress theme optimized for deals/coupons sites. Works with Elementor and ACF/CPT UI.
Version:    1.0
License:    GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, responsive, deals, coupons, elementor
Text Domain: dealslite
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root{
  --accent:#ff5722;
  --muted:#6b7280;
  --card-bg:#ffffff;
  --card-border:#e6e6e6;
}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;}
a{color:var(--accent);text-decoration:none}
.site-header{background:#fff;border-bottom:1px solid #f1f1f1;padding:18px 24px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.site-logo{font-weight:700;color:#111;font-size:20px}
.site-search input{padding:8px 10px;border:1px solid #ddd;border-radius:6px}
.container{max-width:1100px;margin:24px auto;padding:0 16px}
.deals-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px}
.deal-card{border:1px solid var(--card-border);border-radius:8px;overflow:hidden;background:var(--card-bg);display:flex;flex-direction:column;box-shadow:0 1px 4px rgba(0,0,0,0.03)}
.deal-media img{width:100%;height:180px;object-fit:cover;display:block}
.deal-body{padding:12px;flex:1;display:flex;flex-direction:column}
.deal-title{font-size:16px;margin:6px 0;color:#111}
.deal-desc{font-size:13px;color:var(--muted);margin-bottom:8px;flex:1}
.deal-meta{display:flex;gap:8px;align-items:center;font-size:13px;color:var(--muted)}
.deal-cta{display:flex;align-items:center;justify-content:space-between;margin-top:10px}
.btn-get-deal{background:var(--accent);color:#fff;padding:8px 12px;border-radius:6px;border:none;cursor:pointer}
.coupon-code{background:#f7f7f7;padding:6px 8px;border-radius:6px;font-weight:600}
.site-footer{padding:18px 24px;background:#fafafa;border-top:1px solid #eee;margin-top:40px}
@media(max-width:600px){.deal-media img{height:140px}}
