
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fefefe;
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}


nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #c9a66b;
  letter-spacing: 1px;
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  list-style: none;
  text-align: center;
}

.menu a {
  color: #666;
  font-weight: 500;
  transition: all 0.3s;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-block;
}

.menu a:hover {
  color: #c9a66b;
  background: #faf7f2;
}


.cart-icon {
  position: relative;
  display: inline-block;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c9a66b;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  min-width: 18px;
  text-align: center;
}


@media (min-width: 600px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 30px;
  }
  
  .logo {
    font-size: 26px;
  }
  
  .menu ul {
    flex-direction: row;
    margin-top: 0;
    gap: 5px;
  }
  
  .menu a {
    padding: 8px 14px;
    font-size: 14px;
  }
}


@media (min-width: 992px) {
  nav {
    padding: 15px 50px;
  }
  
  .menu ul {
    gap: 10px;
  }
  
  .menu a {
    padding: 10px 18px;
    font-size: 15px;
  }
}


#home {
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.85) 0%, rgba(245, 230, 218, 0.9) 100%), 
              url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1200');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #5a4a3a;
}

.hero p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #6b5a4a;
}

.shop-btn {
  background: #c9a66b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}

.shop-btn:hover {
  background: #b8956a;
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  #home {
    height: 450px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .shop-btn {
    padding: 14px 35px;
    font-size: 15px;
  }
}


@media (min-width: 992px) {
  #home {
    height: 480px;
  }
  
  .hero h1 {
    font-size: 52px;
    letter-spacing: 3px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 35px;
  }
}


#about {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

#about h2 {
  font-size: 28px;
  color: #5a4a3a;
  margin-bottom: 20px;
  font-weight: 300;
}

#about p {
  max-width: 100%;
  margin: 0 auto 15px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  padding: 0 10px;
}

@media (min-width: 768px) {
  #about {
    padding: 80px 25px;
  }
  
  #about h2 {
    font-size: 34px;
  }
  
  #about p {
    font-size: 17px;
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  #about {
    padding: 90px 25px;
  }
  
  #about h2 {
    font-size: 38px;
  }
}


#products {
  padding: 60px 20px;
  text-align: center;
  background: #faf9f7;
}

#products h2 {
  font-size: 28px;
  color: #5a4a3a;
  margin-bottom: 35px;
  font-weight: 300;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 100%;
  padding: 0 10px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.4s;
  border: 1px solid #f0ede8;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #f8f7f5;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 18px;
  color: #5a4a3a;
  margin: 10px 0;
  font-weight: 600;
}

.product-card p {
  font-size: 13px;
  margin-bottom: 10px;
  color: #888;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #c9a66b;
  display: block;
  margin-bottom: 15px;
}

.product-card button {
  background: #c9a66b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
}

.product-card button:hover {
  background: #b8956a;
  transform: translateY(-2px);
}

@media (min-width: 480px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }
  
  #products h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .product-card {
    padding: 22px;
  }
  
  .img-container {
    height: 190px;
  }
}


@media (min-width: 992px) {
  #products {
    padding: 90px 25px;
  }
  
  #products h2 {
    font-size: 38px;
    margin-bottom: 50px;
  }
  
  .product-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
  }
  
  .product-card {
    padding: 30px 25px;
  }
  
  .img-container {
    height: 200px;
  }
  
  .product-card h3 {
    font-size: 20px;
  }
  
  .price {
    font-size: 22px;
  }
}

#cart {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.cart-container {
  max-width: 90%;
  margin: 0 auto;
  background: #faf9f7;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid #f0ede8;
}

.cart-container h2 {
  color: #5a4a3a;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 26px;
}

#cart-items {
  min-height: 80px;
  margin-bottom: 15px;
}

.empty-cart {
  color: #aaa;
  font-style: italic;
  font-size: 14px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.cart-item-info strong {
  color: #5a4a3a;
  display: block;
  font-size: 14px;
}

.cart-item-price {
  color: #c9a66b;
  font-weight: 600;
  font-size: 14px;
}

.remove-item {
  background: #e8e8e8;
  color: #888;
  border: none;
  padding: 6px 12px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.remove-item:hover {
  background: #ff6b6b;
  color: #fff;
}

.cart-total h3 {
  color: #5a4a3a;
  margin: 20px 0;
  font-size: 20px;
}

.checkout-btn, .clear-btn {
  padding: 12px 24px;
  border-radius: 22px;
  cursor: pointer;
  margin: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}

.checkout-btn {
  background: #c9a66b;
  color: white;
}

.checkout-btn:hover {
  background: #b8956a;
}

.clear-btn {
  background: #e0e0e0;
  color: #666;
}

.clear-btn:hover {
  background: #ccc;
}


@media (min-width: 600px) {
  #cart {
    padding: 80px 25px;
  }
  
  .cart-container {
    max-width: 500px;
    padding: 35px 30px;
  }
  
  .cart-container h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}


#contact {
  background: #faf9f7;
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0ede8;
}

#contact h2 {
  font-size: 26px;
  color: #5a4a3a;
  margin-bottom: 12px;
  font-weight: 300;
}

#contact p {
  margin-bottom: 22px;
  color: #888;
  font-size: 14px;
}

form input, form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: 1px solid #e8e6e3;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  background: #faf9f7;
}

form input:focus, form textarea:focus {
  border-color: #c9a66b;
  background: #fff;
}

form button {
  background: #c9a66b;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
}

form button:hover {
  background: #b8956a;
}
#form-message {
  margin-top: 18px;
}

.success-message {
  color: #6ab04c;
  background: #f0f9e8;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
}

.error-message {
  color: #eb4d4b;
  background: #fdf0f0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
}

@media (min-width: 600px) {
  #contact {
    padding: 80px 25px;
  }
  
  .contact-container {
    max-width: 500px;
    padding: 40px 30px;
  }
  
  #contact h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  #contact p {
    margin-bottom: 28px;
    font-size: 15px;
  }
  
  form input, form textarea {
    padding: 14px 18px;
    margin-bottom: 15px;
    font-size: 15px;
  }
  
  form button {
    padding: 14px 35px;
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  #contact {
    padding: 90px 25px;
  }
  
  .contact-container {
    max-width: 550px;
    padding: 45px 35px;
  }
  
  #contact h2 {
    font-size: 32px;
  }
}
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c9a66b;
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
  transform: translateY(100px);
  transition: transform 0.4s ease;
  z-index: 1000;
  font-size: 14px;
  font-weight: 500;
}

.cart-notification.show {
  transform: translateY(0);
}


@media (max-width: 480px) {
  .cart-notification {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}


footer {
  background: #5a4a3a;
  color: #d4c4b0;
  padding: 40px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #c9a66b;
}

.footer-logo p {
  font-size: 13px;
  color: #a89b8a;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #c9a66b;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #d4c4b0;
  display: block;
  margin: 6px 0;
  transition: all 0.3}