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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-slogan {
  font-size: 0.6rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.2px;
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4a574;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #2c2c2c;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #d4a574;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
}

.header-contact:hover {
  background: #c39563;
  transform: translateY(-1px);
}

.header-contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hero Section */
.hero {
  background: #fafaf8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.hero h1 {
  font-size: 4.5rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  min-height: 5rem;
}

#typed-text {
  display: inline-block;
}

.cursor {
  display: inline-block;
  animation: blink 0.7s infinite;
  font-weight: 400;
  color: #d4a574;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero p {
  font-size: 1.25rem;
  color: #6a6a6a;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #4a4a4a;
  font-weight: 500;
}

.hero-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #d4a574;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background: #d4a574;
  transform: translateY(-2px);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 12px;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Products Section */
.products {
  padding: 6rem 2rem;
  background: #fafaf8;
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
}

.discount-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  z-index: 10;
}

.discount-ribbon span {
  position: absolute;
  display: block;
  width: 120px;
  padding: 8px 0;
  background: #e74c3c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  transform: rotate(45deg);
  top: 18px;
  right: -28px;
}

.product-image {
  height: 200px;
  background: #f5f3f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-info {
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.star {
  color: #ddd;
  font-size: 1rem;
}

.star.filled {
  color: #ffa500;
}

.star.half {
  color: #ffa500;
  opacity: 0.5;
}

.rating-text {
  font-size: 0.85rem;
  color: #6a6a6a;
  font-weight: 500;
}

.product-info p {
  color: #6a6a6a;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.product-price {
  font-size: 1.5rem;
  color: #2c2c2c;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.original-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.discounted-price {
  font-size: 1.5rem;
  color: #e74c3c;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.order-button {
  display: block;
  flex: 1;
  padding: 0.75rem 1rem;
  background: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.order-button:hover {
  background: #d4a574;
  transform: translateY(-2px);
}

.details-button {
  padding: 0.75rem 1rem;
  background: transparent;
  color: #2c2c2c;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #2c2c2c;
  cursor: pointer;
}

.details-button:hover {
  background: #2c2c2c;
  color: #fff;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: #fff;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fafaf8;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: #d4a574;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-author {
  color: #d4a574;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.testimonial-author::before {
  content: "⭐⭐⭐⭐⭐";
  font-size: 0.8rem;
  display: block;
}

/* Footer */
footer {
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c4c4c4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

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

.social-icons {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icons a {
  color: #c4c4c4;
  transition: color 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #d4a574;
}

footer p {
  color: #8a8a8a;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}

/* Social Icons SVG */
.social-icons svg {
  width: 24px;
  height: 24px;
  fill: #c4c4c4;
  transition: fill 0.2s ease;
}

.social-icons a:hover svg {
  fill: #d4a574;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }

  .burger-menu {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-right.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .header-contact {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 0;
  }

  .logo img {
    height: 40px;
  }

  .logo-content {
    gap: 0.1rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-slogan {
    font-size: 0.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -1px;
    min-height: 2.5rem;
  }

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

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-feature-item {
    font-size: 0.85rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-top: 1.25rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .features,
  .products,
  .testimonials {
    padding: 4rem 1.5rem;
  }

  .features h2,
  .products h2,
  .testimonials h2 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .feature-grid,
  .product-grid,
  .testimonial-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .product-info {
    padding: 1.5rem 1.25rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .order-button {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .details-button {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  footer {
    padding: 2.5rem 1.5rem;
  }

  .footer-links {
    gap: 1.5rem;
    flex-direction: column;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .logo-slogan {
    font-size: 0.45rem;
  }

  .header-contact {
    display: none;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    min-height: 2.2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-features {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-feature-item {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .features h2,
  .products h2,
  .testimonials h2 {
    font-size: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .product-image {
    height: 180px;
    font-size: 3.5rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-dialog {
  background: #fff;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: sticky;
  top: 0;
  right: 0;
  float: right;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #999;
  cursor: pointer;
  padding: 1rem;
  line-height: 1;
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #2c2c2c;
}

.modal-body {
  padding: 2rem;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.modal-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.modal-title h2 {
  font-size: 1.75rem;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.modal-title h3 {
  font-size: 1.25rem;
  color: #6a6a6a;
  font-weight: 500;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal-rating .star {
  font-size: 1.5rem;
}

.modal-rating .rating-text {
  font-size: 1rem;
  color: #6a6a6a;
}

.modal-price {
  font-size: 2rem;
  color: #2c2c2c;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-price .original-price {
  font-size: 1.25rem;
}

.modal-price .discounted-price {
  font-size: 2rem;
}

.modal-price .discount-label {
  background: #e74c3c;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-description {
  margin-bottom: 2rem;
}

.modal-description h4 {
  font-size: 1.25rem;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal-description p {
  color: #6a6a6a;
  line-height: 1.8;
  font-size: 1rem;
}

.modal-actions {
  margin-bottom: 2rem;
}

.modal-actions .order-button {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
}

.modal-reviews {
  margin-bottom: 2rem;
}

.modal-reviews h4 {
  font-size: 1.25rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-item {
  padding: 1.25rem;
  background: #fafaf8;
  border-radius: 8px;
  border-left: 3px solid #d4a574;
}

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

.review-author {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 1rem;
}

.review-rating {
  display: flex;
  gap: 0.15rem;
}

.review-rating .star {
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.review-comment {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.95rem;
}

.no-reviews {
  text-align: center;
  color: #999;
  padding: 2rem;
  font-style: italic;
}

.review-form {
  background: #fafaf8;
  padding: 2rem;
  border-radius: 8px;
}

.review-form h4 {
  font-size: 1.25rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a574;
}

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

.star-rating-input input[type="radio"] {
  display: none;
}

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

.star-rating-input input[type="radio"]:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: #ffa500;
}

.submit-review-button {
  width: 100%;
  padding: 1rem;
  background: #d4a574;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-review-button:hover {
  background: #c39563;
  transform: translateY(-2px);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal {
    padding: 1rem;
  }

  .modal-dialog {
    max-height: 95vh;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .modal-icon {
    font-size: 3rem;
  }

  .modal-title h2 {
    font-size: 1.5rem;
  }

  .modal-title h3 {
    font-size: 1.1rem;
  }

  .modal-price {
    font-size: 1.5rem;
    flex-wrap: wrap;
  }

  .modal-price .discounted-price {
    font-size: 1.5rem;
  }

  .review-form {
    padding: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .details-button {
    width: 100%;
  }
}
