/* =======================
   Cookie Banner
   ======================= */
.cc-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 1100px;
  padding: 20px 24px;
  background: #0A0A23; /* deep luxury navy */
  color: #FFFFFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100000;
  flex-wrap: wrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  line-height: 1.5;
}
.cc-banner.hidden { display: none; }

.cc-banner h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD700; /* gold for luxury contrast */
}

.cc-banner p {
  margin: 0;
  color: #EAEAEA;
  font-size: 1rem;
}

.cc-banner a {
  color: #D4AF37; /* gold link */
  text-decoration: underline;
  font-weight: 500;
}

/* =======================
   Buttons
   ======================= */
.cc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  transition: all 0.2s ease-in-out;
}

.btn.primary {
  background: #D4AF37; /* gold button */
  color: #0A0A23;       /* deep navy text */
}

.btn.primary:hover {
  background: #FFD700;
  transform: scale(1.05);
}

.btn.secondary {
  background: #444; /* dark gray */
  color: #FFFFFF;
}

.btn.secondary:hover {
  background: #555;
}

.btn.link {
  background: none;
  color: #FFD700;
  border: none;
  text-decoration: underline;
  padding: 0;
}

.btn.link:hover {
  color: #FFE066;
  text-decoration: none;
}

/* =======================
   Modal
   ======================= */
.cc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100001;
  background: rgba(0, 0, 0, 0.7);
}

.cc-modal.hidden { display: none; }

.cc-modal-inner {
  width: 520px;
  max-width: 90%;
  background: #0A0A23;
  color: #FFFFFF;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.cc-modal-footer {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #BBB;
  text-align: center;
}

.cc-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* =======================
   Persistent Left Sidebar
   ======================= */
#cc-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0A0A23;
  color: #FFFFFF;
  border-radius: 0 25px 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  z-index: 100003;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

#cc-sidebar img {
  width: 50px;
  height: auto;
  display: block;
}

#cc-sidebar .btn {
  width: 100%;
  text-align: center;
}

/* =======================
   Floating Panel Icon
   ======================= */
#cc-icon-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #D4AF37; /* gold */
  color: #0A0A23;      /* deep navy text */
  border-radius: 0 25px 25px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 100002;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.35);
  max-width: 300px;
}

#cc-icon-panel img {
  height: 30px;
  width: auto;
}

.cc-text {
  font-size: .9rem;
  line-height: 1.3rem;
  font-weight: 600;
}
