/* VeeBeez custom styles */

/* Cooper BT local declaration (substitute: Playfair Display from Google Fonts) */
@font-face {
  font-family: 'Cooper BT';
  src: local('Cooper BT'), local('CooperBT');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1f1f1f;
}

.font-heading {
  font-family: 'Cooper BT', 'Playfair Display', Georgia, serif;
}

/* Custom accent backgrounds */
.bg-brand-primary {
  background-color: #A57865;
}

.bg-brand-secondary {
  background-color: #F2D9CE;
}

.text-brand-primary {
  color: #A57865;
}

.text-brand-secondary {
  color: #F2D9CE;
}

/* Button transitions */
.btn-primary {
  background-color: #A57865;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background-color: #8a6352;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(165, 120, 101, 0.25);
}

.btn-outline {
  border: 1.5px solid #A57865;
  color: #A57865;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background-color: #A57865;
  color: #fff;
  transform: translateY(-1px);
}

/* Card hover lift */
.card-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

/* Image zoom */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.4s ease;
}

.img-zoom:hover img {
  transform: scale(1.06);
}

/* Mobile menu panel */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Quantity input arrows hidden */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Focus ring */
.focus-ring:focus {
  outline: none;
  ring: 2px;
  ring-offset: 2px;
  --tw-ring-color: #A57865;
}

/* Toast notification */
#toast {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(12px);
}

#toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
