@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animated-gradient {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #4a3728, #2d2d2d, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floaty { animation: floaty 6s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(30px); transition: all .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.faq-item .faq-body { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .4s ease; }

.float-label { position: relative; }
.float-label input, .float-label textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #d1c4b0;
  padding: 22px 0 8px; color: #1a1a1a; outline: none; font-family: 'Manrope', sans-serif;
}
.float-label label {
  position: absolute; left: 0; top: 22px; color: #8a7560; pointer-events: none;
  transition: all .3s ease; font-size: 14px;
}
.float-label input:focus + label,
.float-label input:not(:placeholder-shown) + label,
.float-label textarea:focus + label,
.float-label textarea:not(:placeholder-shown) + label {
  top: 2px; font-size: 11px; color: #b8955a; letter-spacing: .1em; text-transform: uppercase;
}
.float-label input:focus, .float-label textarea:focus { border-bottom-color: #b8955a; }

.cart-drawer { transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.cart-drawer.open { transform: translateX(0); }
.backdrop { opacity: 0; pointer-events: none; transition: opacity .35s; }
.backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-menu { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.mobile-menu.open { max-height: 600px; }

.marquee { display: flex; gap: 4rem; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.product-card { transition: all .4s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -12px rgba(184,149,90,.20); }

.btn-grow { transition: transform .3s ease, box-shadow .3s ease; }
.btn-grow:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 30px rgba(184,149,90,.35); }

::selection { background: #b8955a; color: #fff; }
html { scroll-behavior: smooth; }
body { background: #ffffff; color: #1a1a1a; }
