body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    background-color: #fff;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .btn {
    background-color: #ffd700;
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
  }
  
  .hero-banner {
    background: url("assets/hero-banner.png") center/cover no-repeat;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: white; 
  }
  .hero-text {
    margin-left: 10%;
    text-align: left;
  }
  
  .product-categories {
    background-color: #f6f6f6;
  }
  .product-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .product-box {
    background: #fff;
    padding: 10px;
    width: 280px;
  }
  .product-box img {
    width: 100%;
    height: auto;
  }
  
  .promo-banner {
    background: url("assets/mid\ page\ break.jpg") center/cover no-repeat;
    height: 450px;
  }
  
  .new-arrivals, .featured-products {
    background: #2b2b2b;
    color: white;
  }
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  .card {
    background: #fff;
    color: #000;
    width: 220px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .card button {
    margin-top: 10px;
    padding: 8px 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .journey-banner {
    background: url("assets/hero-banner.png") center/cover no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  .journey-banner .overlay {
    background: rgba(0,0,0,0.4);
    padding: 20px;
  }
  
  .awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  .awards-grid img {
    height: 100px;
  }
  
  .newsletter form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .newsletter input {
    padding: 10px;
    font-size: 1rem;
  }
  .newsletter button {
    padding: 10px 20px;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .testimonials .testimonial {
    max-width: 600px;
    margin: 20px auto;
    font-style: italic;
  }
  
  .recipes-promo {
    background: url("assets/hero-banner.png") center/cover no-repeat;
    height: 500px;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .recipes-promo .overlay {
    background: rgba(0,0,0,0.4);
    padding: 20px;
  }
  
  .sister-brands {
    background: #f5f5f5;
    padding: 40px 0;
  }
  
  .product-detail {
    text-align: center;
    padding: 40px 20px;
  }
  .product-detail img {
    width: 300px;
    margin-bottom: 20px;
  }
  .product-detail select,
  .product-detail input,
  .product-detail button {
    display: block;
    margin: 10px auto;
    padding: 10px;
    font-size: 1rem;
  }
  .shop-pay {
    background: #5a31f4;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .inspiration-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .inspiration-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .blog {
    padding-top: 40px;
  }
  .blog-card {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
  }
  
  footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    font-size: 0.9rem;
  }
  .footer-grid {
    display: flex;
    justify-content: center; /* centers horizontally */
    text-align: center;      /* aligns text inside */
  }
  
  .footer-contact {
    max-width: 500px; /* keeps it neat, not too wide */
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    line-height: 2;
  }
  .footer-contact a {
    color: #ffd700; /* matches your brand accent */
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  
  .footer-grid div ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
  }
  .footer-grid input {
    padding: 10px;
    width: 200px;
  }
  .footer-grid button {
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    background: #ffd700;
    color: #000;
    cursor: pointer;
  }
  .payment-icons {
    text-align: center;
    margin-top: 30px;
    font-size: 24px;
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    color: white;
    padding: 12px 0;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .nav-left, .nav-right {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    font-size: 0.95rem;
  }
  
  .nav-right {
    justify-content: flex-end;
  }
  
  .nav-left a, .nav-right a {
    color: white;
    text-decoration: none;
  }
  
  .nav-center {
    text-align: center;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  