/* Compact Cruise Reservation Desk contact panel */
.crd-popup { position:fixed; left:50%; bottom:18px; z-index:9999; width:min(620px,calc(100vw - 28px)); transform:translate(-50%,calc(100% + 28px)); opacity:0; visibility:hidden; transition:transform .28s ease,opacity .28s ease,visibility .28s ease; }
.crd-popup.is-visible { transform:translate(-50%,0); opacity:1; visibility:visible; }
.crd-popup__card { position:relative; display:grid; grid-template-columns:78px 1fr; align-items:center; gap:13px; min-height:92px; padding:13px 48px 13px 15px; background:#fff; border:1px solid #e5e7eb; border-radius:14px; box-shadow:0 10px 28px rgba(15,23,42,.20); color:#1f2937; }
.crd-popup__image { width:72px; height:72px; object-fit:cover; object-position:center; border-radius:10px; }
.crd-popup__eyebrow { margin:0 0 3px; color:#0a4d8c; font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.crd-popup__title { margin:0; font-size:19px; line-height:1.2; font-weight:800; letter-spacing:-.025em; }
.crd-popup__copy { margin:5px 0 0; font-size:14px; line-height:1.4; }
.crd-popup__phone { color:#e84c16; font-weight:800; text-decoration:none; white-space:nowrap; }
.crd-popup__phone:hover,.crd-popup__phone:focus { text-decoration:underline; }
.crd-popup__close { position:absolute; top:9px; right:10px; display:grid; width:27px; height:27px; place-items:center; border:0; border-radius:50%; background:#9ca3af; color:#fff; cursor:pointer; font-size:24px; line-height:1; }
.crd-popup__close:hover,.crd-popup__close:focus { background:#4b5563; }
@media (max-width:560px) { .crd-popup { bottom:12px; width:calc(100vw - 20px); } .crd-popup__card { grid-template-columns:54px 1fr; gap:10px; min-height:78px; padding:11px 38px 11px 10px; border-radius:12px; } .crd-popup__image { width:52px; height:58px; border-radius:8px; } .crd-popup__eyebrow { font-size:9px; margin-bottom:2px; } .crd-popup__title { font-size:15px; } .crd-popup__copy { margin-top:3px; font-size:12px; line-height:1.35; } .crd-popup__close { top:7px; right:7px; width:23px; height:23px; font-size:20px; } }
@media (prefers-reduced-motion:reduce) { .crd-popup { transition:none; } }
