feat(conversion): add Interactive Luxury FAQ Accordion and Sticky Mobile Quick Connect Dock

This commit is contained in:
2026-08-30 09:12:13 -07:00
parent e1f03401a8
commit fca19b1b91
4 changed files with 307 additions and 0 deletions
+15
View File
@@ -182,3 +182,18 @@ h1, h2, h3, h4 {
font-size: 16px !important; /* Prevents auto-zoom on iOS */
}
}
.mobile-only-quick-bar {
display: none !important;
}
@media (max-width: 768px) {
.mobile-only-quick-bar {
display: flex !important;
}
}
@keyframes slideUpBar {
from { transform: translateY(100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}