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

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: linear-gradient(to bottom, #fff, #fff7ec);
  padding-top: 70px;
}

h1, h2, h3 {
  font-weight: 700;
}

section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("https://images.unsplash.com/photo-1601050690597-2fbd1ef9ccf2") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero.small {
  height: 40vh;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.hero .hero-content button {
  background: #d7c0a1;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.hero .hero-content button:hover {
  background: #b45309;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services {
  background: #fff;
}
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.services .service-card {
  background: #fff7ec;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.services .service-card:hover {
  transform: translateY(-5px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid .gallery-item {
  background: #fcd34d;
  aspect-ratio: 1/1;
  border-radius: 20px;
}

.contact {
  background: #d7c0a1;
  color: #fff;
}
.contact .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.contact .contact-buttons .btn-light,
.contact .contact-buttons .btn-dark {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact .contact-buttons .btn-light {
  background: #fff;
  color: #d7c0a1;
}
.contact .contact-buttons .btn-light:hover {
  background: #fef3c7;
}
.contact .contact-buttons .btn-dark {
  background: #d7c0a1;
  color: #fff;
}
.contact .contact-buttons .btn-dark:hover {
  background: #b45309;
}

footer {
  background: #f9f4ea;
  color: #333;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.contact-form-section {
  padding: 4rem 1.5rem;
  text-align: center;
}
.contact-form-section .contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form-section .contact-form input,
.contact-form-section .contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}
.contact-form-section .contact-form button {
  background: #d7c0a1;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form-section .contact-form button:hover {
  background: #b45309;
}

.contact-info {
  background: #fff7ec;
  padding: 3rem 1.5rem;
  text-align: center;
}

.about-page-section {
  padding: 4rem 1.5rem;
  text-align: center;
}
.about-page-section .about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-page-section .about-content h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}
.about-page-section .about-content p {
  margin-bottom: 1.2rem;
}

.vision-mission {
  background: #fff7ec;
  padding: 4rem 1.5rem;
}
.vision-mission .vm-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.vision-mission .vm-container .vm-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.vision-mission .vm-container .vm-card h3 {
  margin-bottom: 1rem;
}
.vision-mission .vm-container .vm-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  text-align: left;
}

.team {
  padding: 4rem 1.5rem;
  text-align: center;
}
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.team .team-member .photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: #fcd34d;
  border-radius: 50%;
}
.team .team-member h4 {
  font-weight: 600;
}
.team .team-member p {
  font-size: 0.9rem;
  color: #555;
}

.product-filter {
  text-align: center;
  padding: 3rem 1.5rem;
}
.product-filter h2 {
  margin-bottom: 1.5rem;
}
.product-filter .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.product-filter .filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid #d7c0a1;
  background: white;
  color: #d7c0a1;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.product-filter .filter-btn:hover, .product-filter .filter-btn.active {
  background: #d7c0a1;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.product-grid .product-card {
  background: #fff7ec;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.product-grid .product-card:hover {
  transform: translateY(-5px);
}
.product-grid .product-card .product-img {
  background-position: center !important;
  background-size: cover !important;
  height: 150px;
  border-radius: 15px;
  margin-bottom: 1rem;
}
.product-grid .product-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-grid .product-card p {
  font-size: 0.9rem;
  color: #555;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.navbar .nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #d7c0a1;
}
.navbar .logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #d7c0a1;
  text-decoration: none;
}
.navbar .nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar .nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar .nav-menu li a:hover, .navbar .nav-menu li a.active {
  color: #d7c0a1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: background 0.3s ease;
}
.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.modal .modal-content {
  background: #fff;
  max-width: 700px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .modal .modal-content {
    flex-direction: column;
  }
}
.modal .modal-image {
  flex: 1 1 300px;
}
.modal .modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-info {
  flex: 1 1 300px;
  padding: 1.5rem;
}
.modal .modal-info h2 {
  color: #d7c0a1;
  margin-bottom: 0.5rem;
}
.modal .modal-info .category {
  color: #b45309;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.modal .modal-info .description {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal .modal-info .btn-primary {
  background: #d7c0a1;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.modal .modal-info .btn-primary:hover {
  background: #fcd34d;
  color: #d7c0a1;
}
.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  color: #d7c0a1;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-btn:hover {
  color: #fcd34d;
}

.variant-list {
  margin: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 0.8rem 0;
}
.variant-list .variant-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #333;
}
.variant-list .variant-item:not(:last-child) {
  border-bottom: 1px dashed #e0e0e0;
}
.variant-list .variant-item .variant-name {
  font-weight: 500;
}
.variant-list .variant-item .variant-price {
  font-weight: 600;
  color: #fcd34d;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.product-detail {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}
.product-detail .product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .product-detail .product-detail-container {
    flex-direction: column;
  }
}
.product-detail .product-detail-image {
  flex: 1 1 400px;
}
.product-detail .product-detail-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.product-detail .product-detail-info {
  flex: 1 1 400px;
}
.product-detail .product-detail-info h2 {
  color: #d7c0a1;
  margin-bottom: 0.5rem;
}
.product-detail .product-detail-info .category {
  color: #b45309;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-detail .product-detail-info .price {
  font-size: 1.5rem;
  color: #fcd34d;
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-detail .product-detail-info .description {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-detail .product-detail-info .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-detail .product-detail-info .actions .btn-primary {
  background: #d7c0a1;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-detail-info .actions .btn-primary:hover {
  background: #fcd34d;
  color: #d7c0a1;
}
.product-detail .product-detail-info .actions .btn-secondary {
  padding: 0.8rem 1.5rem;
  border: 1px solid #d7c0a1;
  background: transparent;
  color: #d7c0a1;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}
.product-detail .product-detail-info .actions .btn-secondary:hover {
  background: #d7c0a1;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block !important;
  }
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    background: white;
    padding: 1rem 1rem;
    display: none !important;
    border-top: 1px solid #eee;
  }
  .nav-menu.show {
    display: flex !important;
  }
}
