/*
Theme Name: Bazar by Bittu
Theme URI: https://bazarbybittu.in
Author: Bittu
Author URI: https://bazarbybittu.in
Description: A clean, Google-inspired professional WordPress theme for Bazar by Bittu — India's trusted digital asset marketplace.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bazarbybittu
Tags: business, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =====================================================
   GOOGLE SANS + ROBOTO IMPORT
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap');

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  --blue:       #1a73e8;
  --blue-dark:  #1765cc;
  --blue-light: #e8f0fe;
  --green:      #34a853;
  --green-light:#e6f4ea;
  --green-text: #137333;
  --red:        #ea4335;
  --red-light:  #fce8e6;
  --red-text:   #c5221f;
  --amber:      #fbbc05;
  --amber-light:#fef7e0;
  --amber-text: #b06000;
  --text-main:  #202124;
  --text-muted: #5f6368;
  --text-hint:  #80868b;
  --text-light: #9aa0a6;
  --border:     #e8eaed;
  --border-mid: #dadce0;
  --bg-white:   #ffffff;
  --bg-grey:    #f8f9fa;
  --bg-mid:     #f1f3f4;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(32,33,36,.12);
  --shadow-md:  0 2px 12px rgba(32,33,36,.15);
  --font-main:  'Google Sans', 'Roboto', system-ui, sans-serif;
  --max-w:      1060px;
}

/* =====================================================
   RESET + BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }
.btn-outline { background: var(--bg-white); color: var(--blue); border: 1px solid var(--border-mid); }
.btn-outline:hover { background: var(--bg-grey); text-decoration: none; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--bg-grey); text-decoration: none; }
.btn-ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); text-decoration: none; color: #fff; }
.btn-sm { font-size: 13px; padding: 8px 20px; }

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.eyebrow-blue   { color: var(--blue);       background: var(--blue-light); }
.eyebrow-green  { color: var(--green-text);  background: var(--green-light); }
.eyebrow-amber  { color: var(--amber-text);  background: var(--amber-light); }
.eyebrow-red    { color: var(--red-text);    background: var(--red-light); }

.section-title { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.section-desc  { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 36px; max-width: 540px; }

.bg-white { background: var(--bg-white); }
.bg-grey  { background: var(--bg-grey); }

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-left { display: flex; align-items: center; gap: 32px; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-mark {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.logo-mark .l1 { color: #4285F4; }
.logo-mark .l2 { color: #EA4335; }
.logo-mark .l3 { color: #FBBC05; }
.logo-mark .l4 { color: #4285F4; }
.logo-mark .l5 { color: #34A853; }
.logo-mark .l6 { color: #EA4335; }
.logo-pipe { width: 1px; height: 22px; background: var(--border); margin: 0 4px; }
.logo-sub { font-size: 16px; color: var(--text-muted); font-weight: 400; }

/* Nav links */
.main-navigation ul { display: flex; gap: 4px; }
.main-navigation ul li a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 24px;
  display: block;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  background: var(--bg-mid);
  color: var(--text-main);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-muted);
  font-size: 24px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  padding: 80px 48px 72px;
  text-align: center;
  border-bottom: 1px solid var(--bg-mid);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title .accent { color: var(--blue); }

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 56px; }

.hero-stats {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-stat {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section { padding: 64px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c5c6c7;
}
.service-card.featured {
  border: 2px solid var(--blue);
  background: #fafcff;
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.icon-blue   { background: var(--blue-light); }
.icon-green  { background: var(--green-light); }
.icon-yellow { background: var(--amber-light); }
.icon-red    { background: var(--red-light); }

.featured-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  letter-spacing: .02em;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.process-section { padding: 64px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-item {
  padding: 28px 20px;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
}
.step-item:last-child { border-right: none; }

.step-number {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-mid);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-item.active .step-number {
  background: var(--blue);
  color: #fff;
}
.step-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.step-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* =====================================================
   ADX SECTION
   ===================================================== */
.adx-section { padding: 64px 0; }

.adx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adx-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.adx-card-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 22px;
}
.adx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--bg-mid);
}
.adx-row:last-child { border: none; }
.adx-row span { font-size: 15px; color: var(--text-main); }
.adx-pill {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
.adx-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bg-mid);
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}
.adx-list li:last-child { border: none; }
.adx-check { color: var(--green); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section { padding: 64px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.trust-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-grey);
  align-items: flex-start;
}
.trust-row:last-child { border: none; }
.trust-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-row h5 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.trust-row p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.trust-side { display: flex; flex-direction: column; gap: 16px; }

.scam-box {
  background: var(--red-light);
  border: 1px solid #f5c6c2;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.scam-box h4 { font-size: 15px; font-weight: 600; color: var(--red-text); margin-bottom: 8px; }
.scam-box p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.contact-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-box h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item span { color: var(--text-muted); }

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section { padding: 64px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.faq-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.faq-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section { padding: 64px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s;
  text-decoration: none;
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.blog-card-bar { height: 5px; }
.blog-card-body { padding: 20px; }
.blog-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: block;
}
.blog-card h4 { font-size: 15px; font-weight: 600; color: var(--text-main); margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.blog-card-link { font-size: 13px; font-weight: 500; color: var(--blue); margin-top: 14px; display: block; }

/* Posts page */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 48px 0;
}
.post-thumb {
  height: 180px;
  background: var(--bg-grey);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 20px; }
.post-meta { font-size: 12px; color: var(--text-hint); margin-bottom: 8px; }
.post-card h2 { font-size: 17px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.post-card h2 a { color: var(--text-main); }
.post-card h2 a:hover { color: var(--blue); text-decoration: none; }
.post-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.read-more { font-size: 13px; font-weight: 500; color: var(--blue); margin-top: 12px; display: inline-block; }

/* Single post */
.single-post-wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.post-header { margin-bottom: 32px; }
.post-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.post-content { font-size: 16px; line-height: 1.8; color: var(--text-main); }
.post-content h2 { font-size: 24px; margin: 32px 0 12px; }
.post-content h3 { font-size: 20px; margin: 24px 0 10px; }
.post-content p  { margin-bottom: 18px; }
.post-content ul,
.post-content ol { padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 6px; list-style: disc; }
.post-content img { border-radius: var(--radius-md); margin: 24px 0; }
.post-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 12px 20px;
  background: var(--blue-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--blue);
  padding: 80px 48px;
  text-align: center;
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin-bottom: 30px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--blue); text-decoration: underline; }
.footer-copy { font-size: 12px; color: var(--text-light); }

/* =====================================================
   PAGE BANNER
   ===================================================== */
.page-banner {
  padding: 48px 48px 40px;
  border-bottom: 1px solid var(--bg-mid);
}
.page-banner h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.page-banner p   { font-size: 16px; color: var(--text-muted); }

/* =====================================================
   SCAMMER CHECK PAGE
   ===================================================== */
.scammer-search-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}
.scammer-search-wrap h2 { font-size: 28px; margin-bottom: 10px; }
.scammer-search-wrap p  { color: var(--text-muted); margin-bottom: 28px; }

.search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  outline: none;
}
.search-box input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,115,232,.15); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 24px; }
  .hero-section { padding: 60px 24px 52px; }
  .hero-title { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step-item:last-child { border-bottom: none; }
  .adx-grid, .trust-grid, .faq-grid { grid-template-columns: 1fr; }
  .blog-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px; }
  .main-navigation.open ul { flex-direction: column; gap: 4px; }
  .menu-toggle { display: flex; }
  .hero-title { font-size: 32px; }
  .hero-desc  { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .services-grid, .blog-grid, .posts-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px; }
  .section-title { font-size: 26px; }
  .cta-section h2 { font-size: 28px; }
  .cta-section { padding: 56px 24px; }
  .site-footer { padding: 24px; }
}

/* =====================================================
   WORDPRESS CORE ALIGNMENT
   ===================================================== */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* Comments */
.comments-area { max-width: 720px; margin: 48px auto; padding: 0 24px; }
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--blue); }
.comment-form .submit {
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 32px 0; }
.pagination a,
.pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--blue);
}
.pagination .current { background: var(--blue); color: #fff; border-color: var(--blue); }
