.link-button { padding: 0; border: 0; background: none; color: inherit; cursor: pointer; }
.solution-link { position: absolute; z-index: 1; bottom: 27px; padding: 0; border: 0; background: none; color: #997736; font-size: .88rem; font-weight: 700; cursor: pointer; }
.solution-link:after { content: "  →"; color: #c5a059; }
.button { border: 0; cursor: pointer; }
.drawer-active { overflow: hidden; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(28, 25, 23, 0.45);
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .3s ease;
}
.drawer-overlay.open { opacity: 1; }
.product-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 41;
  width: min(520px, 100%);
  padding: 34px 28px 44px;
  background: #FAF9F5;
  border-left: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: -30px 0 90px rgba(197, 160, 89, 0.18), -10px 0 30px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .34s cubic-bezier(.22, .75, .2, 1), visibility .34s;
}
.product-drawer.open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.drawer-kicker { display: block; color: #997736; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.drawer-head h2 { margin-top: 6px; font-size: clamp(2.2rem, 6vw, 3.25rem); color: #1c1917; font-family: "Manrope", sans-serif; }
.drawer-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 14px;
  background: #ffffff;
  color: #1c1917;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.drawer-close:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: #c5a059;
  transform: scale(1.05);
}
.drawer-intro { max-width: 420px; margin: 15px 0 30px; color: #57534e; font-size: 0.95rem; line-height: 1.6; }
.drawer-section + .drawer-section { margin-top: 30px; }
.drawer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #78716c;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.drawer-label b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.15);
  color: #997736;
  font-weight: 800;
}
.product-list { display: grid; gap: 9px; }
.drawer-product {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(197, 160, 89, 0.05);
  transition: .22s ease;
  text-decoration: none;
  color: inherit;
}
.drawer-product:hover {
  transform: translateX(-4px);
  border-color: #c5a059;
  background: rgba(197, 160, 89, 0.08);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.14);
}
.drawer-product i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #dfba73, #c5a059);
  color: #1c1917;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.22);
}
.drawer-product:nth-child(3n+2) i {
  background: linear-gradient(145deg, #ebd399, #dfba73);
  color: #1c1917;
}
.drawer-product:nth-child(3n) i {
  background: linear-gradient(145deg, #d4af37, #997736);
  color: #ffffff;
}
.drawer-product strong, .drawer-product small { display: block; }
.drawer-product strong { font: 700 .96rem "Manrope", sans-serif; color: #1c1917; }
.drawer-product small { margin-top: 2px; color: #78716c; font-size: .75rem; }
.drawer-product em { color: #997736; font-style: normal; font-weight: 800; }
.footer-links .link-button { font-size: .88rem; }
@media(max-width:620px) {
  .product-drawer { padding: 26px 18px 38px; }
  .drawer-product { grid-template-columns: 44px 1fr auto; }
  .drawer-product i { width: 44px; height: 44px; }
}
