/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5dc; /* beige */
  color: #333;
}

/* Header Section */
header {
  text-align: center;
  padding: 1.5rem;
}

.header-container {
  background-color: #fff8e1;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1000px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-container {
  position: absolute;
  top: 15px;
  right: 20px;
}

.logo {
  width: 60px;
  height: auto;
}

.store-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4b3f2f;
}

.motto {
  font-size: 1.2rem;
  color: #7a6f5c;
}

/* Navigation Bar */
.navbar {
  background-color: #e0d6ba;
  padding: 0.8rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #4b3f2f;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #9c7c4d;
}

.cart-icon {
  width: 20px;
  vertical-align: middle;
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.hero-container {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  flex: 1 1 300px;
}

.hero-text {
  padding: 1.5rem;
  flex: 1 1 300px;
  text-align: center;
}

.hero-text h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #5c4b35;
}

/* Footer */
.footer {
  background-color: #e0d6ba;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #4b3f2f;
  margin-top: 2rem;
}

.footer a {
  color: #4b3f2f;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logo {
    width: 50px;
  }

  .header-container {
    padding-top: 2.5rem;
  }

  .logo-container {
    top: 10px;
    right: 15px;
  }
}

/* About Us Section */
.about-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.about-container {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex: 1 1 300px;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #5c4b35;
  margin-bottom: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .header-container,
  .hero-container,
  .about-container {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .store-name {
    font-size: 2rem;
  }

  .motto {
    font-size: 1rem;
  }

  .hero-text h2,
  .about-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p,
  .about-text p {
    font-size: 1rem;
  }

  .hero-image,
  .about-image {
    max-width: 100%;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
/* Contact Us Section */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.contact-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #5c4b35;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  color: #5c4b35;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  margin-bottom: 1rem;
  color: #4b3f2f;
}

.contact-form label {
  margin: 0.5rem 0 0.2rem;
  font-weight: 500;
  color: #4b3f2f;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.7rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #7a623a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* Feedback Section */
.feedback-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.feedback-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.feedback-info {
  flex: 1 1 300px;
}

.feedback-info h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1rem;
}

.feedback-info p {
  font-size: 1.1rem;
  color: #5c4b35;
}

.feedback-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.feedback-form label {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #4b3f2f;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 0.6rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-form button {
  margin-top: 1rem;
  padding: 0.7rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.feedback-form button:hover {
  background-color: #7a623a;
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-container {
    flex-direction: column;
  }
}

/* Customer Reviews Section */
.reviews-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.reviews-container {
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.reviews-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 2rem;
}

.review-card {
  background-color: #f6f1e7;
  padding: 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 5px solid #9c7c4d;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #4b3f2f;
}

.review-date {
  font-size: 0.9rem;
  color: #7c6a50;
}

.review-text {
  font-size: 1rem;
  color: #5c4b35;
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}
/* Sign Up Section */
.signup-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.signup-container {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.signup-container h2 {
  text-align: center;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
}

.signup-form label {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #4b3f2f;
}

.signup-form input {
  padding: 0.6rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.signup-form button {
  margin-top: 1.5rem;
  padding: 0.7rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-form button:hover {
  background-color: #7a623a;
}

/* Responsive */
@media (max-width: 600px) {
  .signup-container {
    padding: 1.5rem;
  }
}
/* Sign In Section */
.signin-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.signin-container {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.signin-container h2 {
  text-align: center;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.signin-form {
  display: flex;
  flex-direction: column;
}

.signin-form label {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #4b3f2f;
}

.signin-form input {
  padding: 0.6rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.form-utilities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.forgot-password {
  text-decoration: none;
  color: #9c7c4d;
}

.forgot-password:hover {
  text-decoration: underline;
}

.signin-form button {
  margin-top: 1.5rem;
  padding: 0.7rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signin-form button:hover {
  background-color: #7a623a;
}

/* Responsive */
@media (max-width: 600px) {
  .signin-container {
    padding: 1.5rem;
  }

  .form-utilities {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Donate Section */
.donate-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.donate-container {
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.donate-container h2 {
  text-align: center;
  color: #4b3f2f;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.donate-info {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #5c4b35;
}

.donate-form {
  display: flex;
  flex-direction: column;
}

.donate-form label {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #4b3f2f;
}

.donate-form input,
.donate-form select,
.donate-form textarea {
  padding: 0.6rem;
  margin-top: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.donate-form textarea {
  resize: vertical;
}

.donate-form button {
  margin-top: 1.5rem;
  padding: 0.7rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.donate-form button:hover {
  background-color: #7a623a;
}

.thank-you-message {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: green;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .donate-container {
    padding: 1.5rem;
  }
}
/* Category Section */
.category-section {
  padding: 2rem;
  text-align: center;
}

.category-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card span {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  color: #4b3f2f;
  font-weight: 600;
  background-color: #f4ecd8;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .category-section h2 {
    font-size: 1.5rem;
  }

  .category-card img {
    height: 140px;
  }

  .category-card span {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
/* Product Section */
.product-section {
  padding: 2rem;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h4 {
  margin: 0.8rem 0 0.4rem;
  color: #4b3f2f;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0.2rem 0;
  color: #5c4b35;
  font-size: 0.95rem;
}

.product-card button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #7a623a;
}

.cart-summary {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #4b3f2f;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .product-card img {
    height: 160px;
  }

  .product-card h4 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .cart-summary {
    font-size: 1.2rem;
  }
}
/* Cart Section */
.cart-section {
  padding: 2rem;
  text-align: center;
}

.cart-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.cart-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.cart-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.cart-item h4 {
  margin-bottom: 0.5rem;
  color: #4b3f2f;
}

.cart-item p,
.cart-item label {
  font-size: 0.95rem;
  color: #5c4b35;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 0.3rem;
  font-size: 1rem;
  margin-left: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.cart-total {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #4b3f2f;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .cart-item {
    font-size: 0.9rem;
  }

  .cart-item input[type="number"] {
    width: 50px;
  }

  .cart-total {
    font-size: 1.3rem;
  }
}
/* Product Section */
.product-section {
  padding: 2rem;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h4 {
  margin: 0.8rem 0 0.4rem;
  color: #4b3f2f;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0.2rem 0;
  color: #5c4b35;
  font-size: 0.95rem;
}

.product-card button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #7a623a;
}

.cart-summary {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #4b3f2f;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .product-card img {
    height: 160px;
  }

  .product-card h4 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .cart-summary {
    font-size: 1.2rem;
  }
}
/* Product Section */
.product-section {
  padding: 2rem;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h4 {
  margin: 0.8rem 0 0.4rem;
  color: #4b3f2f;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0.2rem 0;
  color: #5c4b35;
  font-size: 0.95rem;
}

.product-card button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #9c7c4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #7a623a;
}

.cart-summary {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #4b3f2f;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .product-card img {
    height: 160px;
  }

  .product-card h4 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .cart-summary {
    font-size: 1.2rem;
  }
}
/* --- Consistent Footer Style --- */
.footer {
  background-color: #e0d6ba;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  color: #4b3f2f;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
}

.footer p {
  margin: 0.5rem 0;
}

.footer a {
  color: #4b3f2f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #9c7c4d;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
  .footer {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  .footer a {
    display: inline-block;
    margin: 0 4px;
  }
}
/* Category Section */
.category-section {
  padding: 2rem;
  text-align: center;
}

.category-section h2 {
  font-size: 2rem;
  color: #4b3f2f;
  margin-bottom: 1.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.category-card img.category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card span {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  color: #4b3f2f;
  font-weight: 600;
  background-color: #f4ecd8;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .category-section h2 {
    font-size: 1.5rem;
  }

  .category-card img.category-image {
    height: 150px;
  }

  .category-card span {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
