#faqPage .faq-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

#faqPage .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

#faqPage .faq-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#faqPage .faq-item {
  background: #2b2b2b;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

#faqPage .faq-item:hover {
  border-color: #d4af37;
}

#faqPage .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

#faqPage .faq-question:hover {
  background: rgba(212, 175, 55, 0.12);
}

#faqPage .faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
}

#faqPage .faq-answer {
  display: none;
  padding: 18px 20px;
  border-top: 1px solid #3a3a3a;
  background: #1f1f1f;
}

#faqPage .faq-answer-content {
  white-space: pre-wrap;
  line-height: 1.6;
}

#faqPage .faq-media-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

#faqPage .faq-video {
  width: 100%;
  min-height: 220px;
  border-radius: 6px;
}

#faqPage .faq-attachments {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

#faqPage .faq-attachments li {
  margin-bottom: 6px;
}

#faqPage .faq-attachments a {
  color: #0dcaf0;
  text-decoration: none;
}

#faqPage .faq-attachments a:hover {
  text-decoration: underline;
}

#faqPage .faq-form-container {
  margin-top: 30px;
  padding: 25px;
  background: #262626;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
}

@media (max-width: 768px) {
  #faqPage .faq-controls {
    flex-direction: column;
    align-items: stretch;
  }

  #faqPage .faq-question {
    font-size: 0.95rem;
  }

  #faqPage .faq-video {
    min-height: 180px;
  }
}

.support-intro {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.support-form {
  margin-top: 25px;
  background: #262626;
  border-radius: 12px;
  border: 1px solid #3a3a3a;
  padding: 25px;
}

.support-section {
  border-top: 1px solid #3a3a3a;
  padding-top: 20px;
}

.support-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.support-attachment-list,
.support-video-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-attachment-item {
  background: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.support-video-upload {
  background: #1f1f1f;
  border: 1px dashed #3a3a3a;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.support-video-entry {
  background: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 10px 12px;
}

.support-video-entry iframe {
  width: 100%;
  min-height: 220px;
  border-radius: 6px;
}

.support-human-check {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.support-human-check input {
  max-width: 120px;
}

.support-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}

.support-ticket-card {
  background: #262626;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 18px;
}

.support-ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.support-ticket-topic {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.support-ticket-date {
  display: block;
  font-size: 0.85rem;
  color: #bbb;
  margin-top: 4px;
}

.support-ticket-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: capitalize;
}

.support-ticket-status-open {
  background: rgba(13, 202, 240, 0.2);
  color: #0dcaf0;
}

.support-ticket-status-responded {
  background: rgba(25, 135, 84, 0.2);
  color: #19b56f;
}

.support-ticket-status-closed {
  background: rgba(255, 193, 7, 0.2);
  color: #ffca2c;
}

.support-ticket-body {
  display: grid;
  gap: 15px;
}

.support-ticket-description {
  white-space: pre-wrap;
  line-height: 1.6;
  margin: 0;
}

.support-response-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.support-response-block {
  background: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
}

.support-response-meta {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 6px;
}

.support-response-text {
  white-space: pre-wrap;
  line-height: 1.5;
}

.support-attachment-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0 0;
}

.support-attachment-list li {
  margin-bottom: 4px;
}

.support-attachment-list a {
  color: #0dcaf0;
  text-decoration: none;
}

.support-attachment-list a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .support-form {
    padding: 18px;
  }

  .support-video-entry iframe {
    min-height: 180px;
  }
}
/* Reset default styles */
*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* Clearfix */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Body */
body {
  background-color: #171010;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: #dcdcdc;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
header.public {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

#header-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  flex: 1;
  min-width: 0;
}

#brand-image img {
  max-width: 100px;
  height: auto;
}

#brand-menu {
  margin-left: 10px;
  position: relative;
}

#brand-text img {
  max-width: 100%;
  height: auto;
  max-height: 48px;
}

#btn-login, #btn-logout {
  display: none;
}

/* Ocultar el menú principal en pantallas pequeñas por defecto */
@media (max-width: 767px) {
  #menu-main.nav-menu {
    display: none;
  }
  
  .hamburger-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

#menu-main {
  margin-top: 10px;
  position: relative;
}

#menu-main ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

#menu-main li {
  margin-right: 20px;
  padding-bottom: 6px;
}

#menu-main li a {
  font-family: "Arvo", Georgia, serif;
  font-size: 19px;
  line-height: 21px;
  color: #a0a0a0;
  font-weight: bold;
  text-decoration: none;
}

#menu-main li.current, #menu-main li.active {
  border-bottom: 3px solid #fc6621;
}

#header-right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  top: 25px;
  right: 15px;
  z-index: 100;
}

#header-right .search {
  position: relative;
  margin-right: 10px;
}

#header-right .search #searchfield {
  width: 165px;
  height: 34px;
  font-family: "Arvo", Georgia, serif;
  font-size: 14px;
  color: #707070;
  padding: 8px;
  border: 1px solid #707070;
  background: transparent;
  font-weight: bold;
}

#header-right .search #searchbutton {
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  background-image: url(../img/lupita.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

#header-right .loginout a {
  font-family: "Arvo", Georgia, serif;
  font-size: 18px;
  color: #fff;
  padding: 9px 15px;
  background-color: #851b0c;
  border-bottom: 3px solid #561208;
  text-decoration: none;
  font-weight: bold;
}

/* Main Content */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.contenidoPpal {
  width: 100%;
  background: #73261c url(../img/patron.jpg);
  padding: 15px;
}

.innerpage-header {
  width: 100%;
  padding: 0;
}

.innerpage-header h1 {
  font-family: "Arvo", Georgia, serif;
  font-size: 22px;
  line-height: 24px;
  color: #fff;
  margin: 14px 0;
  width: 50%;
}

.row-border {
  width: 100%;
  height: 1px;
  background-color: #72180a;
  margin: 15px 0;
}

/* Form (for desires.html) */
#mydesires form {
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
}

#mydesires input,
#mydesires select,
#mydesires textarea {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #222;
  color: #eee;
  font-size: 14px;
}

#mydesires button {
  padding: 10px 18px;
  background-color: #b71c1c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
}

#mydesires button:hover {
  background-color: #d32f2f;
}

/* Table (for desires.html) */
#desiresTable {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
}

/* Modal (for desires.html) */
.modal-content {
  background-color: #171010;
  color: #ffffff;
  border: none;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.modal-content h3 {
  font-family: "Arvo", serif;
  font-weight: 700;
}

.modal-content button {
  color: #ffffff;
  border-color: #ffffff;
}

.modal-content button:hover {
  background-color: #ffffff;
  color: #171010;
}

#messagesList div {
  margin-bottom: 10px;
}

#modalViewContent p {
  margin: 5px 0;
}

/* Modal de Vista de Deseo (Mejorado) */
#modalViewContent {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

#modalViewContent .view-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

#modalViewContent .view-row:last-child {
  border-bottom: none;
}

#modalViewContent .view-label {
  font-weight: bold;
  color: #adb5bd; /* Gris claro para la etiqueta */
}

#modalViewContent .view-value {
  text-align: right;
}
/* Chat Messages (for desires.html) */
#view-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
}

.chat-row {
  display: flex;
  margin: 5px 0;
}

.bubble-left {
  justify-content: flex-start;
  color: black;
}

.bubble-right {
  justify-content: flex-end;
  color: darkred;
}

.chat-bubble {
  max-width: 70%;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: #fff;
  position: relative;
}

.bubble-left .chat-bubble {
  background: #e0f7fa;
  border-bottom-left-radius: 0;
}

.bubble-right .chat-bubble {
  background: #c8e6c9;
  border-bottom-right-radius: 0;
}

.chat-sender {
  font-weight: bold;
  font-size: 0.85em;
  margin-bottom: 3px;
}

.chat-text {
  font-size: 1em;
  margin-bottom: 4px;
}

.chat-time {
  font-size: 0.75em;
  color: #666;
  text-align: right;
}

/* Chat Modal Styles (Dark Theme) */
.chat-container {
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
  background: #212529; /* Dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-row {
  display: flex;
}

.chat-row.sent {
  justify-content: flex-end;
}

.chat-row.received {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  line-height: 1.4;
}

.chat-bubble.sent {
  background-color: #b71c1c; /* Main red color for user */
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble.received {
  background-color: #495057; /* Gray for admin */
  color: #f8f9fa;
  border-bottom-left-radius: 4px;
}

.chat-bubble .chat-sender {
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 4px;
  display: block;
}

.chat-bubble .chat-time {
  font-size: 0.75em;
  color: #ced4da;
  text-align: right;
  margin-top: 5px;
  display: block;
}

.chat-input-area {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
/* Login Form (for login.html) */
.login-form {
  max-width: 70%;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column-login {
  flex: 1 1 50%;
  max-width: 50%;
}

.left-column-login img.screen-sm {
  max-width: 100%;
  height: auto;
  display: block;
}

.right-column {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 15px;
}

.member-login-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 8px;
}

.member-login-box .login-header h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.member-login-box .nav-tabs {
  border-bottom: 2px solid #fc6621;
  background-color: #0d0d0d;
}

.member-login-box .nav-tabs .nav-link {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #a0a0a0;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: #0d0d0d;
  padding: 10px 15px;
}

.member-login-box .nav-tabs .nav-link.active {
  color: #ffffff;
  border-bottom: 3px solid #fc6621;
  background-color: #b71c1c;
}

.member-login-box .nav-tabs .nav-link:hover {
  color: #ffffff;
  border-bottom: 3px solid #fc6621;
  background-color: #851b0c;
}

.member-login-box .form-control {
  background-color: #222;
  border: 1px solid #444;
  color: #eee;
  border-radius: 6px;
}

.member-login-box .btn-primary {
  background-color: #b71c1c;
  border: none;
}

.member-login-box .btn-primary:hover {
  background-color: #d32f2f;
}

.member-login-box .btn-danger {
  background-color: #851b0c;
  border: none;
}

.member-login-box .btn-danger:hover {
  background-color: #a3210f;
}

.member-login-box .btn-success {
  background-color: #2e7d32;
  border: none;
}

.member-login-box .btn-success:hover {
  background-color: #388e3c;
}

/* Enter-Exit Page (for filter.html) */
.enter-exit {
  max-width: 70%;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column {
  flex: 1 1 50%;
  max-width: 50%;
}

.left-column img.screen-sm {
  max-width: 100%;
  height: auto;
  display: block;
}

.right-column {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 15px;
}

.right-column h1.center {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-column p.center {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.enter-exit-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.enter-exit-buttons .button a {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.enter-exit-buttons .button.enter-accepted a {
  background-color: #b71c1c;
}

.enter-exit-buttons .button.enter-accepted a:hover {
  background-color: #d32f2f;
}

.enter-exit-buttons .button.exit a {
  background-color: #532b2b;
}

.enter-exit-buttons .button.exit a:hover {
  background-color: #422222;
}

.right-column p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}

.right-column ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.right-column ol li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.right-column a.emphasized {
  color: #fc6621;
  text-decoration: underline;
}

/* Visit Us Page (for visit-us.html) */
#visit-us {
  width: 100%;
  max-width: 100%;
}

#caribbean-experience {
  font-family: "Arvo", serif;
  padding: 2em 15px;
  color: #fff;
  line-height: 1.6;
}

#caribbean-experience p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 2em;
  text-align: center;
}

#caribbean-experience h3 {
  font-size: 1.5em;
  margin-top: 2em;
  text-align: center;
  color: #fc6621;
}

#caribbean-experience ul {
  max-width: 800px;
  margin: 1em auto;
  font-size: 1.3em;
  list-style-position: outside;
  padding-left: 20px;
}

#caribbean-experience ul li {
  margin-bottom: 10px;
}

.destination {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 2em;
  background: rgba(0, 0, 0, 0.25);
  padding: 0px;
  border-radius: 8px;
}

.destination-text {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 0 5px;
}

.destination-text h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}

.destination-text p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.destination-text a {
  color: #fc6621;
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1em;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.destination-gallery {
  flex: 1 1 50%;
  max-width: 50%;
}

.glider-contain {
  width: 100%;
  border: 2px solid #fc6621;
  border-radius: 8px;
  padding: 5px;
}

.glider img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Upcoming Shows (for upcoming-shows.html) */
#upcoming-shows-cat {
  width: 100%;
  max-width: 100%;
}

#upcoming-shows-cat .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

/* Previous Shows (for previous-shows.html) */
#previous-shows-cat {
  width: 100%;
  max-width: 100%;
}

#previous-shows-cat .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

/* The Men (for the-men.html) */
#modelsCatalog {
  width: 100%;
  max-width: 100%;
}

#modelsCatalog .content,
#performersCatalog {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.model-list-item {
  flex: 1 1 calc(25% - 15px);
  max-width: calc(25% - 15px);
  min-width: calc(25% - 15px);
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
}

.model-list-item a {
  text-decoration: none;
}

.model-image {
  margin: 0;
}

.model-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.model-image img:hover {
  transform: scale(1.05);
}

.model-image figcaption {
  font-family: "Arvo", Georgia, serif;
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: bold;
}

/* Model Page (for yeiber.html) */
#modelPage {
  width: 100%;
  max-width: 100%;
}

#modelPage .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

.model-related-container {
  width: 100%;
}

.model-details-top {
  margin-bottom: 30px;
}

.model-details {
  width: 100%;
  display: flex;
}

.model-img-div {
  width: 50%;
}

.model-img-div img {
    width: 100%;
    /* height: auto; */
    border-radius: 8px;
    margin: 0px;
}

.model-videos {
  float: right;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-item {
    width: 100%; /* Ocupa todo el ancho disponible */
    display: block; /* Se comporta como un bloque, uno debajo del otro */
    margin: 1.5em 0; /* Margen vertical, sin margen horizontal */
}

.video-item h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.video.player.flowplayer {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.video.player.flowplayer .fp-ratio {
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video.player.flowplayer .fp-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.video.player.flowplayer a {
  display: block;
  width: 100%;
  height: 100%;
}

.model-info {
    float: left;
    width: 49%;
    max-width: 49%;
    padding-left: 3em;
}

.model-description p {
  font-family: "Arvo", Georgia, serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

.model-stats p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.model-stats .model-stats-header {
  font-weight: bold;
  color: #fc6621;
}

.model-contact-block {
  margin-top: 12px;
}

.model-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0 0;
}

.model-contact-list li {
  margin-bottom: 6px;
}

.model-contact-list a {
  color: #d4af37;
  text-decoration: none;
}

.model-contact-list a:hover {
  text-decoration: underline;
}

.freePics-row .content {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

/* En móvil, reducir gap para que quepan 3 fotos */
@media (max-width: 767px) {
  .freePics-row .content {
    gap: 10px !important;
  }
}

.freePics-row .model-list-item,
.freePics-row .free-pic-item {
  flex: 1 1 calc(33.333% - 14px) !important; /* Desktop: 3 por línea */
  max-width: calc(33.333% - 14px) !important;
  min-width: calc(33.333% - 14px) !important;
  width: auto !important; /* Evitar que tome el 100% */
}

.freePics-row .model-list-item img {
  width: 100%;
  height: auto;
  max-height: 387px;
  object-fit: cover;
}

/* ==========================================================================
   Estilos para el Menú de Navegación Responsivo
   ========================================================================== */

/* --- Configuración Base (Móvil primero) --- */
/* 1. Botón de hamburguesa: Oculto en escritorio, visible en móvil */
.hamburger-menu {
  display: none; /* Oculto por defecto */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  margin-right: 15px; /* Espacio entre la hamburguesa y el logo */
  padding: 0;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Footer */
footer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
}

.footer-links {
  margin-bottom: 30px;
  padding: 20px 0;
  text-align: center;
}

.footer-links a {
  display: inline-block;
  margin-right: 20px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

#social-helpdesk {
  padding: 45px 0;
  text-align: center;
}

#social-helpdesk h2 {
  font-family: "Arvo", Georgia, serif;
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: bold;
}

#helpdesk .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 17px;
}

#helpdesk .row div {
  flex: 1 1 18%;
  margin: 0 0.5%;
}

#helpdesk .helpdesk-button a {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  background-color: #532b2b;
  border-bottom: 3px solid #422222;
  color: #fff;
  text-decoration: none;
}

.nav-link {
  color:white;
}

/* Media Queries for Responsiveness */
@media (min-width: 960px) {
  .login-form, .enter-exit, .destination {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  #header-left {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    position: relative;
  }

  #header-right {
    position: absolute;
    top: 10px;
    right: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  #brand-menu {
    margin-left: 0;
    margin-top: 10px;
    position: relative;
  }

  #menu-main ul {
    justify-content: center;
  }

  #menu-main li {
    margin-right: 10px;
  }

  #header-right .search #searchfield {
    width: 100%;
    max-width: 200px;
  }

  #mydesires form {
    max-width: 100%;
    padding: 10px;
  }

  #desiresTable {
    font-size: 12px;
  }

  #helpdesk .row div {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }

  .login-form, .enter-exit {
    flex-direction: column;
    max-width: 90%;
  }

  .left-column-login, .right-column, .left-column {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .destination {
    flex-direction: column;
  }

  .destination-text, .destination-gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .model-details {
    display: block;
  }

  .model-img-div {
      width: 100%;
  }

  .model-videos {
    float: none;
    max-width: 100%;
  }

  .video-item {
    width: 100%;
    display: inline-block;
    margin: 0em;
}

  .model-info {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
    margin-top:  2.5em;
  }

  .model-list-item {
    flex: 1 1 calc(45% - 10px);
    max-width: calc(45% - 10px);
    min-width: calc(45% - 10px);
    padding: 0 5px;
  }

  .freePics-row .model-list-item {
    flex: 1 1 calc(33.333% - 14px) !important; /* 3 por línea también en tablet */
    max-width: calc(33.333% - 14px) !important;
    min-width: calc(33.333% - 14px) !important;
  }
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.5); /* Más atenuado */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px; /* Más pequeño */
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  opacity: 0.7; /* Más atenuado */
  line-height: 1;
  padding: 0;
}

.image-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.image-modal-prev,
.image-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px; /* Más pequeño */
  height: 45px; /* Más pequeño */
  background: rgba(0, 0, 0, 0.5); /* Más atenuado */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 28px; /* Más pequeño */
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  opacity: 0.7; /* Más atenuado */
  line-height: 1;
  padding: 0;
}

.image-modal-prev {
  left: 15px;
}

.image-modal-next {
  right: 15px;
}

.image-modal-prev:hover,
.image-modal-next:hover {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.image-modal-counter {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 10002;
}

/* Make free pics clickable */
.freePics-row .model-list-item {
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.freePics-row .model-list-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .image-modal-content {
    max-width: 95%;
    max-height: 95vh;
  }

  .image-modal-content img {
    max-height: 90vh;
  }
  
  .image-modal-close {
    top: 10px;
    right: 10px;
    width: 30px; /* Más pequeño en móvil */
    height: 30px; /* Más pequeño en móvil */
    font-size: 20px; /* Más pequeño en móvil */
  }
  
  .image-modal-prev,
  .image-modal-next {
    width: 40px; /* Más pequeño en móvil */
    height: 40px; /* Más pequeño en móvil */
    font-size: 24px; /* Más pequeño en móvil */
  }
  
  .image-modal-prev {
    left: 10px;
  }
  
  .image-modal-next {
    right: 10px;
  }
  
  .image-modal-counter {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }

  #header-right .search #searchfield {
    width: 100%;
    max-width: 150px;
  }

  #helpdesk .row div {
    flex: 1 1 100%;
  }

  .modal-content {
    max-width: 95%;
    padding: 15px;
  }

  .login-form, .enter-exit {
    max-width: 95%;
    padding: 10px;
  }

  .member-login-box .login-header h2, .right-column h1.center {
    font-size: 20px;
  }

  .member-login-box .nav-tabs .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  #caribbean-experience p, #caribbean-experience ul {
    font-size: 1.1em;
  }

  #caribbean-experience h3 {
    font-size: 1.3em;
  }

  .destination-text h3 {
    font-size: 1.2em;
  }

  .model-list-item {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    padding: 0 5px;
  }

  /* Free pics en móvil: 3 por línea */
  .freePics-row .model-list-item {
    flex: 1 1 calc(33.333% - 7px) !important;
    max-width: calc(33.333% - 7px) !important;
    min-width: calc(33.333% - 7px) !important;
    padding: 0;
  }

  .freePics-row .model-list-item img {
    width: 100%;
    height: auto;
    max-height: 250px;
    min-height: 150px;
    object-fit: cover;
  }

  /* Mostrar la hamburguesa en móvil */
  .hamburger-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }
  
  .hamburger-menu span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Menú oculto por defecto en móvil */
  #menu-main.nav-menu {
    display: none !important;
    position: fixed !important;
    top: auto !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background-color: #171010 !important;
    padding: 20px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  /* Cuando el menú está activo, mostrarlo */
  #menu-main.nav-menu.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
  }

  /* Estilos para el menú cuando está activo */
  #menu-main.nav-menu.active ul {
    flex-direction: column !important; /* Apilar los elementos verticalmente */
    align-items: flex-start !important;
    display: flex !important;
  }

  #menu-main.nav-menu.active ul li {
    margin: 10px 0 !important; /* Espaciado vertical */
    width: 100% !important;
    text-align: left !important;
  }

  #menu-main.nav-menu.active ul li a {
    font-size: 18px !important;
    padding: 10px 0 !important;
    display: block !important;
    color: #fff !important;
  }
}

.video-testing-header {
  margin-top: 20px;
}

.video-testing-upload {
  border: 2px dashed #444;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  background: #1f1f1f;
  transition: 0.2s ease;
  cursor: pointer;
}

.video-testing-upload p {
  margin-bottom: 6px;
}

.video-testing-upload.dragover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
}

.video-testing-upload.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.video-testing-progress {
  margin-top: 15px;
  color: #fff;
}

.video-testing-grid {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.video-testing-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  color: #fff;
}

.video-testing-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.video-testing-card iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
}

.video-testing-card .video-testing-meta {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 10px;
}

.video-testing-card .btn-delete-video {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* ==========================================================================
   Video Manager (Mux)
   ========================================================================== */
.muxvm-wrapper {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  color: #f5f5f5;
}

.muxvm-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.muxvm-title {
  font-family: 'Arvo', serif;
  font-size: 1.25rem;
  color: #fff;
}

.muxvm-meta {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: #ccc;
}

.muxvm-alert {
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}

.muxvm-alert.info {
  display: block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #f5d88b;
}

.muxvm-alert.success {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
}

.muxvm-alert.error {
  display: block;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.35);
  color: #f08b7a;
}

.muxvm-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.muxvm-slot {
  background: #151515;
  border: 2px dashed #3a3a3a;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}

.muxvm-slot.filled {
  border-style: solid;
  border-color: rgba(212, 175, 55, 0.6);
}

.muxvm-slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.muxvm-slot-title {
  font-weight: 600;
  color: #f0f0f0;
}

.muxvm-slot-status {
  font-size: 0.8rem;
  padding: 4px 10px;
  background: #2a2a2a;
  border-radius: 999px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.muxvm-slot-status.processing {
  color: #f5d88b;
}

.muxvm-slot-status.error {
  color: #f48b7a;
}

.muxvm-video-preview iframe,
.muxvm-video-preview video {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  background: #000;
}

.muxvm-file-input {
  width: 100%;
  padding: 10px;
  background: #0f0f0f;
  border: 1px solid #333;
  color: #f5f5f5;
  border-radius: 6px;
}

.muxvm-file-info {
  font-size: 0.9rem;
  color: #ccc;
  background: #1f1f1f;
  padding: 10px;
  border-radius: 6px;
}

.muxvm-progress {
  height: 18px;
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.muxvm-progress.visible {
  display: block;
}

.muxvm-progress-fill {
  height: 100%;
  width: 0%;
  background: #d4af37;
  transition: width 0.25s ease;
}

.muxvm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muxvm-actions button {
  flex: 1;
  min-width: 120px;
  background: #d4af37;
  color: #121212;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.muxvm-actions button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
}

.muxvm-actions button:disabled {
  background: #333;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
}

.muxvm-actions .danger {
  background: #c0392b;
  color: #fff;
}

.muxvm-actions .secondary {
  background: #323232;
  color: #f5f5f5;
}

.muxvm-note {
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 600px) {
  .muxvm-grid {
    grid-template-columns: 1fr;
  }
}
