/* V3 styles for Amazon Bridge to match codebridge.sh */

.amazon-bridge-app {
  padding: 60px 0;
  background: #fff;
  color: #333;
}

.amazon-bridge-app .container {
  max-width: 1140px;
}

/* Tab Switcher */
.view-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.view-switcher .view-tab {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px; /* Align with parent border */
}

.view-switcher .view-tab.active,
.view-switcher .view-tab:hover {
  color: #75dab4;
  border-bottom-color: #75dab4;
}

.view-switcher .view-tab.premium-tab {
  color: #ffc107;
}

.view-switcher .view-tab.premium-tab.active,
.view-switcher .view-tab.premium-tab:hover {
  color: #ffc107;
  border-bottom-color: #ffc107;
}

/* Content Views */
.view-content {
  display: none;
}

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

/* Cards */
.card {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 auto 20px;
}

.sample-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #75dab4;
  font-weight: 600;
}

/* Forms */
.upload-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input[type="file"],
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
}

.btn.btn-primary {
  background: #75dab4;
  color: #fff;
  padding: 15px 40px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.btn.btn-primary:hover {
  background: #63b89a;
}

/* Feature Badges */
.feature-badge {
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-badge.coming-soon {
  background-color: #ffc107;
  color: #fff;
}

.feature-badge.premium {
  background-color: #75dab4;
  color: #fff;
}

/* Disabled Cards */
.card.disabled {
  background: #f5f5f5;
  opacity: 0.7;
}

/* Premium Section */
.premium-hero {
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
  border: 1px solid #eee;
  margin-bottom: 30px;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.premium-feature {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 0;
  text-align: center;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.pricing-column {
  border: 1px solid #eee;
  padding: 30px;
  width: 300px;
}

.pricing-header .price {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
}

.pricing-features {
  text-align: left;
  margin: 30px 0;
}

.feature-category {
  margin-bottom: 20px;
}

.feature {
  margin-bottom: 10px;
}

/* Privacy Notice */
.privacy-notice {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}

.card p {
  text-align: center;
  width: 100%;
}

.coming-soon-features ul {
  list-style-position: inside;
  text-align: left;
  display: inline-block;
}

.premium-feature p {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
