/*
Theme Name: BestBudgetPicks Theme
Author: BestBudgetPicks
Version: 1.1
*/

/* 1. Reset aur Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #eaeded; /* Amazon light grey bg */
  color: #111;
}

/* 2. HEADER (Amazon Dark Style) */
.site-header {
  background: #131921; /* Amazon Dark Blue */
  padding: 10px 0;
  color: #fff;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

/* Logo Fix */
.logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  color: #ff9900 !important; /* Amazon Orange */
}

.logo img {
  max-height: 40px;
  display: block;
}

/* 3. SEARCH BAR (Ivory Search) Fix */
.header-search {
  flex-grow: 1; /* Search bar center mein fail jayega */
  max-width: 700px;
}

/* Ivory Search Input */
.is-search-input {
  border: none !important;
  border-radius: 4px 0 0 4px !important;
  height: 40px !important;
  padding: 0 15px !important;
  font-size: 14px;
}

/* Ivory Search Button */
.is-search-submit {
  background: #febd69 !important; /* Amazon Yellowish Orange */
  border: none !important;
  border-radius: 0 4px 4px 0 !important;
  height: 40px !important;
  padding: 0 20px !important;
  cursor: pointer;
  color: #111 !important;
  font-weight: 600;
}

/* 4. NAVIGATION MENU */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.main-nav ul li a {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.main-nav ul li a:hover {
  border: 1px solid #fff; /* Amazon style hover border */
  padding: 5px;
  margin: -6px;
}

/* 5. PRODUCT CARD (Amazon Style) */
.amazon-card {
  display: flex;
  gap: 25px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.amazon-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.amazon-card img {
  width: 200px;
  object-fit: contain;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #B12704; /* Amazon Price Red */
}

.buy-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd814;
  color: #111;
  font-weight: 600;
  border-radius: 20px; /* Round buttons like Amazon */
  text-decoration: none;
  border: 1px solid #fcd200;
}

.buy-btn:hover {
  background: #f7ca00;
}

/* 6. FOOTER */
.site-footer {
  background: #232f3e;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin-top: 50px;
}