/**
 * Mumdid Client Styles
 * Shared styles for Landing Page and Manufacturer Form
 */

/* ========== FONT FACE ========== */
@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #212b36;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
  background-color: #ffffff;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 100%;
}

.logo span {
  color: #024b6e;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  color: #024b6e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #024b6e;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  background-color: #ffffff;
  color: #024b6e;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-login:hover {
  background-color: #419e91;
  color: #ffffff;
}

.btn-signup {
  background-color: #419e91;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-signup:hover {
  background-color: #007b55;
}

/* ========== HERO ========== */
.hero {
  background-color: #024b6e;
  padding: 80px 0 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}

.hero-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: inline-flex;
  padding: 29.407px 32.675px 29.241px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* gap: 20px; */
}

.hero h1 {
  color: var(--Colors-Base-white, #fff);
  font-family: Inter;
  font-size: 69.706px;
  font-style: normal;
  font-weight: 600;
  line-height: 65.349px; /* 93.75% */
}

.hero p {
  color: var(--Colors-Base-white, #fff);
  font-family: Inter;
  font-size: 46.834px;
  font-style: normal;
  font-weight: 600;
  line-height: 65.349px;
  margin-bottom: 40px;
}

.btn-register {
  display: inline-block;
  background-color: #419e91;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-register:hover {
  background-color: #007b55;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 0 80px 0;
  background: #ffffff;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #212b36;
  line-height: 1.4;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 14px;
  font-weight: 500;
  color: #637381;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 0 8px;
}

.feature-icon {
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39.821px;
  height: 39.025px;
  object-fit: contain;
  border-radius: 14.336px 3.982px 7.964px 3.982px;
  background: rgba(54, 167, 127, 0.25);
  padding-left: 25px;
}

.feature-icon img {
  object-fit: contain;
  margin-right: 4rem;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: #637381;
  line-height: 1.6;
}

/* ========== CONTENT SECTIONS ========== */
.content-wrapper {
  background: #ffffff;
}

.content-section {
  padding: 48px 0;
  border-top: 1px solid #f4f6f8;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-section p {
  font-size: 14px;
  color: #637381;
  line-height: 1.8;
  max-width: 900px;
}

.content-section-alt {
  padding: 60px 0;
  background: #ffffff;
}

.content-section-alt:nth-child(even) {
  background: #f9fafb;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-image {
  flex: 1;
  max-width: 480px;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-text p {
  font-size: 15px;
  color: #637381;
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta {
  background-color: #024b6e;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}

.cta-content {
  display: flex;
  width: 100%;
  max-width: 737px;
  min-height: 200px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.cta h2 {
  color: var(--Colors-Base-white, #fff);
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 109.375% */
}

/* ========== PARTNERS ========== */
.partners {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.partners h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 8px;
}

.partners p {
  font-size: 14px;
  color: #637381;
  margin-bottom: 48px;
}

.partners-grid {
  display: flex;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  height: auto;
  min-height: 98px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.partners-grid img {
  height: 28px;
  /* filter: grayscale(100%); */
}

/* ========== FOOTER ========== */
.footer {
  background-color: #024b6e;
  padding: 80px 0 48px 0;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 0;
}

.footer-brand h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand h4 img {
  width: 32px;
  height: 32px;
}

.footer-brand > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

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

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

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

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-newsletter h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.newsletter-form {
  position: relative;
  max-width: 280px;
}

.newsletter-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  padding: 14px 48px 14px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  color: #ffffff;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #024b6e;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #ffffff;
  position: relative;
  z-index: 1000;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 16px 0;
  border-top: 1px solid #f4f6f8;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #024b6e;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #419e91;
}

.mobile-menu .btn-login,
.mobile-menu .btn-signup {
  display: block;
  text-align: center;
  margin-top: 8px;
}

/* ========== FORM ELEMENTS ========== */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  transition: border-color 0.2s;
  font-family: "Inter", sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #419e91;
}

.form-input::placeholder {
  color: #9ca3af;
}

.option-btn {
  padding: 10px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.option-btn.selected {
  border-color: #419e91;
  background-color: #ecfdf5;
  color: #419e91;
}

/* ========== MANUFACTURER FORM SPECIFIC ========== */
.form-main {
  padding: 40px 0 80px 0;
  background: #ffffff;
  display: flex;
}

.form-page-header {
  margin-bottom: 40px;
}

.form-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #024b6e;
  line-height: 1.1;
  margin-bottom: 24px;
}

.manufacturer-form {
  max-width: 900px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  color: #419e91;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 16px;
}

.form-section-title-dark {
  color: #212b36;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 16px;
}

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

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #212b36;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-attachment {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

.file-attachment-full {
  flex: 1;
}

.file-attachment svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
  margin-right: 8px;
  flex-shrink: 0;
}

.file-attachment span {
  font-size: 14px;
  color: #637381;
}

.file-attachment .file-size {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 8px;
}

.file-action-btn {
  padding: 8px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
}

.file-action-btn:hover {
  color: #637381;
}

.file-action-btn svg {
  width: 20px;
  height: 20px;
}

.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.file-upload-label:hover {
  border-color: #419e91;
  background-color: #ecfdf5;
}

.file-upload-label svg {
  width: 32px;
  height: 32px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.file-upload-label span {
  font-size: 14px;
  color: #637381;
}

.file-upload-hint {
  font-size: 12px !important;
  color: #9ca3af !important;
  margin-top: 4px;
}

/* Custom Select with Flags */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.custom-select:hover {
  border-color: #419e91;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-icon {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
}

.custom-select-options.open {
  display: block;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-select-option:hover {
  background-color: #f3f4f6;
}

.custom-select-option:first-child {
  border-radius: 8px 8px 0 0;
}

.custom-select-option:last-child {
  border-radius: 0 0 8px 8px;
}

.custom-select-option span {
  font-size: 14px;
  color: #212b36;
}

.terms-agreement {
  margin-bottom: 32px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #419e91;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
  color: #637381;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  background-color: #419e91;
  color: #ffffff;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Inter", sans-serif;
}

.btn-submit:hover {
  background-color: #007b55;
}

/* ========== PROGRESS STEPS ========== */
.progress-steps {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-step {
  display: flex;
  align-items: center;
}

.progress-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.progress-step-number.active {
  background-color: #419e91;
  color: #ffffff;
}

.progress-step-number.inactive {
  background-color: #e5e7eb;
  color: #9ca3af;
}

.progress-step-label {
  margin-left: 8px;
  font-size: 14px;
}

.progress-step-label.active {
  color: #637381;
}

.progress-step-label.inactive {
  color: #9ca3af;
}

.progress-line {
  width: 48px;
  height: 1px;
  background-color: #e5e7eb;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-inner {
    height: 64px;
  }

  .hero {
    padding: 60px 0 80px 0;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .hero-content {
    padding: 16px 0;
  }

  .features {
    padding: 60px 0;
  }

  .features-header h2 {
    font-size: 22px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 32px;
  }

  .content-section {
    padding: 32px 0;
  }

  .content-section h2 {
    font-size: 18px;
  }

  .content-section-alt {
    padding: 40px 0;
  }

  .content-row,
  .content-row.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .content-image {
    max-width: 100%;
  }

  .content-text h2 {
    font-size: 22px;
    text-align: center;
  }

  .content-text p {
    text-align: center;
  }

  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .partners {
    padding: 48px 0;
  }

  .partners-grid {
    justify-content: center;
    gap: 20px 32px;
  }

  .partners-grid img {
    height: 22px;
  }

  .footer {
    padding: 48px 0 32px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Manufacturer Form Responsive */
  .form-page-title {
    font-size: 32px;
  }

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

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

  .progress-steps {
    flex-wrap: wrap;
  }

  .progress-line {
    width: 24px;
  }
}

/* ========== AUTH PAGES (Login/Register) ========== */
.auth-layout {
  display: flex;
  min-height: 100vh;
}

.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 60px;
  background: #ffffff;
  max-width: 520px;
}

.auth-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-logo {
  margin-bottom: 48px;
}

.auth-logo img {
  height: 48px;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: #637381;
  margin-bottom: 32px;
}

/* Business Options */
.business-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.business-option {
  cursor: pointer;
}

.business-option input {
  display: none;
}

.business-option-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s;
}

.business-option.selected .business-option-content,
.business-option input:checked + .business-option-content {
  border-color: #00A76F;
  background-color: rgba(0, 167, 111, 0.04);
}

.business-option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  border-radius: 8px;
  color: #637381;
}

.business-option.selected .business-option-icon,
.business-option input:checked + .business-option-content .business-option-icon {
  background: rgba(0, 167, 111, 0.08);
  color: #00A76F;
}

.business-option-text {
  flex: 1;
}

.business-option-text h3 {
  font-size: 14px;
  font-weight: 600;
  color: #212b36;
  margin-bottom: 4px;
}

.business-option-text p {
  font-size: 12px;
  color: #637381;
  line-height: 1.4;
}

.business-option-check {
  width: 20px;
  height: 20px;
  color: #00A76F;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
}

.auth-label {
  font-size: 14px;
  font-weight: 500;
  color: #212b36;
  margin-bottom: 8px;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #212b36;
  background: #ffffff;
  transition: border-color 0.2s;
  font-family: "Inter", "Public Sans", sans-serif;
}

.auth-input:focus {
  outline: none;
  border-color: #00A76F;
}

.auth-input::placeholder {
  color: #919eab;
}

.auth-input-wrapper .auth-input {
  padding-right: 44px;
}

.auth-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #919eab;
  cursor: pointer;
  padding: 4px;
}

.auth-input-icon:hover {
  color: #637381;
}

/* Phone Input */
.auth-phone-input {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.phone-country {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
}

.phone-country .flag-icon {
  width: 20px;
  height: 14px;
}

.phone-country span {
  font-size: 14px;
  color: #212b36;
}

.auth-phone-input .phone-number {
  border: none;
  border-radius: 0;
  flex: 1;
}

.forgot-password {
  font-size: 13px;
  color: #00A76F;
  text-decoration: none;
  text-align: right;
  margin-top: 8px;
}

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

/* Auth Button */
.auth-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #00A76F;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: "Inter", "Public Sans", sans-serif;
}

.auth-btn:hover {
  background: #007b55;
}

.auth-link-text {
  font-size: 14px;
  color: #637381;
  text-align: center;
}

.auth-link {
  color: #00A76F;
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

/* Auth Footer */
.auth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #f4f6f8;
  margin-top: 24px;
}

.auth-footer span {
  font-size: 12px;
  color: #919eab;
}

.auth-footer a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #637381;
  text-decoration: none;
}

.auth-footer a:hover {
  color: #00A76F;
}

/* Auth Right Side */
.auth-right {
  flex: 1;
  background: linear-gradient(135deg, #0f3d4c 0%, #1a5a6e 50%, #0d3340 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.auth-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.auth-right-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
}

/* Dashboard Cards */
.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.orders-card h4 {
  font-size: 14px;
  color: #637381;
  margin-bottom: 12px;
}

.orders-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.orders-value .amount {
  font-size: 32px;
  font-weight: 700;
  color: #212b36;
}

.orders-change {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #637381;
}

.orders-change span {
  color: #00A76F;
  font-weight: 600;
}

.chart-card {
  padding: 16px 20px;
}

.chart-lines {
  height: 80px;
  margin-bottom: 12px;
}

.chart-lines svg {
  width: 100%;
  height: 100%;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
}

.chart-labels span {
  font-size: 11px;
  color: #919eab;
}

.stats-card {
  text-align: right;
}

.stats-value {
  font-size: 28px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 4px;
}

.stats-change {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  color: #00A76F;
  font-weight: 500;
}

/* Auth Slider */
.auth-slider {
  text-align: center;
  margin-top: 40px;
}

.auth-slider h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.auth-slider p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dots .dot.active {
  background: #ffffff;
}

/* Auth Responsive */
@media (max-width: 1024px) {
  .auth-right {
    display: none;
  }

  .auth-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .auth-left {
    padding: 24px;
  }

  .auth-title {
    font-size: 28px;
  }

  .auth-logo {
    margin-bottom: 32px;
  }

  .business-option-content {
    padding: 12px 16px;
  }

  .business-option-text p {
    display: none;
  }
}

/* ========== LIST PAGE (Manufacturers List) ========== */
.list-main {
  padding: 40px 0 80px 0;
  background: #f9fafb;
  min-height: calc(100vh - 80px);
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 24px;
}

.list-title {
  font-size: 32px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 8px;
}

.list-subtitle {
  font-size: 14px;
  color: #637381;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 300px;
}

.search-box svg {
  color: #919eab;
}

.search-input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #212b36;
  width: 100%;
  background: transparent;
}

.search-input::placeholder {
  color: #919eab;
}

/* Filters */
.list-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-label {
  font-size: 12px;
  font-weight: 500;
  color: #637381;
}

.filter-select {
  padding: 10px 36px 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #212b36;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23637381' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
  min-width: 160px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #00A76F;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.filter-btn:hover {
  background: #007b55;
}

/* Manufacturers Grid */
.manufacturers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.manufacturer-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.2s;
}

.manufacturer-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.manufacturer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 20px 0 20px;
}

.manufacturer-logo {
  width: 56px;
  height: 56px;
  background: #f4f6f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manufacturer-logo img {
  width: 32px;
  height: 32px;
}

.manufacturer-badges {
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-verified {
  background: rgba(0, 167, 111, 0.1);
  color: #00A76F;
}

.badge-pending {
  background: rgba(255, 171, 0, 0.1);
  color: #B76E00;
}

.manufacturer-card-body {
  padding: 16px 20px;
}

.manufacturer-name {
  font-size: 18px;
  font-weight: 600;
  color: #212b36;
  margin-bottom: 8px;
}

.manufacturer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #637381;
  margin-bottom: 12px;
}

.manufacturer-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.category-tag {
  padding: 4px 10px;
  background: #f4f6f8;
  border-radius: 4px;
  font-size: 12px;
  color: #637381;
}

.manufacturer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cert-badge {
  padding: 3px 8px;
  background: rgba(0, 167, 111, 0.08);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #00A76F;
}

.manufacturer-card-footer {
  padding: 16px 20px;
  border-top: 1px solid #f4f6f8;
}

.view-profile {
  font-size: 14px;
  font-weight: 500;
  color: #00A76F;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #637381;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #00A76F;
  color: #00A76F;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: #637381;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-num:hover {
  background: #f4f6f8;
}

.pagination-num.active {
  background: #00A76F;
  color: #ffffff;
}

.pagination-dots {
  padding: 0 8px;
  color: #919eab;
}

/* ========== DETAIL PAGE (Single Manufacturer) ========== */
.detail-main {
  padding: 24px 0 80px 0;
  background: #f9fafb;
  min-height: calc(100vh - 80px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #637381;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #00A76F;
}

.breadcrumb svg {
  color: #919eab;
}

.breadcrumb span {
  color: #212b36;
  font-weight: 500;
}

/* Profile Header */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.profile-header-left {
  display: flex;
  gap: 20px;
}

.profile-logo {
  width: 80px;
  height: 80px;
  background: #f4f6f8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-logo img {
  width: 48px;
  height: 48px;
}

.profile-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.profile-name {
  font-size: 28px;
  font-weight: 700;
  color: #212b36;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #637381;
  margin-bottom: 12px;
}

.profile-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-header-right {
  display: flex;
  gap: 12px;
}

.btn-contact,
.btn-catalog {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-contact {
  background: #00A76F;
  color: #ffffff;
}

.btn-contact:hover {
  background: #007b55;
}

.btn-catalog {
  background: #ffffff;
  color: #212b36;
  border: 1px solid #e5e7eb;
}

.btn-catalog:hover {
  border-color: #00A76F;
  color: #00A76F;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
}

.detail-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #212b36;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f4f6f8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-item.full-width {
  grid-column: span 2;
}

.info-label {
  font-size: 12px;
  font-weight: 500;
  color: #919eab;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 14px;
  color: #212b36;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-value a {
  color: #00A76F;
  text-decoration: none;
}

.info-value a:hover {
  text-decoration: underline;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-tag {
  padding: 6px 12px;
  background: #e8f5e9;
  border-radius: 6px;
  font-size: 13px;
  color: #2e7d32;
}

.market-tag {
  padding: 6px 12px;
  background: #e3f2fd;
  border-radius: 6px;
  font-size: 13px;
  color: #1565c0;
}

.partnership-tag {
  padding: 6px 12px;
  background: #f4f6f8;
  border-radius: 6px;
  font-size: 13px;
  color: #637381;
}

.partnership-tag.active {
  background: rgba(0, 167, 111, 0.1);
  color: #00A76F;
}

/* Documents List */
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  transition: background 0.2s;
}

.document-item:hover {
  background: #f4f6f8;
}

.document-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #637381;
}

.document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.document-name {
  font-size: 14px;
  font-weight: 500;
  color: #212b36;
}

.document-size {
  font-size: 12px;
  color: #919eab;
}

.document-download {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #637381;
  cursor: pointer;
  transition: all 0.2s;
}

.document-download:hover {
  border-color: #00A76F;
  color: #00A76F;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #00A76F;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #637381;
}

/* List & Detail Responsive */
@media (max-width: 1024px) {
  .manufacturers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile-header {
    flex-direction: column;
    gap: 20px;
  }

  .profile-header-right {
    width: 100%;
  }

  .btn-contact,
  .btn-catalog {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .list-header {
    flex-direction: column;
  }

  .search-box {
    width: 100%;
    min-width: auto;
  }

  .list-filters {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

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

  .pagination {
    flex-wrap: wrap;
  }

  .profile-header-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-title-row {
    flex-direction: column;
  }

  .profile-certifications {
    justify-content: center;
  }

  .profile-header-right {
    flex-direction: column;
  }

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

  .info-item.full-width {
    grid-column: span 1;
  }
}

/* ========== GREETINGS PAGE ========== */
.greetings-section {
  min-height: calc(100vh - 80px - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.greetings-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.greetings-icon {
  width: 120px;
  height: 120px;
  background: rgba(0, 167, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px auto;
}

.greetings-title {
  font-size: 48px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 16px;
}

.greetings-message {
  font-size: 18px;
  line-height: 1.6;
  color: #637381;
  margin-bottom: 40px;
}

.btn-back-home {
  display: inline-block;
  padding: 14px 32px;
  background: #00A76F;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-back-home:hover {
  background: #007b55;
}

@media (max-width: 768px) {
  .greetings-title {
    font-size: 32px;
  }

  .greetings-message {
    font-size: 16px;
  }

  .greetings-icon {
    width: 100px;
    height: 100px;
  }

  .greetings-icon svg {
    width: 60px;
    height: 60px;
  }
}

/* ========== SUCCESS PAGE ========== */
.success-title {
  font-family: "Inter", "Public Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00A76F;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.success-subtitle {
  font-family: "Inter", "Public Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.success-description {
  font-family: "Inter", "Public Sans", sans-serif;
  font-size: 1rem;
  color: #00A76F;
  margin-bottom: 2rem;
}

.success-btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: #00A76F;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Inter", "Public Sans", sans-serif;
}

.success-btn:hover {
  background: #008f5d;
}

.auth-content.success-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

