/* ==========================================================
   PIMEL STORE - ESTILOS PERSONALIZADOS & PALETA EDITORIAL
   ========================================================== */

:root {
  --color-charcoal: #141414;
  --color-sand: #F7F4EE;
  --color-sand-dark: #EAE4D9;
  --color-gold: #C59B6D;
  --color-gold-hover: #B08557;
  --color-terracotta: #D48166;
  --color-muted: #7E7A75;
  --color-border: #E8E2D8;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.filter-btn.active {
  background-color: var(--color-charcoal) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(20, 20, 20, 0.15);
}

.product-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

.product-card:hover .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

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

.animate-fadeIn {
  animation: fadeIn 0.25s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #FAF8F5;
}
::-webkit-scrollbar-thumb {
  background: #D9D2C6;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}
