:root{
  --brand-bg: #282726;      
  --brand-text: #FFFFF0;      
  --brand-accent: #c8a04f;    
  --accent-ghost: rgba(200,160,79,0.22);
  --muted: #d8d5c7;            
  --border: #3a3a3a;
}

/* ONE body block (keep serif) */
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--brand-bg);
  color: var(--brand-text);
}

.wrap{ max-width: 980px; margin: 0 auto; padding: 24px 16px; }

/* HEADER/FOOTER */
.site-header{ position: sticky; top: 0; background: #282726; border-bottom: none; }
.logo{ height: 68px; display: block; }
.site-footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  line-height: 1.4;
  background: var(--brand-bg);
  color: var(--muted);
}

.site-footer .disclaimer {
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  opacity: 0.8; /* subtle fade */
}

/* HERO */
.hero{ text-align: center; padding: clamp(24px, 7vw, 72px) 0; }
.hero h1{ font-size: clamp(32px, 5vw, 56px); margin: 0 0 8px; letter-spacing: .2px; }
.lede{ color: var(--muted); max-width: 62ch; margin: 0 auto 28px; }

/* SEARCH CARD */
.search-card{
  background: #FFFFF0;      /* cream */
  border: none;
  border-radius: 0;          /* square */
  padding: 18px;
  display: grid;
  gap: 8px;
}

/* Label: bigger, dark color, centered */
.label{
  color: #282726;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

/* Row: center input+button with ~25px gap */
.form-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

/* Input */
.combo{
  position: relative;
  display: inline-block;    /* keep dropdown width equal to input */
  width: 100%;
  max-width: 420px;
}

#product{
  width: 100%;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 0;          /* square */
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
}
#product:focus{
  border-color: #FAA059;
  box-shadow: 0 0 0 2px rgba(250,160,89,.25);
  outline: none;
}

/* Button (remove height:100%) */
.btn{
  padding: 10px 18px;
  background: transparent;
  border: 2px solid #FAA059;
  color: #FAA059;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;          /* square */
  white-space: nowrap;       /* keep short */
}
.btn:hover{ background: #FAA059; color: #fff; }
.btn:disabled{ opacity: .6; cursor: not-allowed; }

/* Suggestions: centered under input, no bullets, clean */
.suggestions{
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; left: 0; right: 0; z-index: 10;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;          /* square */
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  width: 100%;
}
.suggestions li{
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  color: #111;
}
.suggestions li:last-child{ border-bottom: 0; }
.suggestions li:hover{ background: #f7f7f7; }

/* Result: hidden border until .show, corners half as round (6px) */
.result{
  margin-top: 20px;
  padding: 14px;
  border: none;              /* hidden by default */
  border-radius: 6px;
  background: none;
  color: #000;
  font-size: 20px;
  display: flex; gap: 12px; justify-content: center; align-items: baseline; flex-wrap: wrap;
}
.result.show{ border: 1px solid #FAA059; background: #FFFFF0; }
.result .name{ font-weight: 800; }
.result .strength{ color: #555; }
.result .price{
  background: #fff8e1;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e8c77a;
}

.error{ margin-top: 14px; color: #ffb4b4; }

/* Result header line */
.result-head{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.result-head .name{ font-weight: 800; color: #000; }
.result-head .strength{ color: #555; }

/* Two-column price table */
.price-table{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #FFFFF0;
  border: 1px solid #FAA059;
}
.price-table th,
.price-table td{
  padding: 10px 12px;
  border-bottom: 1px solid #e8c77a;
  text-align: center;
}
.price-table thead th{
  background: #fff3d6;
  font-weight: 800;
  color: #282726;
}
.price-table .row-label{
  text-align: left;
  font-weight: 700;
  color: #282726;
  width: 30%;
}
.price-table .price-intl,
.price-table .price-340b{
  font-weight: 700;
  background: #fff8e1;
  border: 1px solid #e8c77a;
}
.price-table .col-label{ width: 30%; }
.price-table .col-intl, .price-table .col-340b{ width: 35%; }

/* Keep the result card look you already had */
.result.show{
  display: block;
  padding: 14px;
}
/* Result header */
.result-head{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.result-head .name{ font-weight: 800; color: #000; }
.result-head .meta{ color: #555; }

/* Two-column price table */
.price-table{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #FFFFF0;
  border: 1px solid #FAA059;
}
.price-table th,
.price-table td{
  padding: 10px 12px;
  border-bottom: 1px solid #e8c77a;
  text-align: center;
}
.price-table thead th{
  background: #fff3d6;
  font-weight: 800;
  color: #282726;
}
.price-table .row-label{
  text-align: left;
  font-weight: 700;
  color: #282726;
  width: 30%;
}
.price-table .price-intl,
.price-table .price-340b{
  font-weight: 700;
  background: #fff8e1;
  border: 1px solid #e8c77a;
}
.price-table .col-label{ width: 30%; }
.price-table .col-intl, .price-table .col-340b{ width: 35%; }

