/* Save Anywhere Demo */
.save-anywhere-demo {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.save-anywhere-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.save-anywhere-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.save-anywhere-title i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.save-anywhere-title h4 {
  margin: 0;
  font-size: 1.125rem;
  color: #1f2937;
}

.section-subtitle {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  text-align: left;
}

.url-input-demo {
  padding: 1.5rem;
}

.url-input-field {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}

.url-input-field i {
  color: #9ca3af;
  flex-shrink: 0;
}

.url-input-text {
  color: #1f2937;
  font-family: monospace;
  font-size: 0.875rem;
}

.browser-extension {
  padding: 1.5rem;
  background: #f9fafb;
}

.extension-popup {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-info {
  padding: 1.5rem;
}

.product-card {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.popup-content h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #1f2937;
}

.popup-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.popup-content .product-subtitle {
  color: #6b7280;
  font-size: 0.75rem;
  margin: 0.25rem 0;
  line-height: 1.25;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature i {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.feature-text h5 {
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
  color: #1f2937;
}

.feature-text p {
  margin: 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.btn-save {
  width: 100%;
  padding: 0.75rem;
  background: #6366f1;
  color: white;
  border: none;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-save:hover {
  background: #4f46e5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    height: 160px;
  }

  .popup-content {
    padding: 1rem 0;
  }

  .features-list {
    gap: 0.75rem;
  }

  .btn-save {
    padding: 1rem;
    font-size: 1rem;
  }
} 