/**
 * COCO CONCIERGE - Premium Chat UI
 * Diseño tipo Intercom/Crisp/Zendesk
 * Compatible con las variables del sitio
 */

/* ============================================
   RESET & NAMESPACE
   ============================================ */
#coco-concierge,
#coco-concierge * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ============================================
   FAB BUTTON (Floating Action Button)
   ============================================ */
#coco-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2147483640;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #0891B2) 0%, var(--primary-dark, #0E7490) 100%);
  box-shadow: 
    0 4px 14px 0 rgba(8, 145, 178, 0.39),
    0 0 0 0 rgba(8, 145, 178, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#coco-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  border-radius: 50%;
}

#coco-fab:hover {
  transform: scale(1.08);
  box-shadow: 
    0 8px 25px 0 rgba(8, 145, 178, 0.45),
    0 0 0 0 rgba(8, 145, 178, 0.4);
}

#coco-fab:active {
  transform: scale(0.95);
}

#coco-fab .fab-icon {
  font-size: 28px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

#coco-fab .fab-close {
  position: absolute;
  font-size: 24px;
  color: white;
  transform: rotate(45deg) scale(0);
  transition: transform 0.3s ease;
}

#coco-fab.is-open .fab-icon {
  transform: scale(0) rotate(-90deg);
}

#coco-fab.is-open .fab-close {
  transform: rotate(0) scale(1);
}

/* Pulse animation on load */
@keyframes coco-pulse {
  0%, 100% { box-shadow: 0 4px 14px 0 rgba(8, 145, 178, 0.39), 0 0 0 0 rgba(8, 145, 178, 0.4); }
  50% { box-shadow: 0 4px 14px 0 rgba(8, 145, 178, 0.39), 0 0 0 12px rgba(8, 145, 178, 0); }
}

#coco-fab.pulse {
  animation: coco-pulse 2s ease-in-out 3;
}

/* Notification badge */
#coco-fab .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--secondary, #F97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

/* ============================================
   CHAT WINDOW
   ============================================ */
#coco-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 400px;
  height: 620px;
  max-height: calc(100vh - 130px);
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 2147483641;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#coco-window.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ============================================
   HEADER
   ============================================ */
#coco-header {
  background: linear-gradient(135deg, var(--primary, #0891B2) 0%, var(--primary-dark, #0E7490) 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

#coco-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.coco-avatar {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.coco-header-info {
  flex: 1;
  min-width: 0;
  color: white;
}

.coco-header-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.coco-header-status {
  font-size: 12px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 6px;
}

.coco-header-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
  animation: coco-online 2s ease-in-out infinite;
}

@keyframes coco-online {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.coco-header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.coco-header-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.coco-header-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

.coco-header-btn:active {
  transform: scale(0.95);
}

/* ============================================
   MESSAGES AREA
   ============================================ */
#coco-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  background: linear-gradient(180deg, #F0F9FF 0%, #F8FAFC 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
#coco-messages::-webkit-scrollbar {
  width: 6px;
}

#coco-messages::-webkit-scrollbar-track {
  background: transparent;
}

#coco-messages::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

#coco-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.2);
}

/* ============================================
   MESSAGE BUBBLES
   ============================================ */
.coco-msg {
  max-width: 85%;
  animation: coco-msg-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes coco-msg-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coco-msg.bot {
  align-self: flex-start;
}

.coco-msg.user {
  align-self: flex-end;
}

.coco-msg-bubble {
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  word-wrap: break-word;
}

.coco-msg.bot .coco-msg-bubble {
  background: white;
  color: var(--gray-800, #1F2937);
  border-radius: 6px 20px 20px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

.coco-msg.user .coco-msg-bubble {
  background: linear-gradient(135deg, var(--primary, #0891B2) 0%, var(--primary-dark, #0E7490) 100%);
  color: white;
  border-radius: 20px 20px 6px 20px;
  box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
}

/* Message formatting */
.coco-msg-bubble strong, 
.coco-msg-bubble b {
  font-weight: 600;
  color: var(--gray-900, #111827);
}

.coco-msg.user .coco-msg-bubble strong,
.coco-msg.user .coco-msg-bubble b {
  color: white;
}

.coco-msg-bubble ul,
.coco-msg-bubble ol {
  margin: 10px 0;
  padding-left: 20px;
}

.coco-msg-bubble li {
  margin-bottom: 6px;
}

.coco-msg-bubble a {
  color: var(--primary, #0891B2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.coco-msg-bubble a:hover {
  color: var(--primary-dark, #0E7490);
  text-decoration: underline;
}

.coco-msg.user .coco-msg-bubble a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
}

/* ============================================
   TYPING INDICATOR
   ============================================ */
#coco-typing {
  display: none;
  align-self: flex-start;
  padding: 14px 20px;
  background: white;
  border-radius: 6px 20px 20px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

#coco-typing.show {
  display: flex;
  gap: 5px;
  align-items: center;
}

#coco-typing span {
  width: 8px;
  height: 8px;
  background: var(--gray-400, #9CA3AF);
  border-radius: 50%;
  animation: coco-typing 1.4s ease-in-out infinite;
}

#coco-typing span:nth-child(2) { animation-delay: 0.15s; }
#coco-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes coco-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* ============================================
   BEACH CARD (Recommendation)
   ============================================ */
.coco-beach-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coco-beach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.coco-beach-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.coco-beach-card-body {
  padding: 16px;
}

.coco-beach-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.coco-beach-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900, #111827);
  display: flex;
  align-items: center;
  gap: 6px;
}

.coco-beach-card-score {
  background: linear-gradient(135deg, #DCFCE7 0%, #D1FAE5 100%);
  color: #16A34A;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.coco-beach-card-meta {
  font-size: 13px;
  color: var(--gray-600, #4B5563);
  margin-bottom: 12px;
  line-height: 1.5;
}

.coco-beach-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.coco-beach-card-tag {
  font-size: 11px;
  padding: 5px 10px;
  background: var(--gray-100, #F3F4F6);
  border-radius: 6px;
  color: var(--gray-600, #4B5563);
}

/* Crowd indicator */
.coco-beach-card-crowd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-500, #6B7280);
  padding-top: 12px;
  border-top: 1px solid var(--gray-100, #F3F4F6);
}

.coco-crowd-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-200, #E5E7EB);
  border-radius: 3px;
  overflow: hidden;
}

.coco-crowd-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.coco-crowd-fill.low { background: #22C55E; }
.coco-crowd-fill.medium { background: #FBBF24; }
.coco-crowd-fill.high { background: #EF4444; }

/* Card actions */
.coco-beach-card-actions {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-50, #F9FAFB);
}

.coco-card-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
}

.coco-card-btn.primary {
  background: linear-gradient(135deg, var(--primary, #0891B2) 0%, var(--primary-dark, #0E7490) 100%);
  color: white;
}

.coco-card-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.coco-card-btn.secondary {
  background: white;
  color: var(--gray-700, #374151);
  border: 1px solid var(--gray-200, #E5E7EB);
  padding: 10px 12px;
}

.coco-card-btn.secondary:hover {
  background: var(--gray-100, #F3F4F6);
}

/* ============================================
   WEATHER CARD
   ============================================ */
.coco-weather-card {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: white;
  border-radius: 16px;
  padding: 20px;
  margin-top: 12px;
}

.coco-weather-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  opacity: 0.9;
}

.coco-weather-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.coco-weather-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.coco-weather-temp {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -2px;
}

.coco-weather-desc {
  font-size: 14px;
  opacity: 0.9;
}

.coco-weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.coco-weather-item {
  text-align: center;
}

.coco-weather-item span {
  display: block;
}

.coco-weather-item .value {
  font-size: 15px;
  font-weight: 600;
}

.coco-weather-item .label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}

/* ============================================
   QUICK REPLIES / CHIPS
   ============================================ */
.coco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  animation: coco-msg-in 0.3s ease;
}

.coco-chip {
  padding: 10px 16px;
  background: white;
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700, #374151);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.coco-chip:hover {
  border-color: var(--primary, #0891B2);
  color: var(--primary, #0891B2);
  background: #F0F9FF;
  transform: translateY(-1px);
}

.coco-chip:active {
  transform: translateY(0);
}

.coco-chip .emoji {
  font-size: 15px;
}

/* ============================================
   QUICK MENU (Initial)
   ============================================ */
#coco-quick-menu {
  padding: 12px 16px;
  background: white;
  border-top: 1px solid var(--gray-100, #F3F4F6);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.coco-quick-btn {
  flex: 1 1 calc(50% - 4px);
  padding: 12px 10px;
  background: var(--gray-50, #F9FAFB);
  border: 1px solid var(--gray-200, #E5E7EB);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700, #374151);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.coco-quick-btn:hover {
  background: white;
  border-color: var(--primary, #0891B2);
  color: var(--primary, #0891B2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(8, 145, 178, 0.1);
}

.coco-quick-btn .emoji {
  font-size: 16px;
}

/* ============================================
   INPUT AREA
   ============================================ */
#coco-input-area {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid var(--gray-100, #F3F4F6);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

#coco-input {
  flex: 1;
  border: 2px solid var(--gray-200, #E5E7EB);
  border-radius: 24px;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  background: var(--gray-50, #F9FAFB);
  color: var(--gray-900, #111827);
}

#coco-input::placeholder {
  color: var(--gray-400, #9CA3AF);
}

#coco-input:focus {
  border-color: var(--primary, #0891B2);
  background: white;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

#coco-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary, #0891B2) 0%, var(--primary-dark, #0E7490) 100%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#coco-send:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

#coco-send:active {
  transform: scale(0.95);
}

#coco-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   QUIZ UI
   ============================================ */
.coco-quiz {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.coco-quiz-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800, #1F2937);
  margin-bottom: 16px;
  text-align: center;
}

.coco-quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  justify-content: center;
}

.coco-quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200, #E5E7EB);
}

.coco-quiz-dot.active {
  background: var(--primary, #0891B2);
}

.coco-quiz-dot.done {
  background: var(--success, #10B981);
}

.coco-quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.coco-quiz-option {
  padding: 14px;
  background: var(--gray-50, #F9FAFB);
  border: 2px solid var(--gray-200, #E5E7EB);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.coco-quiz-option:hover {
  border-color: var(--primary, #0891B2);
  background: #F0F9FF;
}

.coco-quiz-option .emoji {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.coco-quiz-option .text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700, #374151);
}

/* ============================================
   COMPARE VIEW
   ============================================ */
.coco-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.coco-compare-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.coco-compare-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.coco-compare-card .body {
  padding: 12px;
  text-align: center;
}

.coco-compare-card .name {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800, #1F2937);
  margin-bottom: 4px;
}

.coco-compare-card .score {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary, #0891B2);
}

.coco-compare-card .detail {
  font-size: 10px;
  color: var(--gray-500, #6B7280);
  margin-top: 4px;
}

/* ============================================
   TRANSPORT INFO
   ============================================ */
.coco-transport {
  background: white;
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.coco-transport-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800, #1F2937);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coco-transport-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--gray-50, #F9FAFB);
  border-radius: 10px;
  margin-bottom: 8px;
}

.coco-transport-option:last-child {
  margin-bottom: 0;
}

.coco-transport-option .icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.coco-transport-option .info {
  flex: 1;
}

.coco-transport-option .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800, #1F2937);
}

.coco-transport-option .detail {
  font-size: 11px;
  color: var(--gray-500, #6B7280);
}

.coco-transport-option .price {
  font-size: 13px;
  font-weight: 600;
  color: var(--success, #10B981);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  #coco-fab {
    bottom: 20px;
    right: 16px;
    width: 58px;
    height: 58px;
  }
  
  #coco-fab .fab-icon {
    font-size: 26px;
  }
  
  #coco-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    transform-origin: bottom center;
  }
  
  #coco-window.is-open {
    transform: translateY(0);
  }
  
  #coco-header {
    padding: 16px;
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
  }
  
  #coco-messages {
    padding: 16px;
  }
  
  .coco-msg {
    max-width: 88%;
  }
  
  #coco-quick-menu {
    padding: 10px 12px;
  }
  
  .coco-quick-btn {
    padding: 10px 8px;
    font-size: 11px;
  }
  
  #coco-input-area {
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  
  #coco-input {
    padding: 10px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  #coco-send {
    width: 44px;
    height: 44px;
  }
  
  .coco-beach-card-img {
    height: 120px;
  }
  
  .coco-quiz-options {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
#coco-concierge *:focus-visible {
  outline: 2px solid var(--primary, #0891B2);
  outline-offset: 2px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  #coco-concierge *,
  #coco-fab,
  #coco-window {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .coco-msg.bot .coco-msg-bubble {
    border: 2px solid var(--gray-400);
  }
  
  .coco-chip {
    border-width: 2px;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  #coco-concierge {
    display: none !important;
  }
}
