/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.45;
}

h1, h2, h3 {
  color: #c47900;
  margin-top: 0;
}

a {
  color: #c47900;
  text-decoration: none;
}

a:hover {
  color: #a86800;
}

/* --------------------------------------------------
   HEADER / NAVIGATION
-------------------------------------------------- */
.header {
  background: #ffffff;
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-link {
  font-weight: bold;
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  font-weight: bold;
  padding-bottom: 3px;
}

.nav a.active {
  border-bottom: 2px solid #c47900;
}

.nav a:hover {
  border-bottom: 2px solid #c47900;
}

/* --------------------------------------------------
   PAGE WRAPPER
-------------------------------------------------- */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: white;
}

/* --------------------------------------------------
   HERO (Landing Page)
-------------------------------------------------- */
.hero {
  background: url('https://www.honeystrong.com/bees/BeepicLotsofcomb.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 60px 20px;
  border-radius: 6px;
  display: inline-block;
}

.hero h2 {
  font-size: 36px;
  margin: 0 0 10px 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

/* --------------------------------------------------
   PRODUCT GRID (Landing Page)
-------------------------------------------------- */
.product-grid {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card-content {
  padding: 15px;
}

.product-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #c47900;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 15px 0;
}

.product-card a {
  display: inline-block;
  padding: 10px 14px;
  background: #c47900;
  color: white;
  border-radius: 4px;
  font-size: 14px;
}

.product-card a:hover {
  background: #a86800;
}

/* --------------------------------------------------
   PRODUCT HERO (Individual Pages)
-------------------------------------------------- */
.product-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.product-hero img {
  width: 350px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.product-info {
  flex: 1;
  min-width: 260px;
}

/* --------------------------------------------------
   TABLES
-------------------------------------------------- */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
  text-align: center;
}

.pricing-table th {
  background: #f2f2f2;
  padding: 8px;
}

.pricing-table td {
  padding: 6px;
  border-bottom: 1px solid #eee;
}

/* --------------------------------------------------
   FORMS
-------------------------------------------------- */
form {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fafafa;
}

table td {
  padding: 6px;
}

input[type="text"], select {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-area {
  text-align: center;
  margin-top: 20px;
}

.submit-area img {
  width: 120px;
}

.price-display {
  font-size: 22px;
  margin: 10px 0;
  color: #c47900;
  text-align: center;
}

/* --------------------------------------------------
   INFO PAGE SECTIONS
-------------------------------------------------- */
.section {
  margin-bottom: 25px;
  padding: 15px 18px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fafafa;
}

.section h2 {
  margin-top: 0;
}

.section ul {
  margin-top: 5px;
  padding-left: 20px;
}

.section li {
  margin-bottom: 5px;
}

.note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

/* --------------------------------------------------
   OPTION IMAGES (Full Hives)
-------------------------------------------------- */
.option-img {
  max-height: 80px;
  display: block;
  margin: 0 auto 10px auto;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #555;
}

.footer-inner a {
  color: #c47900;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-hero img {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}