  /* breead */
  .breadcrumb-sp {
      margin-left: 16rem;
  }

  .breadcrumb-item a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
  }

  .product-image-main {
      border: 1px solid var(--border-color);
      border-radius: 15px;
      padding: 20px;
      background: #fcfcfc;
      /* position: sticky; */
      top: 130px;
  }

  /* --- Stock Table --- */
  .stock-container {
      background: #f7faf9;
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 20px;
      margin-top: 1rem;
      margin-bottom: 1rem;
  }

  .stock-table {
      margin-bottom: 0;
      font-size: 0.9rem;
  }

  .stock-table th {
      border-top: none;
      color: var(--text-muted);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      background-color: #f7faf9;
      /* border-bottom: 1px solid #f2f4ff; */
  }

  .stock-table td {
      border-top: none;
      color: var(--text-muted);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      background-color: #f7faf9;
      text-align: left;
  }

  .stock-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 6px;
  }

  .stock-high {
      background-color: #22c55e;
  }

  .stock-low {
      background-color: #f59e0b;
  }

  /* Igualar altura entre columnas */
  #productos .row.g-2 {
      align-items: stretch;
  }

  /* Convertir columna izquierda en flex vertical */
  #productos .col-lg-4,
  #productos .col-lg-5 {
      display: flex;
      flex-direction: column;
  }

  /* Empujar cláusulas hacia abajo */


  /* --- Clauses Section --- */
  .clauses-box {
      background-color: var(--froc-light);
      border: 1px solid var(--froc-light);
      border-radius: 12px;
      padding: 20px;

  }

  .clauses-list {
      list-style: none;
      padding: 0;

  }

  .clauses-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      font-size: 0.85rem;
      color: var(--froc-text-muted);
      line-height: 1.4;
  }

  .clauses-list li::before {
      content: "\f05a";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--froc-text-muted);
  }

  .sku-badge {
      font-family: var(--Medium);
      background: var(--light-gray);
      color: var(--text-main);
      padding: 4px 12px;
      border-radius: 5px;
      font-size: 0.85rem;
      display: inline-block;
      margin-bottom: 10px;
  }

  /* h1.product-title {
                        font-family: var(--Bold);
                        color: var(--secondary-color);
                        font-size: 1.8rem;
                    } */

  .section-title {
      font-family: var(--Bold);
      font-size: 0.9rem;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-top: 1.5rem;
      margin-bottom: 0.8rem;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 5px;
  }



  /* --- Customization Options --- */
  /* --- Color Selection Mejorado para 60+ colores --- */
  .color-selection-wrapper {
      background: #fdfdfd;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
  }

  .color-scroll-area {
      max-height: 220px;
      overflow-y: auto;
      padding-right: 5px;
  }

  /* Personalización del scroll */
  .color-scroll-area::-webkit-scrollbar {
      width: 6px;
  }

  .color-scroll-area::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
  }

  .color-scroll-area::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 10px;
  }

  .color-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
      gap: 12px;
  }

  .color-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px var(--border-color);
      transition: all 0.2s ease;
      position: relative;
  }

  .color-dot:hover {
      transform: scale(1.2);
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .color-dot.active {
      box-shadow: 0 0 0 2px var(--primary-color);
      transform: scale(1.1);
  }

  .selected-color-info {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      padding: 8px 12px;
      background: white;
      border-radius: 8px;
      border: 1px solid var(--border-color);
  }

  .selected-color-preview {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid #ddd;
  }

  #colorName {
      font-weight: 600;
      color: var(--secondary-color);
      font-size: 0.9rem;
  }

  .decoration-option {
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 12px;
      cursor: pointer;
      transition: 0.2s;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .decoration-option:hover {
      background: var(--light-gray);
  }

  .decoration-option.active {
      border-color: var(--primary-color);
      background: rgba(22, 167, 141, 0.05);
  }

  /* --- Total Floating Bar (Desktop) & Summary --- */
  /* --- Decorado Cards --- */
  .print-option-card {
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 16px;
      cursor: pointer;
      transition: var(--transition-smooth);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .print-option-card:hover {
      border-color: var(--primary-color);
  }

  .print-option-card.selected {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #fff;
  }

  .print-option-card i {
      font-size: 1.5rem;
      margin-bottom: 8px;
  }

  /* --- Resumen Panel --- */
  .summary-panel {
      background-color: var(--light-gray);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 30px;
      position: sticky;
      top: 20px;
  }

  .summary-total-value {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--secondary-color);
      letter-spacing: -1px;
  }

  .btn-convert {
      background-color: var(--secondary-color);
      color: white;
      border: none;
      padding: 18px;
      border-radius: 14px;
      font-weight: 600;
      width: 100%;
      transition: var(--transition-smooth);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }

  .btn-convert:hover {
      background-color: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(22, 167, 141, 0.2);
  }

  /* --- Responsive Móvil --- */
  @media (max-width: 991px) {
      .mobile-cta-bar {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          background: #fff;
          padding: 12px 20px;
          box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
          display: flex;
          align-items: center;
          justify-content: space-between;
          z-index: 1000;
      }

      body {
          padding-bottom: 80px;
      }
  }

  @media (min-width: 992px) {
      .mobile-cta-bar {
          display: none;
      }
  }

  /* Input Number Styling */
  .qty-input {
      max-width: 120px;
      height: 48px;
      border-radius: 10px;
      text-align: center;
      font-weight: 600;
      border: 1px solid var(--border-color);
  }


  :root {
      --froc-blue: #0B453A;
      --froc-accent: #16A78D;
      --froc-dark: #2c3e50;
      --froc-light: #f4f7f6;
      --froc-gray: #e9ecef;
      --froc-border: #dee2e6;
      --froc-text-muted: #6c757d;
  }

  .line {
      padding: 1rem;
      border: 1px solid #eaeaea;
      /* margin-left: 2rem; */
      border-radius: 1rem;
      margin-top: 2.5rem;
  }

  .details-section {
      padding: 50px;
  }

  .brand-badge {
      /* background-color: var(--froc-blue); */
      color: var(--froc-dark);
      font-family: var(--Medium);
      padding: 6px 0px;
      border-radius: 50px;
      font-size: 1rem;
      display: inline-block;
      margin-bottom: 8px;
  }

  .product-code {
      color: var(--froc-accent);
      font-family: var(--Bold);
      letter-spacing: 1px;
      font-size: 0.9rem;
      margin-bottom: 5px;
      display: block;
  }

  .product-title {
      font-size: 2rem;
      font-family: var(--Bold);
      color: var(--froc-dark);
      /* margin-bottom: 20px; */
      border-bottom: 3px solid var(--froc-accent);
      display: inline-block;
  }

  .description {
      font-size: 15.2px;
      color: #636e72;
      line-height: 1.7;
      margin-bottom: .5rem;
      font-family: var(--Medium);
      text-align: justify;
  }

  .spec-grid {
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      gap: 10px;
      margin-bottom: 1rem;
  }

  .spec-item {
      padding: 10px;
      background: #f8fafb;
      border-radius: 12px;
      /* border-left: 4px solid var(--froc-blue); */
      display: flex;
      justify-content: flex-start;
      align-items: baseline;
      border-bottom: 1px dotted #dee2e6;
      font-family: var(--Medium);
  }

  .spec-label {
      display: block;
      font-size: 15.2px;
      /* text-transform: uppercase; */
      font-family: var(--Medium);
      color: var(--bs-light-text-emphasis);
      margin-bottom: 4px;
      margin-right: .5rem;
  }

  .spec-value {
      display: block;
      font-size: 15.2px;
      font-family: var(--Medium);
      color: #636e72;
  }

  .title-escala {
      font-family: var(--Medium);
  }

  .title-selection {
      font-family: var(--Medium);
      color: #636e72;
      font-size: .95rem;
  }

  .title-print {
      font-family: var(--Medium);
      color: #636e72;
      font-size: 1rem;
      margin-top: 1rem;
  }

  @media (max-width: 768px) {
      .spec-grid {
          grid-template-columns: 1fr;
      }

      .details-section {
          padding: 30px;
      }

      .product-title {
          font-size: 2rem;
      }
  }


  /* --- Nueva Tabla de Escalas --- */
  .price-table-container {
      border: 1px solid var(--froc-border);
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 15px;
  }

  .price-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
  }

  .price-table th {
      background-color: var(--froc-light);
      color: var(--froc-accent);
      font-size: 0.80rem;
      text-transform: uppercase;
      padding: 10px 10px;
      text-align: left;
      border-bottom: 1px solid var(--froc-border);
      border-left: 1px solid var(--froc-border);
      letter-spacing: 0.5px;
      font-family: var(--Bold);
  }

  .price-table td {
      padding: 10px 10px;
      border-left: 1px solid var(--froc-border);
      transition: all 0.2s ease;
      text-transform: uppercase;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      background: #f7faf9;
      color: var(--froc-accent);
      font-family: var(--Bold);
  }

  /* .price-table tr:last-child td {
                        border-bottom: none;
                    } */

  .price-table tr.active td {
      background-color: rgba(22, 167, 141, 0.08);
  }

  .price-table tr.active .qty-range {
      color: var(--froc-accent);
      font-weight: 700;
  }

  .price-table tr.active .price-val {
      color: var(--froc-blue);
      font-weight: 800;
  }

  .qty-range {
      font-size: 0.95rem;
      color: var(--froc-dark);
      font-weight: 500;
  }

  .price-val {
      font-size: 1.1rem;
      color: var(--froc-dark);
      font-weight: 600;
      text-align: right;
      display: block;
  }

  .section-header {
      font-size: 0.85rem;
      font-family: var(--Bold);
      color: var(--froc-blue);
      text-transform: uppercase;
      margin-bottom: 8px;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }



  /* --- Grid de 2 Columnas para Inputs --- */
  /* --- Grid de 3 Columnas para Inputs --- */
  .inputs-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 10px;
  }

  /* Responsivo para móviles */
  @media (max-width: 768px) {
      .inputs-row {
          grid-template-columns: 1fr;
          gap: 15px;
      }
  }

  /* CONTENEDOR */
  .sp-select-group {
      position: relative;
      margin-bottom: 10px;
  }

  /* SELECT */
  .sp-select {
      appearance: none;
      width: 100%;
      padding: 14px 45px;
      border: 2px solid var(--froc-gray);
      border-radius: 10px;
      font-weight: 600;
      color: var(--froc-blue);
      background-color: var(--froc-light);

      /* CENTRADO REAL */
      text-align: center;
      text-align-last: center;
      /* clave para select */
  }

  /* ICONO IZQUIERDA */
  .sp-select-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--froc-text-muted);
      font-size: 1.1rem;
      pointer-events: none;
  }

  /* FLECHA DERECHA */
  .sp-select-arrow {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #ccc;
      pointer-events: none;
  }

  /* --- Inputs Estilo Uniforme --- */
  .input-group-custom {
      position: relative;
      margin-bottom: 10px;
  }

  .froc-control {
      appearance: none;
      -moz-appearance: textfield;
      /* Quita flechas en Firefox */
      width: 100%;
      padding: 14px 15px 14px 15px;
      /* Padding izquierdo para el icono */
      box-sizing: border-box;
      border: 2px solid var(--froc-gray);
      border-radius: 10px;
      font-weight: 600;
      color: var(--froc-blue);
      background-color: var(--froc-light);
      text-align: center;
      font-size: 1.1rem;
      transition: border-color 0.3s ease;
  }

  /* Quitar flechas de input number en Chrome/Safari */
  .froc-control::-webkit-outer-spin-button,
  .froc-control::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  .froc-control:focus {
      outline: none;
      border-color: var(--froc-accent);
  }

  /* Estilo para campos deshabilitados (ReadOnly) */
  .froc-control:disabled {
      background-color: var(--froc-light);
      /* cursor: not-allowed; */
      color: var(--froc-accent);
  }

  .input-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--froc-text-muted);
      font-size: 1.1rem;
      pointer-events: none;
      z-index: 1;
  }


  .color-preview-circle {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      pointer-events: none;
  }

  /* --- Selector de Color --- */
  /* --- Subtotal Unitario Rápido --- */
  .unit-subtotal-display {
      background-color: var(--froc-light);
      border-radius: 10px;
      padding: 12px 15px;
      margin-bottom: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid var(--froc-border);
  }

  .unit-subtotal-label {
      font-size: 0.8rem;
      font-family: var(--Medium);
      color: var(--froc-blue);
      text-transform: uppercase;
  }

  .unit-subtotal-value {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--froc-accent);
  }

  input[type=number]::-webkit-outer-spin-button,
  input[type=number]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  /* Firefox */
  input[type=number] {
      -moz-appearance: textfield;
  }

  .custom-select-group {
      position: relative;
      margin-bottom: 25px;
  }

  .froc-select {
      appearance: none;
      width: 100%;
      padding: 14px 15px 14px 45px;
      border: 2px solid var(--froc-gray);
      border-radius: 10px;
      font-weight: 600;
      color: var(--froc-blue);
      background-color: white;
      cursor: pointer;
  }

  .color-preview-circle {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      pointer-events: none;
  }

  /* Contenedor del Switch */
  #addonsContainer {
      background-color: var(--bg-light);
      padding: 15px 20px;
      border-radius: 12px;
      display: flex;
      justify-content: left;
      align-items: center;
      margin-bottom: 25px;
      border: 1px solid var(--froc-border);
  }

  .addon-label-text {

      font-family: var(--Bold);
      color: var(--text-main);
      margin-left: 1rem;
  }

  /* Diseño del Switch */
  .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 26px;
  }

  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #cbd5e1;
      transition: .4s;
      border-radius: 34px;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  input:checked+.slider {
      background-color: var(--froc-accent);
  }

  input:checked+.slider:before {
      transform: translateX(24px);
  }

  /* Grid de Impresión */

  .print-grid.hidden {
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      height: 0;
      overflow: hidden;
      margin: 0;
  }


  /* --- Impresiones Ilustrativas --- */
  .print-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 30px;
  }

  .print-card {
      border: 2px solid var(--froc-gray);
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: white;
  }

  .print-card:hover {
      border-color: var(--froc-accent);
      transform: translateY(-2px);
  }

  .print-card.selected {
      border-color: var(--froc-accent);
      background-color: rgba(22, 167, 141, 0.04);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .print-card img {
      width: 100%;
      /* max-width: 60px;
                                            height: 60px; */
      object-fit: contain;
      margin-bottom: 10px;
      /* opacity: 0.5; */
      /* filter: grayscale(1); */
      transition: 0.3s;
  }

  .print-card.selected img {
      opacity: 1;
      filter: grayscale(0);
  }

  .print-card span {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--froc-blue);
  }

  /* --- Sumario Estilo Recibo --- */
  .summary-card {
      background: white;
      border-radius: 16px;
      padding: 25px;
      border: 1px solid var(--froc-border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-top: auto;

  }

  .summary-title {
      font-weight: 800;
      color: var(--froc-blue);
      font-size: 1.2rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  /* .summary-item {
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: 10px;
                        font-size: 0.994rem;
                        color: var(--froc-dark);
                        font-family: var(--Bold);
                        border-bottom: 1px ridge var(--froc-border);
                    }

                    .summary-item strong {
                        color: var(--froc-dark);
                    } */

  .summary-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      font-size: 0.994rem;
      color: var(--froc-dark);
      font-family: var(--Bold);
      border-bottom: 1px ridge var(--froc-border);
      padding: 6px 0;
  }

  .summary-item span {
      text-align: left;
  }

  .summary-item strong {
      text-align: left;
      min-width: 120px;
      /* asegura alineación uniforme */
  }

  .divider-sumary {
      background-color: var(--froc-light);
      border: 1px solid var(--froc-border);
      border-radius: 1rem;
      padding: 1rem;

  }

  .summary-divider {
      height: 1px;
      border-top: 1px dashed var(--froc-border);
      margin: 15px 0;
  }

  .summary-total-box {
      /* background-color: var(--froc-light);
                        padding: 15px;
                        border-radius: 10px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 15px; */

      background-color: var(--froc-light);
      padding: 15px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 15px;
      text-align: center;
  }

  .total-label {
      font-size: 1.2rem;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--froc-accent);
  }

  .total-price {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--froc-blue);
  }

  .btn-checkout {
      background-color: var(--froc-blue);
      color: white;
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      margin-top: 20px;
      transition: 0.3s;
  }

  .btn-checkout:hover {
      background-color: var(--froc-accent);
  }



  /* ------- */
  /* --- Servicios Adicionales (Checkboxes) --- */
  .addon-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 15px;
      border: 1px solid var(--froc-gray);
      border-radius: 10px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: 0.2s;
  }

  .addon-item:hover {
      background-color: var(--froc-light);
  }

  .addon-item input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: var(--froc-accent);
      cursor: pointer;
  }

  .addon-info {
      flex: 1;
      margin-left: 12px;
  }

  .addon-name {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--froc-blue);
  }

  .addon-price {
      font-size: 0.75rem;
      color: var(--froc-text-muted);
  }