/*#region */
/* Cat Profile Styles */
/*#endregion*/

/* male */
.fa-mars {
  color: #096bff;
}

/* female */
.fa-venus {
  color: #ff09de;
}

/*#region Full Navigation Header */
.ntcr-full-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px 0px;
  /* margin-bottom: 40px; */
  /* border-bottom: 1px solid #eee; */
}

.ntcr-adjacent-link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease;
}

.ntcr-adjacent-link:hover {
  color: #d7b50a;
}

.ntcr-adjacent-link .fa-chevron-left {
  margin-right: 8px;
}

.ntcr-adjacent-link .fa-chevron-right {
  margin-left: 8px;
}

/* The placeholder takes up space but is invisible, keeping the layout consistent */
.ntcr-adjacent-link-placeholder {
  visibility: hidden;
}

/*#endregion*/

/*#region back button*/
.ntcr-back-navigation {
  padding: 30px 30px 10px;
  /* border-bottom: 1px solid #eee; */
}

.ntcr-back-button {
  display: inline-flex;
  align-items: center;
  color: #523018;
  font-weight: bold;
  text-decoration: none;
}

.ntcr-back-button:hover {
  color: #c4a405;
}

.ntcr-back-button .fa-arrow-left {
  margin-right: 8px;
}
/*#endregion */

/*#region Cat Profile */
.ntcr-cat-profile-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.ntcr-cat-profile-container {
  background: #fff;
  overflow: hidden;
}

.ntcr-cat-profile-content {
  display: flex;
  gap: 40px;
  padding: 40px 30px;
}

/* Left Column */
.ntcr-main-image-container {
  margin-bottom: 20px;
}

.ntcr-main-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--gap);
}

.ntcr-cat-gallery {
  --gallery-width: min(504px, 100%);
  --gap: 1rem;
  flex: 0 0 var(--gallery-width);
  min-width: 0;
  width: 100%;
}

.ntcr-thumbnails {
  display: flex;
  gap: var(--gap);
  flex-wrap: nowrap;
  width: var(--gallery-width);
  overflow-x: auto;
  padding-bottom: 10px;
}

.ntcr-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  /* position: relative; */
}

.ntcr-thumbnail:hover {
  outline: 2px solid #d7b50a;
  outline-offset: -2px;
}

.ntcr-thumbnail.active {
  outline: 6px solid #d7b50a;
  outline-offset: -6px;
}

.ntcr-adoption-buttons-desktop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.ntcr-adoption-buttons-mobile {
  display: none;
}

.ntcr-adopt-button,
.ntcr-sponsor-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.ntcr-adopt-button {
  background-color: #ad8b73;
  color: white;
}

.ntcr-adopt-button:hover {
  background-color: #806856;
  color: white;
}

.ntcr-adopt-button .fa-heart {
  margin-right: 8px;
}

.ntcr-sponsor-button {
  background: transparent;
  border: 2px solid #523018;
  color: #523018;
}

.ntcr-sponsor-button:hover {
  background-color: #52301810;
  color: #523018;
}

.ntcr-sponsor-button .fa-hand-holding-heart {
  margin-right: 8px;
}

/* Right Column */
.ntcr-cat-info-column {
  flex: 1;
  min-width: 0;
}

.ntcr-cat-header {
  margin-bottom: 30px;
}

.ntcr-cat-name {
  font-size: 60px;
  font-weight: 800;
  color: #523018;
  margin-bottom: 20px !important;
  line-height: 1.1;
}

.ntcr-cat-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ntcr-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  border: 1px solid #dee2e6;
}

.ntcr-meta-item--sponsor {
  background: linear-gradient(45deg, #fef08a, #fde047);
  color: #78350f;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #facc15;
}

.ntcr-meta-item--special-needs {
  background: linear-gradient(135deg, #ee9649, #e67e22);
  color: white;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}

.ntcr-cat-description {
  margin-bottom: 30px;
}

.ntcr-description-content {
  line-height: 1.7;
  color: #495057;
  font-size: 16px;
}
/*#endregion*/

/* ------- */
/* DETAILS */
/* ------- */

.ntcr-more-cats {
  margin-top: 100px;
  width: 100%;
  text-align: center;
}

.ntcr-more-cats h3 {
  color: #523018;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}

.ntcr-more-cats-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.all-cats-button {
  display: block;
  width: fit-content;
  margin: 40px auto;
  border: 2px solid #523018;
  color: #523018;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.all-cats-button:hover {
  background-color: #52301810;
  color: #523018;
}

.all-cats-button .fa-cat {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ntcr-cat-name {
    font-size: 36px;
  }

  .ntcr-archive-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .ntcr-cat-profile-content {
    flex-direction: column;
    gap: 30px;
  }

  .ntcr-cat-gallery-column {
    flex: none;
    max-width: 100%;
  }

  .ntcr-archive-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .ntcr-filters {
    justify-content: center;
  }

  .ntcr-cats-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .ntcr-cat-profile-wrapper,
  .ntcr-cat-archive-wrapper {
    padding: 15px;
  }

  .ntcr-cat-profile-content {
    padding: 20px 15px;
  }

  .ntcr-cat-columns {
    flex-direction: column;
  }

  .ntcr-cat-gallery {
    width: 100%;
  }

  .ntcr-thumbnail {
    width: 100px;
    height: 100px;
  }

  .ntcr-adoption-buttons-desktop {
    display: none;
  }

  .ntcr-adoption-buttons-mobile {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }

  .ntcr-back-navigation {
    padding: 15px;
  }

  .ntcr-full-navigation {
    padding: 0px 15px;
  }

  .ntcr-more-cats-section {
    padding: 30px 15px;
  }

  .ntcr-cat-name {
    font-size: 28px;
  }

  .ntcr-archive-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .ntcr-cats-grid {
    grid-template-columns: 1fr;
  }

  .ntcr-cat-profile-content {
    padding: 15px 10px;
  }

  .ntcr-back-navigation {
    padding: 10px;
  }

  .ntcr-more-cats-section {
    padding: 20px 10px;
  }

  .ntcr-cat-name {
    font-size: 24px;
  }

  .ntcr-archive-title {
    font-size: 24px;
  }

  .ntcr-cat-actions {
    gap: 10px;
  }

  .ntcr-adopt-button,
  .ntcr-sponsor-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}
