/* teacher-storefront.css */
/* Minimal styles matching the YOOR COURSES theme */

.storefront-public-shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-color: var(--bg, #f5f4ef);
  color: var(--text, #17191d);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.storefront-header {
  background-color: #fffdf7;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.storefront-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.storefront-logo {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

.storefront-brand h1 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  color: #17191d;
}

.storefront-nav {
  display: flex;
  gap: 1rem;
}

.storefront-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: #17191d;
  color: #fffdf7;
}

.storefront-hero h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

.storefront-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.storefront-main {
  flex-grow: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.storefront-categories {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.store-category-btn {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.9rem;
  color: #17191d;
}

.store-category-btn.active {
  background: #d8b66a;
  border-color: #d8b66a;
  color: white;
  font-weight: 600;
}

.store-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.store-footer {
  text-align: center;
  padding: 2rem;
  background: #fffdf7;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  color: rgba(23,25,29,0.5);
}

/* Storefront Setup Dashboard (Teacher view) */
.storefront-setup-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.storefront-setup-card h3 {
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.storefront-setup-card p {
  color: rgba(23,25,29,0.7);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.domain-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0,0,0,0.05);
}
.domain-status-badge.verified {
  background: #e6f4ea;
  color: #1e8e3e;
}
.domain-status-badge.pending {
  background: #fef7e0;
  color: #d99a00;
}
