body {
  margin: 0;
  font-family: 'Radley', serif;
  color: #2E2E3A;
  background: #fff;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: #F34213;
  color: #fff;
}

.site-header nav a {
  margin-left: 1em;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.site-header nav a.active {
  margin-left: 1em;
  color: #BBB8B2;
  text-decoration: none;
  font-size: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.btn-primary {
  background: #F34213;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}

.btn-secondary {
  background: #BC5D2E;
  color: white;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12pt;
}

.products {
  padding: 2em;
}

.products h2 {
  text-align: center;
  margin-bottom: 1.5em;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.product-card {
  border: 1px solid #DE9151;
  padding: 1em;
  text-align: center;
  width: 250px;
  background: #fff;
  border-radius: 8px;
}

.product-card img {
  max-width: 100%;
  border-radius: 5px;
}

footer {
  margin-top: 3em;
  padding: 2em;
  background: #2E2E3A;
  color: #fff;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.footer-content nav a {
  margin: 0 0.75em;
  color: #DE9151;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-copy {
  font-size: 12px;
  color: #BBB8B2; /* muted copyright */
}

/* Hero section only */
.hero {
  position: relative;
  background: url('img/annie-spratt-aFr0fuKtlG4-unsplash.jpg') center/cover no-repeat;
  min-height: 80vh; /* adjust for desired height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2em;
}

/* Optional overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Text above overlay */
.hero h1,
.hero p,
.hero .btn-primary {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 0.5em;
}

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

.hero .btn-primary {
  padding: 1em 2em;
  font-size: 18px;
}

/* Contact Page Styles */
.contact-page {
  max-width: 1200px;
  margin: 2em auto;
  padding: 0 2em;
  font-family: 'Radley', serif;
}

.contact-page h1 {
  text-align: center;
  font-size: 24pt;
  margin-bottom: 2em;
  color: #2E2E3A;
}

/* Two columns layout */
.contact-container {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}

/* Main Form */
.contact-form {
  flex: 2 1 600px;
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form label {
  font-size: 12pt;
  margin-bottom: 0.3em;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 0.75em;
  border: 1px solid #DE9151;
  border-radius: 5px;
  font-size: 14pt;
  margin-bottom: 1em;
}

.contact-form button {
  padding: 1em 2em;
  font-size: 16pt;
  background: #F34213;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.contact-form button:hover {
  background: #bc3510;
}

/* Sidebar Thin Column */
.contact-sidebar {
  flex: 1 1 200px;
  background: #fff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-sidebar .info-item {
  display: flex;
  justify-content: space-between; /* text left, icon right */
  align-items: center;
  flex-direction: column;
  margin-bottom: 1.5em;
  text-align: center;
}

.contact-sidebar .info-item span {
  font-weight: bold;
  font-size: 12pt;
  margin-bottom: 0.3em;
}

.contact-sidebar .info-item p {
  font-size: 14pt;
  margin: 0;
}

.contact-sidebar .info-item i {
  font-size: 18px;
  color: #F34213;
  margin-top: 0.5em;
}

/* Responsive: stack columns on mobile */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form, .contact-sidebar {
    flex: 1 1 100%;
  }
}

/* About Hero */
.about-hero {
  background: url('img/robson-hatsukami-morgan-qr7tsSwDOg0-unsplash.jpg') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2em;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 1;
}

/* Intro */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 3em auto;
  font-size: 14pt;
  color: #2E2E3A;
}

.about-logo {
  width: 120px;
  margin-bottom: 1em;
}

/* Story */
.about-story {
  display: flex;
  gap: 2em;
  align-items: center;
  max-width: 1200px;
  margin: 4em auto;
  padding: 0 2em;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 500px;
}

.story-img {
  flex: 1 1 400px;
}

.story-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Values */
.about-values {
  background: #f9f9f9;
  padding: 4em 2em;
  text-align: center;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 2em;
}

.value-card {
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  flex: 1 1 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value-card i {
  font-size: 32px;
  color: #F34213;
  margin-bottom: 0.5em;
}

/* Product Page */
.product-page {
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 2em;
}

.product-container {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Product Image */
.product-image {
  flex: 1 1 400px;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Product Details */
.product-details {
  flex: 1 1 500px;
}

.product-details h1 {
  font-size: 24pt;
  margin-bottom: 0.5em;
  color: #2E2E3A;
}

.product-details .price {
  font-size: 20pt;
  font-weight: bold;
  color: #F34213;
  margin-bottom: 1em;
}

.product-details .short-desc {
  font-size: 14pt;
  margin-bottom: 2em;
}

.product-details .btn-primary {
  background: #F34213;
  color: #fff;
  font-size: 16pt;
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 2em;
}

.product-details .btn-primary:hover {
  background: #bc3510;
}

/* Extra Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.info-card {
  background: #fff;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-card h3 {
  font-size: 16pt;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  color: #2E2E3A;
}

.info-card p {
  font-size: 12pt;
  color: #2E2E3A;
}

/* Responsive */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
  }
  .product-image,
  .product-details {
    flex: 1 1 100%;
  }
}

/* Featured Product Section */
.featured-product {
  background: #f9f9f9;
  padding: 4em 2em;
}

.featured-container {
  display: flex;
  gap: 3em;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Image */
.featured-image {
  flex: 1 1 500px;
  text-align: center;
}

.featured-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Details */
.featured-details {
  flex: 1 1 400px;
  text-align: left;
}

.featured-details h2 {
  font-size: 16pt;
  color: #BC5D2E;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-details h1 {
  font-size: 28pt;
  margin-bottom: 0.3em;
  color: #2E2E3A;
}

.featured-details .price {
  font-size: 22pt;
  font-weight: bold;
  color: #F34213;
  margin-bottom: 1em;
}

.featured-details .desc {
  font-size: 14pt;
  line-height: 1.6;
  margin-bottom: 2em;
  color: #2E2E3A;
  font-family: 'Radley', serif;
  font-style: italic;
}

.featured-details .btn-primary {
  background: #F34213;
  color: #fff;
  font-size: 16pt;
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
}

.featured-details .btn-primary:hover {
  background: #bc3510;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .featured-details {
    text-align: center;
  }
}

/* Shop Banner */
.shop-banner {
  background: url('assets/shop-banner.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
  padding: 4em 2em;
}

.shop-banner h1 {
  font-size: 32pt;
  margin-bottom: 0.5em;
}

.shop-banner p {
  font-size: 16pt;
  color: #f1f1f1;
}

/* Shop Grid */
.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 2em;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  padding: 1.5em;
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
}

.product-card h2 {
  font-size: 18pt;
  margin-bottom: 0.3em;
  color: #2E2E3A;
}

.product-card .price {
  font-size: 16pt;
  font-weight: bold;
  color: #F34213;
  margin-bottom: 0.5em;
}

.product-card .desc {
  font-size: 12pt;
  color: #2E2E3A;
  margin-bottom: 1.5em;
  line-height: 1.4;
  font-family: 'Radley', serif;
  font-style: italic;
}

.product-card .btn-primary {
  background: #F34213;
  color: #fff;
  font-size: 14pt;
  padding: 0.8em 1.5em;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.product-card .btn-primary:hover {
  background: #bc3510;
}

/* =========================
   SHOP PAGE STYLES
   ========================= */

/* Hero Banner */
.shop-hero {
  background: #F34213;
  text-align: center;
  padding: 4em 2em;
  color: #fff;
}

.shop-hero h1 {
  font-size: 32pt;
  margin-bottom: 0.3em;
  font-family: 'Radley', serif;
}

.shop-hero p {
  font-size: 14pt;
  font-family: 'Radley', serif;
  color: #fff;
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 2em;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1em;
}

/* Product Info */
.product-card h2 {
  font-size: 18pt;
  margin-bottom: 0.3em;
  color: #2E2E3A;
  font-family: 'Radley', serif;
}

.product-card .price {
  font-size: 16pt;
  font-weight: bold;
  color: #F34213;
  margin-bottom: 0.7em;
}

.product-card .desc {
  font-size: 12pt;
  color: #2E2E3A;
  margin-bottom: 1.5em;
  line-height: 1.5;
  font-family: 'Radley', serif;
}

/* Buttons */
.product-card .btn-primary {
  background: #F34213;
  color: #fff;
  font-size: 14pt;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: Arial, sans-serif;
  transition: background 0.25s ease;
}

.product-card .btn-primary:hover {
  background: #bc3510;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-hero h1 {
    font-size: 24pt;
  }

  .shop-grid {
    gap: 1.5em;
    padding: 0 1em;
  }
}

/* =========================
   COMING SOON PAGE
   ========================= */
.coming-soon-body {
  margin: 0;
  padding: 0;
  background: url("img/benjamin-davies-mqN-EV9rNlY-unsplash.jpg") center/cover no-repeat;
  color: #fff;
  font-family: 'Radley', serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.coming-soon-container {
  background: rgba(46, 46, 58, 0.9);
  padding: 3em;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
}

.coming-soon-container h1 {
  font-family: 'Radley', serif;
  font-size: 36pt;
  margin-bottom: 0.2em;
  color: #F34213;
}

.coming-soon-container .tagline {
  font-size: 14pt;
  color: #DE9151;
  margin-bottom: 1.5em;
}

.coming-soon-container h2 {
  font-size: 24pt;
  margin-bottom: 0.5em;
  color: #fff;
}

.coming-soon-container .subtext {
  font-size: 12pt;
  margin-bottom: 2em;
  line-height: 1.6;
}

.notify-form {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  margin-bottom: 1.5em;
}

.notify-form input {
  padding: 0.8em;
  border: none;
  border-radius: 6px;
  width: 70%;
  font-size: 12pt;
}

.notify-form button {
  padding: 0.8em 1.4em;
  border: none;
  border-radius: 6px;
  background: #F34213;
  color: #fff;
  font-size: 12pt;
  cursor: pointer;
  transition: background 0.25s ease;
}

.notify-form button:hover {
  background: #bc3510;
}

.soon-footer {
  margin-top: 1.5em;
  font-size: 10pt;
  color: #bbb;
}