:root {
  --primary-color: #2c1810;
  --secondary-color: #8b4513;
  --accent-color: #d4af37;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --background-light: #faf8f5;
  --background-dark: #f5f2ed;
  --border-color: #e8e3db;
  --shadow-light: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-medium: 0 4px 16px rgba(44, 24, 16, 0.12);
  --shadow-heavy: 0 8px 32px rgba(44, 24, 16, 0.16);
  --gradient-primary: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  --font-serif: 'Crimson Text', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-serif);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand .logo {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
}

.nav-more {
  position: relative;
}

.more-btn {
  background: none;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background: var(--background-dark);
  border-color: var(--secondary-color);
}

.more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.more-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.more-dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  transition: background 0.2s ease;
}

.more-dropdown a:hover {
  background: var(--background-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  width: 200px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
}

.cart-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 12px;
}

.cart-amount {
  font-weight: 500;
  color: var(--text-primary);
}

.cart-count {
  color: var(--text-secondary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(139, 69, 19, 0.5) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description em {
  color: var(--accent-color);
  font-style: italic;
  font-weight: 600;
}

.hero-cta {
  background: var(--gradient-accent);
  color: var(--text-primary);
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  font-family: var(--font-serif);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Process Section */
.process {
  padding: 120px 0;
  background: var(--background-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.process-step {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.process-step p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.process-step em {
  color: var(--secondary-color);
  font-style: italic;
  font-weight: 600;
}

/* Examples Section */
.examples {
  padding: 120px 0;
}

.examples-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.example-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.example-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.example-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: var(--background-dark);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 64px auto 0;
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: white;
  padding: 48px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--secondary-color);
  background: white;
  border-radius: 50%;
  font-size: 20px;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--secondary-color);
  color: white;
}

/* Categories */
.categories {
  padding: 120px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  padding: 32px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.category-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.category-count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
}

/* Products */
.products,
.best-sellers {
  padding: 120px 0;
}

.best-sellers {
  background: var(--background-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-accent);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  z-index: 1;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card > * {
  padding: 0 24px;
}

.product-card .product-image {
  padding: 0;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 20px 0 16px;
  line-height: 1.4;
}

.product-price {
  margin-bottom: 20px;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 14px;
  margin-right: 8px;
}

.price-sale {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.add-to-cart {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}

.add-to-cart:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 8px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.whatsapp-btn span {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .examples-gallery {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
