:root {
  --footer-bg-color: #ffd1dc; /* peach-bubblegum */
  --footer-text-color: #333;
  --chat-btn-bg: #ff0066;
  --chat-btn-shadow: #ff33cc;
}

/* Footer layout */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 0 1rem;
  box-sizing: border-box;
  font-size: 14px;
  z-index: 10000;
}

/* Left buttons container */
.footer-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Center text */
.footer-center {
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  flex: 1;
}

/* Stylish footer buttons */
.footer-btn {
  background: linear-gradient(145deg, #ff99cc, #ff66b2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-btn:hover {
  background: linear-gradient(145deg, #ff66b2, #ff3385);
  transform: scale(1.05);
}

/* Talk to Mr. Lad button fixed bottom-right */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--chat-btn-bg);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: bold;
  box-shadow: 0 0 20px var(--chat-btn-shadow);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 10001;
}

.chat-button:hover {
  background: #ff3399;
  box-shadow: 0 0 30px var(--chat-btn-shadow);
}

/* Responsive */
@media (max-width: 480px) {
  .site-footer {
    flex-direction: column;
    height: auto;
    padding: 12px 1rem 70px;
    gap: 10px;
  }
  .footer-left {
    justify-content: center;
    width: 100%;
  }
  .footer-center {
    width: 100%;
  }
  .chat-button {
    padding: 10px 16px;
    font-size: 13px;
  }
}
