* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f3ea;
  color: #232323;
  line-height: 1.6;
}

.site-header{
  background:#070707;
  border-bottom:1px solid rgba(216,194,122,.18);
  padding:18px 30px;
  position:sticky;
  top:0;
  z-index:50;
}

.header-inner{
  max-width:1600px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:18px;
}

.brand-lockup{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  line-height:1;
  text-decoration:none;
  min-width:280px;
  padding-right:28px;
  border-right:1px solid rgba(216,194,122,.45);
}

.brand-kicker,
.brand-sub{
  font-size:11px;
  font-weight:900;
  letter-spacing:.32em;
  color:#7E9363;
  text-transform:uppercase;
}

.brand-main{
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;
  font-weight:700;
  letter-spacing:-2px;
  color:#ffffff;
  margin:5px 0 8px;
  white-space:nowrap;
}

.brand-main span{
  color:#7E9363;
}

.top-search{
  display:flex;
  align-items:center;
  width:300px;
  min-width:320px;
}

.top-search input{
  width:100%;
  height:54px;
  background:#111;
  color:#f5f5f5;
  border:1px solid rgba(255,255,255,.24);
  border-radius:10px;
  padding:0 18px;
  font-size:15px;
  outline:none;
}

.top-search input:focus{
  border-color:#C8B67A;
  box-shadow:0 0 0 3px rgba(200,182,122,.15);
}

.main-nav{
  display:flex;
  align-items:stretch;
  gap:10px;
  margin-left:auto;
}

.main-nav a{
  min-width:82px;
  height:74px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  background:#080808;
  border:1px solid #738A57;
  border-radius:10px;
  color:#ffffff;
  font-size:14px;
  font-weight:900;
  text-align:center;
  text-decoration:none;
  transition:.22s ease;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

.main-nav a:hover,
.main-nav a.active{
  background:linear-gradient(135deg,#33401f,#111);
  border-color:#C8B67A;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  transform:translateY(-2px);
}

.nav-icon{
  font-size:25px;
  line-height:1;
  color:#C8B67A;
  font-weight:400;
  display:block;
  margin-bottom:2px;
}

.hero {
  background: #f4f4f4;
  padding: 60px 40px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 700px;
}

.hero-search input {
  flex: 1;
  padding: 14px;
  font-size: 16px;
}

.hero-search button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  color: #ffffff;
  border: 1px solid #232323;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-search button:hover,
.button-link:hover {
  background: #3a3a3a;
  border-color: #3a3a3a;
}

section {
  padding: 50px 40px;
  border-bottom: 1px solid #dddddd;
}

h2 {
  margin-bottom: 25px;
}

.category-grid,
.listing-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.category-card,
.listing-card,
.step-card,
.dealer-card {
  background: #fcfbf7;
  border: 1px solid #d9d4c8;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.listing-image {
  background: #eeeeee;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.price {
  font-weight: bold;
  font-size: 20px;
}

.badge {
  background: #111111;
  color: #ffffff;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
}

.site-footer {
  background: #111111;
  color: #ffffff;
  text-align: center;
  padding: 30px;
}

/* =========================================================
   SHARED FORM STYLES
========================================================= */

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d4c8;
  border-radius: 8px;
  background: #ffffff;
  color: #232323;
  font-size: 15px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #556b2f;
  box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.15);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.photo-slot,
.photo-upload,
.upload-box,
.upload-panel {
  background: #2b3322;
}