body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 30;
}
.navbar-logo {
  height: 44px;
  margin: 0 2vw 0 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  display: block;
}
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2vw;
}
.navbar-menu a {
  color: #444;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.2em 0.5em;
  transition: color 0.2s;
}
.navbar-menu a.active,
.navbar-menu a:hover {
  color: #e6a93c;
}
.navbar-menu .dropdown {
  position: relative;
}
.navbar-menu .dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 190px;
  box-shadow: 0 2px 8px #0002;
  z-index: 40;
  right: 0;
  top: 120%;
  border-radius: 6px;
  overflow: hidden;
}
.navbar-menu .dropdown:hover .dropdown-content {
  display: block;
}
.navbar-menu .dropdown-content a {
  display: block;
  padding: 0.7em 1em;
  color: #444;
  background: #fff;
  white-space: nowrap;
}
.navbar-menu .dropdown-content a:hover {
  background: #f7f7f7;
  color: #e6a93c;
}

/* ── Hamburger ── */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #444;
  transition: background 0.2s;
}

/* ── Pickup sub-nav ── */
.pickup-nav {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  position: relative;
  z-index: 10;
}
.pickup-nav a {
  color: #444;
  text-decoration: none;
  font-size: 1rem;
}
.pickup-nav a:hover {
  color: #e6a93c;
}

/* ── Product layout ── */
.product-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.product-layout-img {
  flex: 0 0 340px;
}
.product-layout-img img {
  width: 100%;
  margin: 0;
}
.product-layout-text {
  flex: 1;
}

/* ── Buttons ── */
.btn-shop {
  display: inline-block;
  background: #590000;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
}
.btn-shop:hover {
  background: #7a1111;
  color: #fff;
  text-decoration: none;
}
.btn-shop + .btn-shop {
  margin-left: 0.5rem;
}

/* ── Hero ── */
.home-hero {
  background: #111;
  color: #fff;
  margin-bottom: 2rem;
  overflow: hidden;
}
.home-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 3rem;
}
.home-hero-content {
  flex: 0 0 45%;
}
.home-hero h1 {
  font-size: 2.7rem;
  font-weight: 400;
  margin: 0 0 0.7rem 0;
}
.home-hero p {
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
  color: #eee;
}
.home-hero-img {
  flex: 0 0 55%;
  width: 55%;
  height: 360px;
  object-fit: cover;
  object-position: right center;
  border-radius: 8px;
  box-shadow: -8px 0 32px #0008;
  margin: 0;
}

/* ── Video embed ── */
.video-embed {
  margin-top: 3rem;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 2px 8px #0002;
}

/* ── Footer ── */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}

/* ── Base elements ── */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}
img {
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
}
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  margin-left: 1.5rem;
}
address {
  font-style: normal;
  margin: 1.5rem 0;
}

/* ── Responsive: tablet ── */
@media (max-width: 900px) {
  .home-hero-img {
    display: none;
  }
  .pickup-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 768px) {
  .navbar-hamburger {
    display: flex;
  }
  .navbar-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    z-index: 100;
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  }
  .navbar-menu.open {
    display: flex;
  }
  .navbar-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }
  .navbar-menu .dropdown-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
  }
  .navbar-menu .dropdown:hover .dropdown-content {
    display: none;
  }
  .navbar-menu .dropdown.open .dropdown-content {
    display: block;
  }
  .home-hero-inner {
    flex-direction: column;
    padding: 1.5rem 1rem 0;
    gap: 0;
  }
  .home-hero-img {
    display: block;
    width: 100%;
    max-width: none;
    height: 220px;
    border-radius: 0;
    box-shadow: none;
    margin: 1rem 0 0;
    object-fit: cover;
  }
  .product-layout {
    flex-direction: column;
  }
  .product-layout-img {
    flex: none;
    width: 100%;
  }
}
