/* ====================================
   🎯 PROPERTY OPTIONS MARKET - STYLES
   ==================================== */

.options-market {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px;
  min-height: 100vh;
}

/* Hero Section */
.options-hero {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.options-hero__content {
  flex: 1;
}

.options-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.options-hero__icon {
  font-size: 3rem;
}

.options-hero__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}

.options-hero__stats {
  display: flex;
  gap: 32px;
}

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

.options-stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.options-stat__label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Tabs */
.options-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
}

.options-tab {
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.options-tab:hover {
  color: var(--text);
  background: rgba(99, 102, 241, 0.05);
}

.options-tab--active {
  color: #6366f1;
  border-bottom-color: #6366f1;
}

/* Tab Content */
.options-content {
  position: relative;
}

.options-tab-content {
  display: none;
}

.options-tab-content--active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Property Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

/* Option Card */
.option-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

.option-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.option-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.option-card__content {
  padding: 24px;
}

.option-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.option-card__location {
  color: var(--muted);
  margin-bottom: 20px;
}

.option-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.option-card__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-card__detail-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.option-card__detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.option-card__premium {
  color: #10b981;
}

.option-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(99, 102, 241, 0.05);
  border-left: 3px solid #6366f1;
  border-radius: 8px;
  margin-bottom: 20px;
}

.option-card__info-icon {
  font-size: 1.5rem;
}

.option-card__info-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.option-card__btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* My Options Card */
.my-option-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.my-option-card.expired {
  opacity: 0.6;
  border-color: rgba(239, 68, 68, 0.3);
}

.my-option-card__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.my-option-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.my-option-card__location {
  color: var(--muted);
  font-size: 0.9rem;
}

.my-option-card__status {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.my-option-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.my-option-card__pnl {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.my-option-card__pnl .muted {
  color: var(--muted);
  font-weight: 500;
}

.my-option-card__pnl .warn {
  color: #f59e0b;
  font-weight: 700;
}

.my-option-card__item {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.my-option-card__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.my-option-card__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.my-option-card__value.warning {
  color: #f59e0b;
  animation: pulse 2s ease-in-out infinite;
}

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

.my-option-card__actions {
  display: flex;
  gap: 12px;
}

.my-option-card__btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.my-option-card__btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.my-option-card__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.my-option-card__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.my-option-card__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.4);
}

/* Secondary Market Card */
.secondary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.secondary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

.secondary-card__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px;
}

.secondary-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.secondary-card__badge {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.secondary-card__location {
  color: var(--muted);
  margin-bottom: 20px;
}

.secondary-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.secondary-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.secondary-card__row span:first-child {
  color: var(--muted);
}

.secondary-card__row strong {
  color: var(--text);
}

.secondary-card__ask-price {
  color: #10b981;
}

.secondary-card__profit {
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
}

.secondary-card__profit.positive {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.secondary-card__profit.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.secondary-card__btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Empty State */
.options-empty {
  text-align: center;
  padding: 80px 20px;
}

.options-empty__icon {
  font-size: 4rem;
  margin-bottom: 24px;
  opacity: 0.5;
}

.options-empty h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.options-empty p {
  color: var(--muted);
  margin-bottom: 24px;
}

.options-empty__btn {
  padding: 12px 32px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-empty__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* Toast */
.options-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  animation: slideIn 0.3s ease;
  transition: opacity 0.3s ease;
}

.options-toast--success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.options-toast--info {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.options-toast--error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====================================
   🎨 MODAL STYLES
   ==================================== */

.options-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.options-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.options-modal__content {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease;
}

.options-modal__header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.options-modal__header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.options-modal__close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-modal__close:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ef4444;
}

.options-modal__body {
  padding: 32px;
}

.options-modal__property {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-bottom: 32px;
}

.options-modal__property img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.options-modal__property h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.options-modal__property p {
  color: var(--muted);
  margin-bottom: 8px;
}

.options-modal__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981 !important;
}

.options-modal__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.options-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options-form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.options-form-help {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.options-duration-selector {
  display: flex;
  gap: 12px;
}

.options-duration-btn {
  flex: 1;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-duration-btn:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
}

.options-duration-btn--active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent;
  color: white;
}

#optionPremiumSlider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
}

#optionPremiumSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

#optionPremiumSlider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  border: none;
}

.options-premium-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 10px;
}

.options-premium-display span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6366f1;
}

.options-premium-display span:last-child {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.options-strike-display {
  padding: 16px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 10px;
  text-align: center;
}

.options-strike-display span {
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
}

.options-summary {
  padding: 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
}

.options-summary h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.options-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.options-summary-row:last-of-type {
  border-bottom: none;
}

.options-summary-row span {
  font-size: 1rem;
  color: var(--muted);
}

.options-summary-row strong {
  font-size: 1.2rem;
  color: var(--text);
}

.options-summary-row--total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.options-summary-row--total span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.options-summary-row--total strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #10b981;
}

.options-summary-note {
  margin-top: 16px;
  padding: 12px;
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.options-modal__footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.options-modal__btn {
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-modal__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

.options-modal__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.options-modal__btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.options-modal__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .options-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .options-hero__title {
    font-size: 2rem;
  }
  
  .options-hero__stats {
    width: 100%;
    justify-content: space-around;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .options-tabs {
    gap: 8px;
  }
  
  .options-tab {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .my-option-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .my-option-card__actions {
    flex-direction: column;
  }
}

/* ====================================
   🔍 FILTROS AVANZADOS - GLASSMORPHISM
   ==================================== */

.options-filters-panel {
  margin-bottom: 24px;
}

.options-filters {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.options-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(99, 102, 241, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.options-filters__header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.options-filters__toggle {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  color: #6366f1;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-filters__toggle:hover {
  background: rgba(99, 102, 241, 0.3);
  transform: scale(1.05);
}

.options-filters__body {
  padding: 24px;
}

.options-filters__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.options-filters__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.options-filters__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.options-filters__input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.options-filters__input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.options-filters__input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.options-filters__input[type="checkbox"] {
  width: auto;
  height: auto;
  margin: 0;
  cursor: pointer;
}

.options-filters__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.options-filters__btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.options-filters__btn--apply {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.options-filters__btn--apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.options-filters__btn--clear {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.options-filters__btn--clear:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.options-results-info {
  margin-bottom: 20px;
  padding: 12px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.options-results-info strong {
  color: #6366f1;
  font-weight: 700;
}

.options-empty__btn {
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.options-empty__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .options-filters__row {
    grid-template-columns: 1fr;
  }
  
  .options-filters__actions {
    flex-direction: column;
  }
  
  .options-filters__btn {
    width: 100%;
  }
}

/* ====================================
   📜 TIMELINE / HISTORIAL
   ==================================== */

.my-option-card__btn--timeline {
  background: rgba(99, 102, 241, 0.1) !important;
  border: 1px solid rgba(99, 102, 241, 0.3) !important;
  color: #6366f1 !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
}

.my-option-card__btn--timeline:hover {
  background: rgba(99, 102, 241, 0.2) !important;
  transform: translateY(-2px);
}

.options-modal__content--timeline {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}

.option-timeline-header {
  padding: 20px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.option-timeline-header h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: var(--text);
}

.option-timeline-location {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.option-timeline-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.option-timeline-stats span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-timeline {
  position: relative;
  padding-left: 32px;
}

.option-timeline-item {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
}

.option-timeline-item--latest .option-timeline-item__icon {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transform: scale(1.1);
}

.option-timeline-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid currentColor;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.option-timeline-item__line {
  position: absolute;
  left: 15px;
  top: 48px;
  width: 2px;
  height: calc(100% + 24px);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.1));
  z-index: 1;
}

.option-timeline-item__content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.option-timeline-item:hover .option-timeline-item__content {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(4px);
}

.option-timeline-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.option-timeline-item__header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.option-timeline-item__date {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.option-timeline-item__description {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .option-timeline {
    padding-left: 24px;
  }
  
  .option-timeline-item__icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .option-timeline-item__line {
    left: 12px;
  }
  
  .option-timeline-item__header {
    flex-direction: column;
    gap: 4px;
  }
  
  .option-timeline-stats {
    flex-direction: column;
    gap: 8px;
  }
}
