:root {
  --olive-dark: #2f3b22;
  --olive: #4f5f2f;
  --cream: #f7f2e8;
  --card: #fffaf0;
  --border: #e4d7bd;
  --text: #2b241b;
}

/* Base */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--olive);
  font-weight: bold;
}

h1 {
  color: var(--olive-dark);
  font-size: 48px;
  margin: 0 0 18px;
  line-height: 1.15;
}

h2 {
  color: var(--olive);
  font-size: 26px;
  margin: 0 0 22px;
}

h3 {
  color: var(--olive-dark);
}

p {
  font-size: 17px;
  margin: 0 0 18px;
}

ul {
  padding-left: 24px;
  margin: 0 0 24px;
}

li {
  margin-bottom: 8px;
  font-size: 17px;
}

/* Header */

.site-header {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 45px 24px 30px;
  text-align: center;
  border-bottom: 4px solid var(--border);
}

.site-header h1 {
  color: var(--card);
  font-size: 42px;
  margin: 0 0 18px;
}

.site-header .tagline {
  color: var(--cream);
  font-size: 24px;
  margin: 0 0 28px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--border);
  text-decoration: none;
  font-weight: bold;
}

.site-header nav a:hover {
  color: var(--card);
  text-decoration: underline;
}

/* Layout */

main,
.page-container,
.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.intro-section {
  margin-bottom: 34px;
}

.intro-section p {
  max-width: 760px;
}

/* Cards / Boxes */

.box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 14px;
  margin-top: 24px;
}

.contact-box {
  max-width: 850px;
}

/* Privacy */

.updated {
  color: #7a6d5b;
  font-style: italic;
  margin-bottom: 32px;
}

/* Buttons */

.button,
.secondary-button {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.button {
  background: var(--olive);
  color: var(--card);
  border: 1px solid var(--olive);
}

.button:hover {
  background: var(--olive-dark);
  color: var(--card);
}

.secondary-button {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
}

.secondary-button:hover {
  background: var(--card);
}

/* Contact / Order */

.price-highlight {
  font-size: 18px;
  font-weight: normal;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 14px;
}

.shipping-note {
  margin-top: 0;
  margin-bottom: 34px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 35px;
}

/* Product Page */

.product-feature {
  display: flex;
  max-width: 1100px;
  margin: 45px auto;
  padding: 0 30px;
  gap: 40px;
  align-items: flex-start;
}

.product-image {
  width: 50%;
}

.product-info {
  width: 50%;
  text-align: left;
  line-height: 1.5;
}

.product-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--olive-dark);
  margin-top: 24px;
}

/* Footer */

.site-footer {
  background: var(--olive-dark);
  color: var(--cream);
  margin-top: 70px;
  padding: 50px 24px 20px;
  border-top: 4px solid var(--border);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-column h3 {
  color: var(--card);
  font-size: 20px;
  margin: 0 0 14px;
}

.footer-column p {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer-column a {
  color: var(--border);
  text-decoration: none;
  font-weight: bold;
}

.footer-column a:hover {
  color: var(--card);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1100px;
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 242, 232, 0.25);
  text-align: center;
}

.footer-bottom p {
  color: var(--border);
  font-size: 14px;
  margin: 0;
}

/* Responsive */

@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .product-feature {
    flex-direction: column;
  }

  .product-image,
  .product-info {
    width: 100%;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 36px;
  }

  .site-header h1 {
    font-size: 32px;
  }

  .site-header .tagline {
    font-size: 20px;
  }

  main,
  .page-container,
  .privacy-container {
    padding: 42px 20px;
  }

  .box {
    padding: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .image-caption {
text-align: center;
font-size: 14px;
color: #7a6d5b;
font-style: italic;
margin-top: 8px;
}

}