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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #33333c;
  background-color: #f3f3e1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo h1 {
  color: #ff5732;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #33333c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ff5732;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f3f3e1 0%, #fff 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #33333c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: #ff5732;
  margin-bottom: 1rem;
}

.subheadline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff5732;
  color: white;
}

.btn-primary:hover {
  background-color: #e64a2e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #ff5732;
  border: 2px solid #ff5732;
}

.btn-secondary:hover {
  background-color: #ff5732;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #33333c;
  border: 2px solid #33333c;
}

.btn-outline:hover {
  background-color: #33333c;
  color: white;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background-color: #f3f3e1;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #33333c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonial Preview */
.testimonial-preview {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.testimonial-preview h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #33333c;
  margin-bottom: 1rem;
  font-style: italic;
}

.customer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.rating {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ff5732 0%, #e64a2e 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Product Details */
.product-details {
  padding: 4rem 0;
  background-color: white;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.product-info h2 {
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 1rem;
}

.product-subtitle {
  font-size: 1.2rem;
  color: #ff5732;
  margin-bottom: 2rem;
}

.key-benefits h3 {
  color: #33333c;
  margin-bottom: 1rem;
}

.key-benefits ul {
  list-style: none;
  padding-left: 0;
}

.key-benefits li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.key-benefits li:before {
  content: "✓";
  color: #ff5732;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Ingredients Section */
.ingredients {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.ingredients h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 3rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.ingredient-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.ingredient-card h3 {
  color: #33333c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.ingredient-card p {
  color: #666;
  line-height: 1.6;
}

/* Usage Guide */
.usage-guide {
  padding: 4rem 0;
  background-color: white;
}

.usage-guide h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 3rem;
}

.usage-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f3f3e1;
  border-radius: 15px;
}

.step-number {
  background-color: #ff5732;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #33333c;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
}

/* Precautions */
.precautions {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.precautions h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 3rem;
}

.precautions-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.precaution-item {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.precaution-item h3 {
  color: #33333c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.precaution-item p {
  color: #666;
  line-height: 1.6;
}

/* Eco-friendly Section */
.eco-friendly {
  padding: 4rem 0;
  background-color: white;
}

.eco-friendly h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 3rem;
}

.eco-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eco-text h3 {
  color: #33333c;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.eco-text p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.eco-text ul {
  list-style: none;
  padding-left: 0;
}

.eco-text li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.eco-text li:before {
  content: "🌱";
  position: absolute;
  left: 0;
}

.eco-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Review Stats */
.review-stats {
  padding: 3rem 0;
  background-color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #ff5732;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #33333c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.reviews h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 2rem;
}

.review-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #33333c;
  background-color: transparent;
  color: #33333c;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #33333c;
  color: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.customer-info h4 {
  color: #33333c;
  margin-bottom: 0.2rem;
}

.age {
  color: #666;
  font-size: 0.9rem;
}

.review-content p {
  color: #33333c;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  color: #999;
  font-size: 0.9rem;
  text-align: right;
}

.load-more {
  text-align: center;
}

/* Write Review Section */
.write-review {
  padding: 4rem 0;
  background-color: white;
}

.write-review h2 {
  text-align: center;
  font-size: 2rem;
  color: #33333c;
  margin-bottom: 1rem;
}

.write-review p {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.review-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #33333c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff5732;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.2rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffd700;
}

/* FAQ Styles */
.faq-search {
  padding: 2rem 0;
  background-color: white;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
}

.search-box button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.faq-categories {
  padding: 2rem 0;
  background-color: #f3f3e1;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #33333c;
  background-color: transparent;
  color: #33333c;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #33333c;
  color: white;
}

.faq-content {
  padding: 4rem 0;
  background-color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff5732;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #33333c;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #ff5732;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

.contact-support {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.support-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support-box h2 {
  color: #33333c;
  margin-bottom: 1rem;
}

.support-box p {
  color: #666;
  margin-bottom: 2rem;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Contact Styles */
.contact-info {
  padding: 4rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background-color: #f3f3e1;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #33333c;
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff5732;
  margin-bottom: 1rem;
}

.contact-time {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.inquiry-form {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.inquiry-form h2 {
  text-align: center;
  color: #33333c;
  margin-bottom: 1rem;
}

.inquiry-form > p {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group small {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #ff5732;
  border-color: #ff5732;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: "✓";
  color: white;
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 14px;
}

.business-info {
  padding: 4rem 0;
  background-color: white;
}

.business-info h2 {
  text-align: center;
  color: #33333c;
  margin-bottom: 2rem;
}

.business-details {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f3f3e1;
  padding: 2rem;
  border-radius: 15px;
}

.business-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  color: #33333c;
}

.business-item:last-child {
  border-bottom: none;
}

.business-item strong {
  color: #ff5732;
  margin-right: 1rem;
}

.map-section {
  padding: 4rem 0;
  background-color: #f3f3e1;
}

.map-section h2 {
  text-align: center;
  color: #33333c;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.map-placeholder {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: auto;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
}

.map-overlay p {
  margin: 0.5rem 0;
}

.quick-links {
  padding: 4rem 0;
  background-color: white;
}

.quick-links h2 {
  text-align: center;
  color: #33333c;
  margin-bottom: 3rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-link-card {
  background-color: #f3f3e1;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #33333c;
  transition: transform 0.3s ease;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  color: #33333c;
}

.quick-link-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.quick-link-card h3 {
  margin-bottom: 1rem;
}

.quick-link-card p {
  color: #666;
}

/* Footer */
footer {
  background-color: #33333c;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: #ff5732;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: #ccc;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff5732;
}

.footer-links span {
  color: #666;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content,
  .product-showcase,
  .eco-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-direction: column;
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .support-buttons,
  .category-tabs,
  .review-filters {
    flex-direction: column;
    align-items: center;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }

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