/* ACKharido.com — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Noto+Sans:wght@400;500;600&display=swap');

:root {
  --blue: #0057D9;
  --blue-dark: #003FA3;
  --blue-light: #E8F0FE;
  --orange: #FF6B00;
  --orange-light: #FFF3E8;
  --gray-1: #F7F8FA;
  --gray-2: #EAECF0;
  --gray-3: #98A2B3;
  --gray-dark: #1A1A2E;
  --text: #1D2939;
  --text-light: #667085;
  --white: #ffffff;
  --green: #12B76A;
  --shadow: 0 2px 16px rgba(0,87,217,0.08);
  --shadow-hover: 0 8px 32px rgba(0,87,217,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Noto Sans', sans-serif; color: var(--text); background: var(--gray-1); line-height: 1.6; }
h1,h2,h3,h4 { font-family: 'Baloo 2', cursive; }

/* TOPBAR */
.topbar { background: var(--blue-dark); color: #fff; font-size: 13px; padding: 6px 0; text-align: center; }
.topbar strong { color: #FFD166; }

/* NAV */
nav { background: white; border-bottom: 2px solid var(--gray-2); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { font-family: 'Baloo 2', cursive; font-size: 26px; font-weight: 800; color: var(--blue); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.nav-search { flex: 1; max-width: 480px; display: flex; align-items: center; border: 2px solid var(--gray-2); border-radius: 50px; overflow: hidden; transition: border-color 0.2s; position: relative; }
.nav-search:focus-within { border-color: var(--blue); }
.nav-search input { flex: 1; border: none; outline: none; padding: 10px 16px; font-size: 14px; font-family: 'Noto Sans', sans-serif; background: transparent; }
.nav-search button { background: var(--blue); border: none; color: white; padding: 10px 20px; cursor: pointer; font-size: 16px; transition: background 0.2s; }
.nav-search button:hover { background: var(--blue-dark); }
.search-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 2px solid var(--gray-2); border-top: none; border-radius: 0 0 12px 12px; box-shadow: var(--shadow); display: none; z-index: 200; max-height: 300px; overflow-y: auto; }
.search-dropdown.show { display: block; }
.search-item { padding: 10px 16px; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-2); }
.search-item:hover { background: var(--blue-light); }
.search-item:last-child { border-bottom: none; }
.nav-links { display: flex; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--blue-light); color: var(--blue); }

/* FOOTER */
footer { background: var(--gray-dark); color: rgba(255,255,255,0.7); padding: 48px 20px 24px; margin-top: 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* BUTTONS */
.btn-amazon { background: #FF9900; color: white; border: none; border-radius: 8px; padding: 9px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Noto Sans', sans-serif; }
.btn-amazon:hover { background: #e68a00; }
.btn-flipkart { background: #2874F0; color: white; border: none; border-radius: 8px; padding: 9px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'Noto Sans', sans-serif; }
.btn-flipkart:hover { background: #1a5cd4; }

/* AC CARD */
.ac-card { background: white; border: 2px solid var(--gray-2); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; cursor: pointer; position: relative; text-decoration: none; color: inherit; display: block; }
.ac-card:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card-badge { position: absolute; top: 12px; left: 12px; color: white; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.3px; z-index: 2; }
.card-badge.green { background: #12B76A; }
.card-badge.orange { background: var(--orange); }
.card-badge.blue { background: var(--blue); }
.card-img { background: var(--gray-1); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; }
.compare-cb { position: absolute; top: 12px; right: 12px; background: white; border: 2px solid var(--gray-2); border-radius: 6px; padding: 4px 8px; font-size: 12px; font-weight: 600; color: var(--text-light); cursor: pointer; transition: all 0.2s; }
.compare-cb:hover, .compare-cb.added { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.card-body { padding: 16px; }
.card-brand { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; }
.card-name { font-size: 15px; font-weight: 700; color: var(--text); margin: 4px 0 8px; line-height: 1.3; }
.card-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-tag { background: var(--gray-1); border: 1px solid var(--gray-2); border-radius: 6px; padding: 3px 8px; font-size: 12px; color: var(--text-light); font-weight: 500; }
.spec-tag.star { background: #FFF8E1; border-color: #FFD166; color: #B54708; }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: #F79009; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--text-light); }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-main { font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 800; color: var(--text); }
.price-old { font-size: 14px; color: var(--gray-3); text-decoration: line-through; }
.price-off { font-size: 13px; font-weight: 700; color: #12B76A; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
