/* Color Variables */
:root {
    --sunset-purple: #5E3C83;
    --oat-gold: #D9A441;
    --field-brown: #7C5A3E;
    --sky-peach: #F4A383;
    --twilight-blue: #2D2A4A;
    --cloud-white: #F5F5F5;
    --overlay-dark: rgba(0, 0, 0, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.6;
    background: var(--cloud-white);
    color: var(--field-brown);
    overflow-x: hidden;
    position: relative;
    z-index: 0;
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/oat-texture-bg.png') repeat;
    background-size: 300px auto;
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
  }
  
  body.no-scroll {
    overflow: hidden;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--twilight-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 80px;
    width: auto;
  }
  
  .hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--oat-gold);
    z-index: 1001;
    transition: transform 0.3s ease;
  }
  
  .hamburger.active {
    transform: rotate(90deg);
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--overlay-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  nav {
    position: absolute;
    top: 60px;
    right: 2rem;
    background: var(--twilight-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    display: none;
    z-index: 1001;
  }
  
  nav.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  nav ul {
    list-style: none;
    display: block;
    padding: 0;
  }
  
  nav ul li {
    margin-bottom: 0.5rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: var(--oat-gold);
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: var(--sky-peach);
    text-decoration: underline;
  }
  
  .banner {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0)),
                url('../images/banner.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFBC9A;
    text-shadow: 0 0 5px rgba(0,0,0,0.6);
    text-align: center;
    padding: 1rem;
  }
  
  .banner h1 {
    font-size: 2rem;
  }
  
  .intro-wrapper {
    padding: 3rem 1rem;
    background-size: 300px auto;
    width: 100%;
  }
  
  .intro-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .intro-text h2 {
    font-size: 1.8rem;
    color: var(--twilight-blue);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .badge {
    background: var(--oat-gold);
    color: var(--twilight-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.3s ease;
  }
  
  .badge:hover {
    background: var(--sky-peach);
  }
  
  section {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
  }
  
  .product-section {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-section img {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .buy-button {
    padding: 0.75rem 1.5rem;
    background: var(--oat-gold);
    color: var(--twilight-blue);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .buy-button:hover {
    background: var(--sky-peach);
  }
  .product-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .product-image-area {
    text-align: center;
  }
  
  .product-image-area img {
    width: 250px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .product-price {
    font-size: 1.2rem;
    color: var(--twilight-blue);
    font-weight: bold;
  }
  
  .product-info-area {
    text-align: left;
  }
  
  .product-description {
    margin-bottom: 1.5rem;
    color: var(--field-brown);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Make it two-column layout on desktop */
  @media (min-width: 768px) {
    .product-container {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 4rem;
    }
  
    .product-image-area, .product-info-area {
      flex: 1;
    }
  
    .product-info-area {
      padding-right: 2rem;
    }
  
    .product-description {
      font-size: 1.05rem;
    }
  }
  
  
  footer {
    background: var(--cloud-white);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--twilight-blue);
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../images/oat-texture-bg.png') repeat;
    background-size: 300px auto;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
  }
  