* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #fdf6f0;
  color: #333;
  line-height: 1.5;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: #f8d6c1;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 30px;
  color: #6b3e26;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
  color: #6b3e26;
  transition: color 0.3s;
 
}

nav a:hover {
  color: #d9735d;
}

section {
  padding: 60px 50px;
  text-align: center;
}

.hero {
  height: 100vh;
  width: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1470&q=80')
    no-repeat center center/cover;
  color: white;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
 
}

.hero p {
  font-size: 1rem;
  margin-bottom: 30px;
  
}

.btn {
  padding: 12px 30px;
  background: #d9735d;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #b55a45;
}


#about {
  background: #f8d6c1;
  color: #6b3e26;
  border: none;
 
  max-width: 1000px;
  margin: 50px auto;
  padding: 60px;
}

#about h2 {
  font-size: 2rem;
  color: #6b3e26;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#products{
    background: #f8d6c1;
    height:100vh
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
  
}

.product-card {
  background: #fff5f0;
  border-radius: 10px;
  overflow: hidden;
  
  transition: 0.3s;
}



.product-card img {
  width: 100%;
  display: block;
}

.product-info {
  padding: 20px;
  text-align: left;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #6b3e26;
}

.product-info p {
  margin-bottom: 15px;
  color: #555;
}

.btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
  background: #d9735d;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-small:hover {
  background: #b55a45;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #6b3e26;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

footer {
  background: #f8d6c1;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  color: #6b3e26;
}
#cartBox div {
    padding: 12px;
    background: #f7f7f7;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cartBox button {
    padding: 6px 12px;
    background: crimson;
    color: #fff;
    border-radius: 6px;
}

#cartBox button:hover {
    background: red;
}
.search-container {
    text-align: center;
    margin: 20px 0;
}

#searchBar {
    width: 60%;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  nav a {
    margin: 8px;
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  #searchBar {
    width: 90%;
  }
}
