a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-base);
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--orange-500);
}

.nav-link.active {
  color: var(--orange-500);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-500);
  border-radius: 3px 3px 0 0;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-500) 100%);
  color: var(--white);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--blue-50);
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-lg);
}

.benefit-text {
  font-weight: 600;
  font-size: 16px;
}

/* ===================================
   MAIN LAYOUT
=================================== */
.main-container {
  max-width: 1400px;
  margin: calc(-1 * var(--space-2xl)) auto 0;
  padding: 0 var(--space-lg) var(--space-3xl);
  position: relative;
  z-index: 2;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: 2;
  }
}

/* ===================================
   FORM STYLES
=================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.form-section {
  margin-bottom: var(--space-4xl);
}

.form-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-number {
  width: 32px;
  height: 32px;
  background: var(--orange-100);
  color: var(--orange-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.field-label {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: var(--error);
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 18px;
  pointer-events: none;
}

.input-icon:empty {
  display: none;
}

/* Reduz o padding do input se o ícone estiver vazio ou não existir */
.input-wrapper:not(:has(.input-icon:not(:empty))) .form-input.has-icon {
  padding-left: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition-base);
}

.form-input.has-icon {
  padding-left: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(209, 124, 43, 0.1);
}

.form-input.error {
  border-color: var(--error);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: var(--success);
}

.error-message {
  display: none;
  font-size: 13px;
  color: var(--error);
  margin-top: 4px;
}

.error-message.show {
  display: block;
}

.message-field-container {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.message-field-container:focus-within {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(209, 124, 43, 0.1);
}

.message-input {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: none;
  outline: none;
  resize: vertical;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-900);
}

.message-field-actions {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

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

.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-upload-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.file-upload-trigger:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
  background: var(--orange-50);
}

.file-trigger-icon {
  font-size: 16px;
}

.file-name {
  display: none;
  flex-wrap: wrap; /* Allow badges to wrap */
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.file-name.show {
  display: flex;
}

.file-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--success-light);
  color: var(--success);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  max-width: 200px;
}

.file-badge span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-remove {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.file-remove:hover {
  background: var(--error);
  color: var(--white);
  transform: scale(1.1);
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  box-shadow:
    0 4px 6px rgba(209, 124, 43, 0.2),
    0 8px 12px rgba(209, 124, 43, 0.15);
  transition: all var(--transition-base);
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 6px 12px rgba(209, 124, 43, 0.25),
    0 12px 20px rgba(209, 124, 43, 0.2);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-button.loading {
  pointer-events: none;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.submit-button.loading .spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.legal-note {
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
  margin-top: var(--space-md);
  line-height: 1.5;
}

.legal-note a {
  color: var(--orange-500);
  text-decoration: underline;
}

/* ===================================
   SIDEBAR CARDS
=================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: sticky;
  top: 100px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.card-icon {
  font-size: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  font-size: 20px;
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-content {
  flex: 1;
}

.contact-item-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 600;
  margin-top: 2px;
}

.contact-item-value a:hover {
  color: var(--orange-500);
}

/* ChatBot Card */
.chatbot-card {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: var(--white);
  text-align: center;
}

.chatbot-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto var(--space-md);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.chatbot-card .card-title {
  color: var(--white);
  justify-content: center;
}

.chatbot-text {
  color: var(--blue-50);
  margin-bottom: var(--space-md);
  font-size: 15px;
}

.chatbot-button {
  width: 100%;
  padding: 12px 24px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.chatbot-button:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* FAQ Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: all var(--transition-base);
}

.accordion-header:hover {
  background: var(--gray-100);
}

.accordion-item.active .accordion-header {
  background: var(--orange-50);
  color: var(--orange-700);
}

.accordion-icon {
  font-size: 20px;
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-body {
  padding: var(--space-md);
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 14px;
}

/* Testimonials */
.testimonial {
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-500);
  margin-bottom: var(--space-md);
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.testimonial-author {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

/* ===================================
   ALTERNATIVE CONTACTS
=================================== */
.alt-contacts {
  max-width: 1200px;
  margin: var(--space-3xl) auto;
  padding: 0 var(--space-lg);
}

.alt-contacts-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: var(--space-xl);
  color: var(--blue-900);
}

.alt-contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.alt-contact-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
}

.alt-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.alt-contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--orange-100) 0%,
    var(--orange-50) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-sm);
}

.alt-contact-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: var(--space-xs);
}

.alt-contact-text {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  font-size: 14px;
}

.alt-contact-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.alt-contact-button:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--blue-900);
  color: var(--blue-50);
  padding: var(--space-2xl) var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--blue-700);
}

.footer-section h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.footer-link {
  color: var(--blue-100);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--orange-300);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--blue-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: var(--blue-100);
  font-size: 14px;
}

.footer-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-weight: 600;
}

/* ===================================
   MODAL
=================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto var(--space-md);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.modal-title {
  font-size: 28px;
  color: var(--blue-900);
  margin-bottom: var(--space-sm);
}

.modal-text {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.modal-highlight {
  background: var(--success-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--success);
  margin-bottom: var(--space-lg);
}

.modal-highlight-text {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 15px;
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
}

.modal-button {
  flex: 1;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
}

.modal-button-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.modal-button-primary:hover {
  background: var(--orange-700);
}

.modal-button-secondary {
  background: var(--gray-100);
  color: var(--gray-900);
}

.modal-button-secondary:hover {
  background: var(--gray-200);
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 1024px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .nav-menu {
    gap: var(--space-md);
  }

  .nav-link {
    font-size: 14px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-benefits {
    gap: var(--space-md);
  }

  .benefit-item {
    min-width: 160px;
  }

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

  .alt-contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-benefits {
    flex-direction: column;
  }

  .benefit-item {
    width: 100%;
  }

  .form-card {
    padding: var(--space-lg);
  }

  .radio-group {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   UTILITY CLASSES
    =================================== */
.hidden {
  display: none !important;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

/* ===================================
   QUOTE PRODUCTS SECTION
    =================================== */
.quote-products-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.quote-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.quote-products-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-900);
  margin: 0;
}

.quote-products-count {
  font-size: 13px;
  color: var(--gray-600);
  background: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

.quote-products-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-height: 300px;
  overflow-y: auto;
}

.quote-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.quote-product-info {
  flex: 1;
}

.quote-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.quote-product-ref {
  font-size: 12px;
  color: var(--gray-500);
  font-family: var(--font-mono);
}

.quote-product-qty {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-700);
  background: var(--orange-50);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-right: var(--space-sm);
}

.quote-product-remove {
  color: var(--gray-400);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.quote-product-remove:hover {
  color: var(--error);
}

.quote-products-empty {
  text-align: center;
  padding: var(--space-lg);
}

.quote-products-empty p {
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.add-products-link {
  color: var(--orange-500);
  font-weight: 600;
  text-decoration: none;
}

.add-products-link:hover {
  text-decoration: underline;
}

/* ===================================
   AUTH MODAL STYLES
=================================== */
.auth-modal {
  border: none !important;
  box-shadow: var(--shadow-2xl) !important;
  overflow: hidden;
  border-radius: 16px !important;
  display: flex;
  flex-direction: column;
  padding: 0 !important; /* Remove all padding from modal */
}

.auth-header {
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  color: white;
  border-bottom: none !important;
  padding: 14px 20px !important; /* Compact header padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
}

.auth-title {
  color: white;
  font-size: 1.25rem; /* Slightly reduced font size */
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-close {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  color: white !important;
  width: 32px; /* Slightly smaller button */
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-close:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.05);
}

.auth-body {
  padding: 20px !important; /* Compact body padding */
  background: white;
}

.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  background: white;
  color: var(--gray-800);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.auth-google-btn:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.auth-divider-line {
  height: 1px;
  background: var(--gray-200);
  flex: 1;
}

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

.auth-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--blue-900);
  font-size: 0.95rem;
}

.auth-input {
  padding-left: 48px !important;
  height: 52px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.auth-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25em;
  opacity: 0.8;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
  height: 56px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  box-shadow: 0 4px 10px rgba(209, 124, 43, 0.3);
}

.auth-submit-btn:hover {
  box-shadow: 0 6px 15px rgba(209, 124, 43, 0.4);
  transform: translateY(-2px);
}

.auth-switch {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-600);
}

.auth-switch a {
  color: var(--orange-600);
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
}

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