/* ============================================================
   ALDAY PERÚ - UI KIT CORPORATIVO (Diseño Senior)
   ============================================================ */

/* -----------------------------
   1. Variables de Marca
----------------------------- */
:root {
  /* PRIMARIOS */
  --brand-blue: #3C68AD;
  --brand-green: #189C53;
  --brand-red: #C94B28;
  --brand-yellow: #F2B632;

  /* SECUNDARIOS */
  --brand-softgreen: #ADC0BC;

  /* NEUTROS */
  --neutral-900: #1A1A1A;
  --neutral-700: #4A4A4A;
  --neutral-500: #8A8A8A;
  --neutral-300: #D9D9D9;
  --neutral-100: #F5F5F5;
  --white: #FFFFFF;

  /* GLOBALES */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-soft: 0 8px 20px rgba(0,0,0,0.08);
  --shadow-hard: 0 12px 32px rgba(0,0,0,0.12);
}

/* -----------------------------
   2. Tipografías globales
----------------------------- */
body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-700);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6,
.title {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-900);
  font-weight: 600;
}

/* -----------------------------
   3. Header y Topbar
----------------------------- */

.topbar {
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.9rem;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-700);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue) !important;
}

/* -----------------------------
   4. Botones
----------------------------- */

.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-primary {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-primary:hover {
  background: #315894;
  border-color: #315894;
}

.btn-outline-secondary {
  border-color: var(--neutral-300);
  color: var(--neutral-700);
}

.btn-outline-secondary:hover {
  background: var(--neutral-100);
}

/* -----------------------------
   5. Cards de productos
----------------------------- */

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: .25s;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard);
}

.product-img img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: .3s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-yellow);
  padding: 3px 10px;
  border-radius: 40px;
  font-size: .7rem;
  font-weight: 700;
}

/* -----------------------------
   6. Catálogo / Filtros
----------------------------- */

.catalog-filters {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.catalog-filters input[type="search"]::placeholder {
  color: var(--neutral-500);
}

/* -----------------------------
   7. Footer
----------------------------- */

footer {
  background: var(--neutral-900);
  color: var(--neutral-100);
  padding: 40px 0;
}

footer a {
  color: var(--neutral-100);
}

footer a:hover {
  color: var(--brand-yellow);
}

/* -----------------------------
   8. Utilidades globales
----------------------------- */

.shadow-soft { box-shadow: var(--shadow-soft) !important; }
.bg-brand-blue { background: var(--brand-blue) !important; }
.bg-brand-green { background: var(--brand-green) !important; }
.bg-brand-red   { background: var(--brand-red) !important; }

