/* Zebra Manufacturers Exchange Styles */

/* Contact Page Styles */
.contact-page .contact-hero {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.contact-page .contact-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.contact-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card .contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card .contact-info {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.contact-card .contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --primary-color: #003366;
  --secondary-color: #007acc;
  --accent-color: #e6f2ff;
  --text-color: #333;
  --light-text: #fff;
  --gray-bg: #f4f4f4;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --border-radius: 5px;
  --box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--gray-bg);
}

/* Header Styles */
.main-header {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-color);
}

.auth-links {
  display: flex;
  gap: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--light-text);
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--light-text);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--accent-color);
}

.btn-outline {
  border: 2px solid var(--light-text);
  color: var(--light-text);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 4rem 1rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Section */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 3rem 0;
  color: var(--primary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature {
  background: var(--light-text);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
  background: var(--light-text);
  padding: 4rem 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: var(--accent-color);
  padding: 4rem 1rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Footer Styles */
.main-footer {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 4rem 1rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-text);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Shop Page Styles */
.page-header {
  background: var(--accent-color);
  padding: 3rem 1rem;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.shop-filters {
  background: var(--light-text);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-color);
}

.filter-group select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background: var(--light-text);
  font-size: 1rem;
}

.shop-listings {
  padding: 3rem 0;
  background: var(--gray-bg);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.shop-card {
  background: var(--light-text);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.shop-header h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.rating {
  color: #ffd700;
  font-weight: 600;
}

.shop-details {
  margin-bottom: 1.5rem;
}

.shop-details p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.shop-footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.pagination {
  padding: 2rem 0;
  background: var(--light-text);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.page-numbers a {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.page-numbers a.active {
  background: var(--secondary-color);
  color: var(--light-text);
}

.page-numbers a:hover:not(.active) {
  background: var(--gray-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    padding: 1rem;
  }
  
  .feature {
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  nav ul {
    gap: 1rem;
  }
}

/* Job Form Styles */
.job-form-section {
  padding: 3rem 0;
  background: var(--gray-bg);
}

.job-form {
  background: var(--light-text);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.file-upload {
  border: 2px dashed #ddd;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  background: var(--gray-bg);
  cursor: pointer;
}

.file-help {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* About Page Styles */
.about-content {
  padding: 4rem 0;
  background: var(--light-text);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.value-props {
  margin-top: 2rem;
}

.value-prop {
  margin-bottom: 2rem;
}

.value-prop h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-color);
  font-weight: 500;
}

.team-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--light-text);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-bg);
  border-radius: 50%;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-cta {
  padding: 4rem 0;
  background: var(--accent-color);
  text-align: center;
}

.contact-cta h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-cta p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Authentication Page Styles */
.auth-main {
  min-height: calc(100vh - 70px - 400px);
  background: var(--gray-bg);
  padding: 4rem 1rem;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
}

.auth-box {
  background: var(--light-text);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.auth-box h1 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-color);
  opacity: 0.6;
  transition: var(--transition);
}

.toggle-password:hover {
  opacity: 1;
}

.password-requirements {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.password-requirements ul {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.password-requirements li {
  margin-bottom: 0.25rem;
  position: relative;
}

.password-requirements li::before {
  content: "•";
  position: absolute;
  left: -1rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.forgot-password {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
}

.auth-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 1.5rem);
  height: 1px;
  background: #ddd;
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.auth-divider span {
  background: var(--light-text);
  padding: 0 1rem;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.social-auth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-color: #ddd;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.auth-footer {
  text-align: center;
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.account-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.account-type {
  background: var(--gray-bg);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.account-type:hover {
  background: var(--accent-color);
}

.account-type.active {
  background: var(--accent-color);
  border-color: var(--secondary-color);
}

.account-type h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.account-type p {
  color: var(--text-color);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .auth-main {
    padding: 2rem 1rem;
  }

  .auth-box {
    padding: 2rem 1.5rem;
  }

  .auth-form .form-grid {
    grid-template-columns: 1fr;
  }

  .social-auth {
    grid-template-columns: 1fr;
  }

  .account-type-selector {
    grid-template-columns: 1fr;
  }
}
