/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background: #FFF9F2; /* soft off-white for contrast */
  color: #333;
}

/* Header */
header {
  padding: 30px 20px;
  text-align: center;
  background: #B89A52; /* Mustard Gold */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: white;
}

/* Logo container - stacked vertically */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 12px;
}

.logo-container .logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

header h1 {
  font-size: 2.5em;
  color: white;
  margin: 0;
}

/* Toolbar */
.toolbar {
  background: linear-gradient(90deg, #B89A52, #C3440D, #C599CC);
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 12px 0;
  border-radius: 10px;
  margin-bottom: 20px;
}

.toolbar a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  transition: 0.3s;
}

.toolbar a:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

/* Search and filter */
header input, header select {
  padding: 8px 12px;
  margin: 5px;
  border-radius: 20px;
  border: 1px solid #C599CC;
  outline: none;
  transition: 0.2s;
  width: 200px;
}

header input:focus, header select:focus {
  border-color: #C3440D;
}

/* Product Grid */
#product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px;
}

.product {
  background: #FFF;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid #C3440D;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  margin-bottom: 15px;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  background: #FFF5E4;
}

.product h3 {
  color: #C3440D;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.product .desc {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 10px;
}

.product .price {
  font-weight: bold;
  color: #B89A52;
  font-size: 1.1em;
}

/* Contact Section */
#contact {
  background: #C599CC;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

#contact h2 {
  color: white;
  margin-bottom: 15px;
}

#contact a {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

#lightbox.hidden {
  display: none;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
}

#close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* About / Payment Pages */
.page-content {
  padding: 50px 20px;
  text-align: center;
}

.page-content h1 {
  color: #C3440D;
  margin-bottom: 20px;
}

.page-content h2 {
  color: #B89A52;
  margin-top: 30px;
}

.page-content p, .page-content li {
  color: #333;
  margin: 10px auto;
  max-width: 700px;
  line-height: 1.6;
}

.back-btn {
  margin-top: 40px;
  padding: 10px 20px;
  background-color: #C599CC;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.back-btn:hover {
  background-color: #B89A52;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header input, header select {
    width: 80%;
  }

  .product img {
    max-height: 200px;
  }

  .logo-container .logo {
    width: 120px;
    height: 120px;
  }

  header h1 {
    font-size: 2em;
  }

  .toolbar {
    flex-direction: column;
    gap: 10px;
  }
}
