@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Warm Premium Wood & Industrial Corporate Palette */
  --primary: #c26910;
  --primary-hover: #a35308;
  --primary-light: #fef3c7;
  --primary-gradient: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  
  --secondary: #0f172a; /* Slate 900 */
  --secondary-light: #1e293b; /* Slate 800 */
  --secondary-muted: #475569;
  
  --accent: #2563eb; /* Blue trust accent */
  --accent-green: #10b981;
  
  --bg-main: #f8fafc; /* Clean modern slate background */
  --bg-card: #ffffff;
  --bg-soft: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-wood: 0 10px 25px -5px rgba(194, 105, 16, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Base Utilities */
.container-custom {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Wood badge */
.badge-wood {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--primary-light);
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards & Hover Effects */
.card-modern {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-modern:hover {
  transform: translateY(-4px);
  border-color: #fbd38d;
  box-shadow: var(--shadow-xl);
}

/* Product Card Image Zoom */
.img-zoom-container {
  overflow: hidden;
  position: relative;
}
.img-zoom-container img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-modern:hover .img-zoom-container img {
  transform: scale(1.06);
}

/* Buttons */
.btn-wood {
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px 0 rgba(194, 105, 16, 0.35);
  border: none;
  cursor: pointer;
}
.btn-wood:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(194, 105, 16, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: var(--secondary) !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--secondary-muted);
  transform: translateY(-2px);
}

/* Topbar Contact Link */
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #94a3b8;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
  text-decoration: none;
}
.topbar-link:hover {
  color: #ffffff;
}

/* Header Nav Link */
.nav-link-custom {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--secondary);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}
.nav-link-custom:hover {
  color: var(--primary);
  background-color: #fff7ed;
}

/* Section Title */
.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}
