:root {
          --primary: #FFC107;         /* Bright Yellow */
          --secondary: #3D2C8D;       /* Dark Blue */
          --accent: #FF6F91;          /* Pink */
          --bg-light: #FFF5E5;        /* Light Peach */
          --text-dark: #2E2E2E;
        }

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #fff8e1;
  color: var(--text-dark);
  line-height: 1.6;
}

.content {
  flex: 1; /* pushes footer to bottom if content is short */
}

/* Navbar styles */
.navbar {
          display: flex;
          align-items: center;
          padding: 10px 20px;
          background-color: var(--primary);
          gap: 10px;
        }

        .navbar img {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          margin-right: 15px;
        }

         .navbar-left {
                 display: flex;
                 align-items: center;
                 gap: 4px;
               }

.brand-name {
  font-size: 24px;
  color: #bf360c;
  margin: 0;
  line-height: 1.2; /* reduce vertical space */
}

.brand-link {
 text-decoration: none;
 color: inherit;
}

        .navbar h1 {
          font-size: 24px;
          color: var(--secondary);
          margin: 0;
        }

        .tagline {
          font-size: 14px;
          color: #ffffff; /* updated to match cookie tone from logo */
          margin: 0;
        }

h2 {
         color: var(--accent);
         margin-top: 30px;
         font-size: 22px;
       }

 footer {
          background-color: var(--secondary);
          color: #fff;
          text-align: center;
          padding: 30px 20px;
          border-top: 5px solid var(--primary);
        }

        .footer-links a {
          color: var(--accent);  /* updated to pink from logo */
          text-decoration: none;
          font-size: 14px;
          margin: 0 5px;
        }

        .footer-links a:hover {
          text-decoration: underline;
        }
.category-section {
  margin-bottom: 40px;
  padding: 0 20px;
}

.category-title {
  font-size: 20px;
  color: #bf360c;
  margin-bottom: 10px;
}

.product-row {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.product-card {
  flex: 0 0 auto;
  width: 180px;
  background: #fff3e0;
  border-radius: 8px;
  border: 1px solid #e0a458;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}
/* Make body take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flex container for layout */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.product-detail {
  flex: 1;
  max-width: 600px;
  margin: auto;
  text-align: center;
  padding: 0 15px; /* add side padding */
  box-sizing: border-box;

}
.product-detail p {
    text-align: left; /* description + other paragraphs */
  }

.product-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}