/* ==========================================================================
   Pintura y Latonería Automotriz ("Pinta tu Vehículo") - Styles
   PediGochos Specialized Services Module
   ========================================================================== */

/* Fullscreen Service Modal */
.paint-service-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background-color: #0F172A;
  color: #F8FAFC;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.paint-service-modal.hidden {
  display: none !important;
}

/* Modal Header */
.paint-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.paint-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.paint-back-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #F8FAFC;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.paint-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-2px);
}

.paint-title-wrap h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.paint-title-wrap p {
  margin: 2px 0 0 0;
  font-size: 11.5px;
  color: #94A3B8;
  font-weight: 500;
}

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

.btn-open-quoter {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  border: none;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
  transition: transform 0.2s;
}

.btn-open-quoter:hover {
  transform: translateY(-1px);
}

/* Service Body Container */
.paint-body {
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}

/* Hero Section */
.paint-hero-card {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.paint-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.paint-hero-title {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
}

.paint-hero-desc {
  margin: 0 0 16px 0;
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.5;
  max-width: 600px;
}

.paint-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paint-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #E2E8F0;
  font-weight: 700;
}

.paint-stat-icon {
  font-size: 16px;
}

/* Category Filter Chips */
.paint-filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.paint-filter-scroll::-webkit-scrollbar {
  display: none;
}

.paint-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.paint-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.paint-filter-btn.active {
  background: #EF4444;
  border-color: #EF4444;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

/* Before and After Interactive Comparison Slider */
.paint-comparison-section {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 26px;
}

.paint-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.paint-section-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.paint-slider-container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .paint-slider-container {
    height: 380px;
  }
}

.paint-img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.paint-img-before {
  z-index: 1;
}

.paint-img-after {
  z-index: 2;
  width: 50%;
  border-right: 2px solid #FFFFFF;
  overflow: hidden;
}

.paint-tag-badge {
  position: absolute;
  bottom: 14px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.paint-tag-before {
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.paint-tag-after {
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.paint-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.paint-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #EF4444;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.paint-slider-range-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
}

/* Workshop Grid */
.paint-workshops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .paint-workshops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .paint-workshops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.paint-workshop-card {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.paint-workshop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.paint-card-img-wrap {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #334155;
}

.paint-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.paint-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
}

.paint-card-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(245, 158, 11, 0.9);
  color: #0F172A;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.paint-card-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.paint-card-title {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
}

.paint-card-desc {
  margin: 0 0 12px 0;
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.4;
  flex: 1;
}

.paint-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.paint-pill-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-size: 10.5px;
  padding: 2px 7px;
  border-radius: 6px;
  font-weight: 600;
}

.paint-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.paint-price-est {
  display: flex;
  flex-direction: column;
}

.paint-price-label {
  font-size: 10px;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 700;
}

.paint-price-val {
  font-size: 14px;
  font-weight: 900;
  color: #38BDF8;
}

.paint-btn-quote-card {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #FCA5A5;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}

.paint-btn-quote-card:hover {
  background: #EF4444;
  color: #FFF;
}

/* ==========================================================================
   4-Step Quoter Wizard Modal
   ========================================================================== */
.paint-wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 99995;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.paint-wizard-modal.hidden {
  display: none !important;
}

.paint-wizard-container {
  background: #0F172A;
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.paint-wizard-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1E293B;
}

.paint-wizard-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.paint-wizard-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94A3B8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stepper Progress Bar */
.paint-steps-bar {
  display: flex;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 6px;
}

.paint-step-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paint-step-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.paint-step-indicator.active .paint-step-line {
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
}

.paint-step-indicator.done .paint-step-line {
  background: #10B981;
}

.paint-step-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.paint-step-indicator.active .paint-step-label {
  color: #F87171;
}

.paint-step-indicator.done .paint-step-label {
  color: #34D399;
}

.paint-wizard-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* Step 1: Vehicle Selector */
.paint-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 500px) {
  .paint-vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.paint-vehicle-card {
  background: #1E293B;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.paint-vehicle-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.08);
}

.paint-vehicle-card.selected {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

.paint-vehicle-icon {
  font-size: 32px;
}

.paint-vehicle-name {
  font-size: 12.5px;
  font-weight: 800;
  color: #FFF;
}

.paint-vehicle-sub {
  font-size: 10px;
  color: #94A3B8;
}

/* Step 2: Car Schematic Piece Selector */
.paint-schematic-wrap {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.paint-car-svg-container {
  position: relative;
  max-width: 320px;
  margin: 0 auto 14px auto;
}

.paint-car-svg-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.car-piece-path {
  fill: #334155;
  stroke: #64748B;
  stroke-width: 1.5;
  cursor: pointer;
  transition: all 0.2s;
}

.car-piece-path:hover {
  fill: #475569;
  stroke: #EF4444;
}

.car-piece-path.selected {
  fill: #EF4444;
  stroke: #FFFFFF;
}

/* Pieces quick chips */
.paint-pieces-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.paint-piece-chip {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.paint-piece-chip:hover {
  border-color: #EF4444;
  color: #FFF;
}

.paint-piece-chip.selected {
  background: #EF4444;
  border-color: #EF4444;
  color: #FFF;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Latonería toggle & severity */
.paint-latoneria-box {
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
}

.paint-latoneria-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.paint-severity-radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.paint-severity-card {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.paint-severity-card.selected {
  border-color: #F59E0B;
  background: rgba(245, 158, 11, 0.15);
}

.paint-severity-name {
  font-size: 11.5px;
  font-weight: 800;
  color: #FFF;
  display: block;
}

.paint-severity-desc {
  font-size: 9.5px;
  color: #94A3B8;
  margin-top: 2px;
  display: block;
}

/* Finish Type Selector */
.paint-finish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

@media (min-width: 500px) {
  .paint-finish-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.paint-finish-card {
  background: #0F172A;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.paint-finish-card.selected {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
}

.paint-finish-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 0 auto 6px auto;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Step 3: Photos Upload */
.paint-upload-zone {
  border: 2px dashed rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 14px;
}

.paint-upload-zone:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #EF4444;
}

.paint-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.paint-thumb-item {
  position: relative;
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.paint-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step 4: Urgency & Contact */
.paint-urgency-radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.paint-urgency-card {
  background: #1E293B;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.paint-urgency-card.selected {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
}

/* Price Estimate Summary Card */
.paint-estimate-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(30, 41, 59, 0.8));
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.paint-estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
  color: #CBD5E1;
}

.paint-total-prices {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.paint-total-usd {
  font-size: 20px;
  font-weight: 900;
  color: #10B981;
}

.paint-total-cop,
.paint-total-ves {
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
}

.paint-disclaimer {
  font-size: 10.5px;
  color: #94A3B8;
  line-height: 1.4;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Wizard Footer */
.paint-wizard-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-wizard-prev {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-wizard-next {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  border: none;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* ==========================================================================
   2-Way Paint Chat Modal (Customer & Workshop)
   ========================================================================== */
.paint-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 99996;
  background: #0B0F19;
  display: flex;
  flex-direction: column;
}

.paint-chat-modal.hidden {
  display: none !important;
}

.paint-chat-header {
  padding: 12px 16px;
  background: #1E293B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.paint-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

/* Fixed Ficha de Cotización Interactiva */
.paint-quote-sheet {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-bottom: 1.5px solid rgba(239, 68, 68, 0.35);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.paint-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.paint-status-pill {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.paint-status-solicitado {
  background: rgba(245, 158, 11, 0.2);
  color: #FCD34D;
  border: 1px solid #F59E0B;
}

.paint-status-conversacion {
  background: rgba(59, 130, 246, 0.2);
  color: #93C5FD;
  border: 1px solid #3B82F6;
}

.paint-status-presupuestado {
  background: rgba(168, 85, 247, 0.2);
  color: #E9D5FF;
  border: 1px solid #A855F7;
}

.paint-status-produccion {
  background: rgba(239, 68, 68, 0.2);
  color: #FCA5A5;
  border: 1px solid #EF4444;
}

.paint-status-finalizado {
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  border: 1px solid #10B981;
}

.paint-sheet-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  font-size: 11.5px;
  color: #CBD5E1;
}

@media (min-width: 600px) {
  .paint-sheet-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

.paint-sheet-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-sheet-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.btn-sheet-action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-sheet-action.accent {
  background: #10B981;
  border-color: #10B981;
  color: #FFF;
}

/* Chat Messages Scroll */
.paint-messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
}

.paint-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  word-break: break-word;
}

.paint-msg-incoming {
  align-self: flex-start;
  background: #1E293B;
  color: #F1F5F9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.paint-msg-outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.paint-msg-meta {
  font-size: 10px;
  opacity: 0.75;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Chat Input Bar */
.paint-chat-input-bar {
  padding: 12px 16px;
  background: #1E293B;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.paint-chat-input-bar input {
  flex: 1;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  outline: none;
}

.paint-chat-input-bar input:focus {
  border-color: #EF4444;
}

.btn-send-paint-msg {
  background: #EF4444;
  color: #FFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Cross Selling Carousel */
.paint-cross-sell {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paint-cross-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.paint-cross-card {
  min-width: 200px;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.paint-cross-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 68, 68, 0.4);
}
