/* ============================================
   YOURS TO RENT - COMPONENTS STYLESHEET
   Additional UI Components and Utilities
   ============================================ */

/* ============================================
   FORM COMPONENTS
   ============================================ */

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.custom-checkbox input:checked + .checkmark {
  background: var(--gradient-brand);
  border-color: transparent;
}

.custom-checkbox .checkmark i {
  font-size: 0.75rem;
  color: var(--bg-dark);
  opacity: 0;
  transition: var(--transition-fast);
}

.custom-checkbox input:checked + .checkmark i {
  opacity: 1;
}

.custom-checkbox span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Custom Radio */
.custom-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-radio input {
  display: none;
}

.custom-radio .radio-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.custom-radio input:checked + .radio-mark {
  border-color: var(--primary-gold);
}

.custom-radio .radio-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gradient-brand);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition-fast);
}

.custom-radio input:checked + .radio-mark::after {
  opacity: 1;
  transform: scale(1);
}

/* Input Groups */
.input-icon {
  position: relative;
}

.input-icon .form-control {
  padding-left: 48px;
}

.input-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-icon.icon-right .form-control {
  padding-left: 16px;
  padding-right: 48px;
}

.input-icon.icon-right i {
  left: auto;
  right: 16px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark-4);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: var(--text-white);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gradient-brand);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--bg-dark);
}

/* ============================================
   CARD COMPONENTS
   ============================================ */

/* Info Card */
.info-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
}

.info-card:hover {
  border-color: var(--border-gold);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon i {
  font-size: 1.25rem;
  color: var(--primary-gold);
}

.info-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stat Card */
.stat-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Profile Card */
.profile-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  margin: 0 auto 16px;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-role {
  font-size: 0.875rem;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.profile-stat {
  text-align: center;
}

.profile-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.profile-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   ALERT COMPONENTS
   ============================================ */
.alert-custom {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid;
}

.alert-custom-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-custom-content h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.alert-custom-content p {
  font-size: 0.875rem;
  margin: 0;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.alert-success .alert-custom-icon {
  color: #10b981;
}

.alert-success h5 {
  color: #10b981;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.alert-warning .alert-custom-icon {
  color: #f59e0b;
}

.alert-warning h5 {
  color: #f59e0b;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.alert-error .alert-custom-icon {
  color: #ef4444;
}

.alert-error h5 {
  color: #ef4444;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.alert-info .alert-custom-icon {
  color: #3b82f6;
}

.alert-info h5 {
  color: #3b82f6;
}

/* ============================================
   TAB COMPONENTS
   ============================================ */
.tabs-container {
  margin-bottom: 24px;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-dark);
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 24px;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-white);
}

.tab-btn.active {
  color: var(--primary-gold);
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  padding: 24px 0;
}

.tab-content.active {
  display: block;
}

/* Pill Tabs */
.tabs-pill {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: var(--bg-dark-3);
  border-radius: var(--radius-full);
  width: fit-content;
}

.tabs-pill .tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
}

.tabs-pill .tab-btn.active {
  background: var(--gradient-brand);
  color: var(--bg-dark);
}

.tabs-pill .tab-btn::after {
  display: none;
}

/* ============================================
   PROGRESS COMPONENTS
   ============================================ */
.progress-bar-custom {
  height: 8px;
  background: var(--bg-dark-4);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--bg-dark-4);
}

.progress-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  background: var(--bg-dark-3);
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.progress-step.completed .step-circle {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--bg-dark);
}

.progress-step.active .step-circle {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.step-label {
  font-size: 0.813rem;
  color: var(--text-muted);
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
  color: var(--text-white);
}

/* ============================================
   MODAL COMPONENTS
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-custom {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-content-custom {
  transform: translateY(0);
}

.modal-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-dark);
}

.modal-header-custom h3 {
  font-size: 1.25rem;
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: var(--bg-dark-4);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

.modal-body-custom {
  padding: 24px;
}

.modal-footer-custom {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--border-dark);
}

/* ============================================
   TOOLTIP & POPOVER
   ============================================ */
.tooltip-custom {
  position: relative;
  display: inline-block;
}

.tooltip-custom .tooltip-text {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--bg-dark-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 100;
  margin-bottom: 8px;
}

.tooltip-custom .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--bg-dark-4);
}

.tooltip-custom:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-dark-3) 25%, var(--bg-dark-4) 50%, var(--bg-dark-3) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton-text.sm {
  width: 60%;
}

.skeleton-text.md {
  width: 80%;
}

.skeleton-text.lg {
  width: 100%;
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.skeleton-image {
  width: 100%;
  height: 200px;
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-dark-4);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

/* ============================================
   BADGE COMPONENTS
   ============================================ */
.badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.badge-dot.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.badge-dot.success::before {
  background: #10b981;
}

.badge-dot.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.badge-dot.warning::before {
  background: #f59e0b;
}

.badge-dot.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.badge-dot.danger::before {
  background: #ef4444;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============================================
   AVATAR GROUP
   ============================================ */
.avatar-group {
  display: flex;
}

.avatar-group .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -12px;
  overflow: hidden;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

.avatar-group .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-group .avatar-more {
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bg-dark);
}

/* ============================================
   RATING COMPONENT
   ============================================ */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating i {
  color: var(--bg-dark-4);
  font-size: 1rem;
}

.rating i.active {
  color: var(--primary-gold);
}

.rating-interactive i {
  cursor: pointer;
  transition: var(--transition-fast);
}

.rating-interactive i:hover {
  transform: scale(1.2);
}

/* ============================================
   DROPDOWN CUSTOM
   ============================================ */
.dropdown-custom {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-trigger:hover {
  border-color: var(--primary-gold);
}

.dropdown-trigger i {
  margin-left: auto;
  transition: var(--transition-fast);
}

.dropdown-custom.active .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.dropdown-custom.active .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-item-custom:hover {
  background: var(--bg-dark-4);
  color: var(--primary-gold);
}

.dropdown-item-custom i {
  width: 20px;
  color: var(--primary-gold);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.breadcrumb-item {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--primary-gold);
}

.breadcrumb-item.active {
  color: var(--text-white);
}

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-item:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.page-item.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--bg-dark);
}

.page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   FILTER CHIPS
   ============================================ */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-chip:hover,
.filter-chip.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.filter-chip .chip-count {
  background: var(--bg-dark-4);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.filter-chip.active .chip-count {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-dark);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--bg-dark-3);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
}

.timeline-item.completed .timeline-dot {
  background: var(--primary-gold);
}

.timeline-content {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px;
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item-custom {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.accordion-header-custom:hover {
  background: var(--bg-dark-4);
}

.accordion-header-custom h4 {
  font-size: 1rem;
  margin: 0;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.accordion-item-custom.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body-custom {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-custom.active .accordion-body-custom {
  padding: 0 20px 20px;
  max-height: 500px;
}

.accordion-body-custom p {
  color: var(--text-muted);
  font-size: 0.938rem;
  margin: 0;
}

/* ============================================
   NOTIFICATION BADGE
   ============================================ */
.notification-badge {
  position: relative;
  display: inline-block;
}

.notification-badge .badge-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  background: var(--primary-red);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  width: 100px;
  height: 100px;
  background: var(--bg-dark-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.empty-state-icon i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 24px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--primary-gold);
}

.text-muted-custom {
  color: var(--text-muted);
}

.bg-dark-2 {
  background: var(--bg-dark-2);
}

.bg-dark-3 {
  background: var(--bg-dark-3);
}

.border-gold {
  border-color: var(--border-gold) !important;
}

.glow-gold {
  box-shadow: var(--shadow-gold);
}

.hover-lift {
  transition: var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
