
:root {
  --bg: #fff8e1;
  --accent: #8d6e63;
  --text: #2b2b2b;
}
body {
  background: var(--bg);
  color: var(--text);
}
.navbar .slogan {
  font-size: .75rem;
  color: var(--accent);
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.hero {
  min-height: 380px;
  background: linear-gradient(0deg, rgba(255,248,225,.85), rgba(255,248,225,.85)), url('assets/img/prod_1.jpg') center/cover no-repeat;
  text-align: center;
}
.hero .hero-slogan {
  opacity: 0;
  animation: fadeIn 1s ease .2s forwards;
  color: var(--accent);
  font-weight: bold;
}
.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-primary {
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-primary:hover {
  background-color: var(--accent);
  color: #fff;
}
.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.floating-actions a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.8); display:none; 
  align-items:center; justify-content:center; z-index: 1050;
}
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; border-radius: 6px; }
.lightbox-overlay.show { display:flex; }
@keyframes fadeIn { from {opacity:0} to {opacity:1} }
