/* Hero Relojes */
.hero-relojes {
  padding: 56px 0;
  background: #FFFFFF;
}

.hero-relojes-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-relojes-text {
  max-width: 640px;
}

.hero-relojes-header {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: var(--spacing-md);
}

.hero-relojes-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-default);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.2;
}

.hero-relojes-description {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 var(--spacing-lg) 0;
  max-width: 56ch;
}

.hero-relojes-specs {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-relojes-visual {
  width: 100%;
}

.hero-relojes-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  display: block;
}

@media (max-width: 992px) {
  .hero-relojes-content {
    grid-template-columns: 1fr;
  }
  
  .hero-relojes-title {
    font-size: 36px;
  }
  
  .hero-relojes-text {
    max-width: none;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-relojes-description {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .hero-relojes-specs {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-relojes {
    padding: 40px 0;
  }
  
  .hero-relojes-title {
    font-size: 28px;
  }
}

/* Relojes Products Section */
.relojes-products .tabs-nav {
  margin-bottom: var(--spacing-2xl);
}

.relojes-products .tabs-nav .tab.active {
  color: var(--orange-500);
  border: 2px solid var(--orange-500);
  border-bottom: 2px solid var(--orange-500);
}

.relojes-products .tabs-tab-content {
  display: none;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.relojes-products .tabs-tab-content.active {
  display: flex;
}

.relojes-category-header {
  text-align: center;
}

.relojes-category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-500);
  margin: 0 0 var(--spacing-sm) 0;
}

.relojes-category-description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.relojes-products-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.reloj-card {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #D9D9D9;
}

.reloj-card-image {
  flex: 0 0 300px;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
  overflow: hidden;
  height: 300px;
}

.reloj-card-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.reloj-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--gray-200);
}

.reloj-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl);
}

.reloj-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-default);
  margin: 0;
}

.reloj-card-badges {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin: var(--spacing-xs) 0;
}

.reloj-card-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.reloj-card-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0;
  display: flex;
  flex-direction: column;
}

.reloj-card-features li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
}

.reloj-card-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: bold;
}

.reloj-card-expandables {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--spacing-sm);
}

.reloj-card-expandable {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--gray-200);
}

.reloj-card-expand-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: var(--spacing-md) 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-default);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.reloj-card-expand-header:hover {
  color: var(--blue-500);
}

.chevron-icon {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  display: inline-block;
}

.reloj-card-expandable.active .chevron-icon {
  transform: rotate(90deg);
  color: var(--blue-500);
}

.reloj-card-expand-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

.reloj-card-expandable.active .reloj-card-expand-content {
  max-height: 1000px;
  padding: 0 0 var(--spacing-md) 0;
}

.reloj-card-expand-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.reloj-card-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.reloj-card-actions .btn {
  flex: 1;
}

/* Responsive para relojes cards */
@media (max-width: 768px) {
  /* Sobrescribir el display: none de components.css para mostrar tabs-desktop en mobile */
  .relojes-products .tabs-desktop {
    display: block !important;
  }

  .relojes-products .tabs-nav {
    flex-direction: column !important;
  }

  .reloj-card {
    flex-direction: column;
  }

  .reloj-card-image {
    flex: 1;
    max-width: 100%;
    width: 100%;
    height: 250px;
  }

  .reloj-card-image img {
    height: 250px;
  }

  .reloj-card-placeholder {
    min-height: 250px;
    height: 250px;
  }

  .reloj-card-actions {
    flex-direction: column;
  }

  .reloj-card-actions .btn {
    width: 100%;
  }

  .relojes-category-title {
    font-size: 20px;
  }

  .reloj-card-title {
    font-size: 20px;
  }
}

