/* Reset default margins and spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #fffaf7;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #ffccdd;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

nav a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffe6ee;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff66a5;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #ffe6ee;
  margin-top: 40px;
}
.gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.shop {
  padding: 40px 20px;
  text-align: center;
}

.shop h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff0f5;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 5px;
}

.price {
  font-weight: bold;
  color: #c33;
  margin-bottom: 10px;
}

.buy-btn {
  background-color: #ff66a5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.buy-btn:hover {
  background-color: #e05591;
}
.back-to-top {
  display: inline-block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff66a5;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: background-color 0.2s;
}

.back-to-top:hover {
  background-color: #e05591;
}
.custom-orders {
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.custom-orders h2 {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: bold;
  text-align: left;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  font-size: 1rem;
}

input[type="file"] {
  padding: 5px;
}

.submit-btn {
  margin-top: 25px;
  padding: 12px;
  background-color: #ff66a5;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e05591;
}
