/* OZ Variations — Built by esbuild. Do not edit. Source: src/css/ */
/* src/css/oz-calculator.css */
.oz-visual-calculator-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}
.oz-visual-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}
.oz-visual-title {
  font-size: 2rem;
  margin: 0 0 24px 0;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.2;
}
.oz-visual-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  min-height: 59px;
}
.step-circles {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 0 10px;
  min-width: 100%;
  justify-content: center;
}
.step-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
.step-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.step-connector {
  width: 30px;
  height: 2px;
  background: #e9ecef;
  margin: 0 5px;
  margin-top: -20px;
  transition: background 0.3s ease;
}
.step-circle.active .step-number {
  background: #007cba;
  color: white;
  border-color: #007cba;
  transform: scale(1.1);
}
.step-circle.active .step-label {
  color: #007cba;
  font-weight: 600;
}
.step-circle.clickable:not(.active) .step-number {
  background: #059669 !important;
  color: white !important;
  border-color: #059669 !important;
}
.step-circle.clickable:not(.active) .step-label {
  color: #059669 !important;
}
.step-connector.completed {
  background: #059669;
}
.step-circle.clickable {
  cursor: pointer;
}
.step-circle:not(.clickable) {
  cursor: default;
  opacity: 0.6;
}
.step-circle.clickable:not(.active):hover .step-number {
  background: #047857 !important;
  border-color: #047857 !important;
  color: white !important;
}
.step-circle.clickable:not(.active):hover .step-label {
  color: #047857 !important;
}
.color-selected-confirmation {
  position: fixed;
  top: 80px;
  right: 20px;
  background:
    linear-gradient(
      135deg,
      #059669,
      #047857);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
  animation: slideInFromRight 0.4s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  z-index: 9999;
  max-width: 320px;
  min-width: 280px;
}
.color-selected-confirmation.fade-out {
  opacity: 0;
  transform: translateX(20px);
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .color-selected-confirmation {
    top: auto;
    bottom: 80px;
    right: 15px;
    left: 15px;
    max-width: none;
    min-width: auto;
  }
}
.confirmation-content {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.confirmation-check {
  width: 28px;
  height: 28px;
  background: white;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}
.confirmation-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.oz-visual-content {
  min-height: 400px;
  margin-bottom: 32px;
}
.oz-visual-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.oz-visual-step.active {
  display: block;
}
.oz-visual-step h3 {
  font-size: 1.5rem;
  margin: 0 0 32px 0;
  color: #2c3e50 !important;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.room-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.room-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
  justify-content: center;
  gap: 10px;
}
.room-option:hover {
  border-color: #007cba;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 124, 186, 0.15);
}
.room-option.selected {
  border-color: #007cba;
  background:
    linear-gradient(
      135deg,
      #f8fafc,
      #e3f2fd);
  color: #007cba;
}
.room-icon {
  width: 48px;
  height: 48px;
  color: #6c757d !important;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-icon svg,
.surface-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor !important;
}
.room-option:hover .room-icon,
.room-option.selected .room-icon {
  color: #007cba !important;
}
.room-option:hover {
  background: rgba(0, 124, 186, 0.05) !important;
}
.room-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333 !important;
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}
.room-option:hover .room-name,
.room-option.selected .room-name {
  color: #007cba !important;
}
.deselect-btn {
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  border: none;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-bottom: 2px;
}
.deselect-btn:hover {
  background: #c82333;
  transform: scale(1.1);
}
.room-option.selected .deselect-btn,
.surface-option.selected .deselect-btn,
.condition-option.selected .deselect-btn,
.oz-color-option.oz-selected .deselect-btn,
.ncs-color-wrapper.selected .deselect-btn {
  display: flex;
}
.room-option,
.surface-option,
.condition-option,
.oz-color-option,
.ncs-color-wrapper {
  position: relative;
}
.room-option.no-hover,
.room-option.no-hover:hover,
.surface-option.no-hover,
.surface-option.no-hover:hover,
.condition-option.no-hover,
.condition-option.no-hover:hover,
.oz-color-option.no-hover,
.oz-color-option.no-hover:hover,
.ncs-color-wrapper.no-hover,
.ncs-color-wrapper.no-hover:hover {
  border-color: #e9ecef !important;
  transform: none !important;
  box-shadow: none !important;
  background: white !important;
}
.ncs-color-wrapper.no-hover .ncs-color-swatch,
.ncs-color-wrapper.no-hover:hover .ncs-color-swatch {
  border-color: #e9ecef !important;
  transform: none !important;
  box-shadow: none !important;
}
.room-option.no-hover .room-icon,
.room-option.no-hover .room-name,
.surface-option.no-hover .surface-icon,
.surface-option.no-hover span,
.condition-option.no-hover {
  color: #6c757d !important;
}
.room-option.no-hover:focus,
.surface-option.no-hover:focus,
.condition-option.no-hover:focus,
.oz-color-option.no-hover:focus,
.ncs-color-wrapper.no-hover:focus {
  outline: none !important;
}
.surface-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.surface-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  gap: 15px;
}
.surface-option:hover {
  border-color: #007cba;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 124, 186, 0.15);
  background: rgba(0, 124, 186, 0.05) !important;
}
.surface-option.selected {
  border-color: #007cba;
  background:
    linear-gradient(
      135deg,
      #f8fafc,
      #e3f2fd);
  color: #007cba;
}
.surface-icon {
  width: 48px;
  height: 48px;
  color: #6c757d !important;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.surface-option:hover .surface-icon,
.surface-option.selected .surface-icon {
  color: #007cba !important;
}
.surface-option span:not(.deselect-btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}
.surface-option:hover span:not(.deselect-btn),
.surface-option.selected span:not(.deselect-btn) {
  color: #007cba !important;
}
.condition-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.condition-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  min-width: 120px;
  color: #333 !important;
}
.condition-option:hover {
  border-color: #007cba;
  background: rgba(0, 124, 186, 0.05) !important;
  color: #007cba !important;
}
.condition-option.selected {
  border-color: #007cba;
  background: #007cba !important;
  color: white !important;
}
.color-swatches {
  max-width: 600px;
  margin: 0 auto;
}
.loading-colors {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  padding: 40px;
}
.oz-visual-calculator .oz-color-option {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.oz-visual-calculator .oz-color-name {
  display: none;
}
.oz-visual-calculator .oz-color-option.oz-selected .oz-color-name {
  display: block;
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
}
.oz-visual-calculator .oz-color-swatch.oz-has-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}
.oz-visual-calculator .oz-color-swatch.oz-has-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 1;
}
.oz-visual-calculator .oz-color-option:hover .oz-color-swatch {
  transform: scale(1.15);
  border-color: #999 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
.oz-visual-calculator .oz-color-option.oz-selected .oz-color-swatch {
  border-color: #333 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}
.oz-visual-calculator .oz-color-option.oz-selected .oz-color-swatch::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #000;
  z-index: 2;
}
.oz-visual-calculator .oz-color-option:hover .oz-color-swatch.oz-has-image {
  transform: scale(1.15);
  border-color: #666 !important;
}
.oz-visual-calculator .oz-color-option:hover .oz-color-swatch.oz-has-image::before {
  background: rgba(255, 255, 255, 0.1);
}
.oz-visual-calculator .oz-color-swatch.oz-safari-fix {
  border: 3px solid #ddd !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -moz-appearance: none !important;
  outline: none !important;
  background-clip: padding-box !important;
  -webkit-background-clip: padding-box !important;
}
.oz-visual-calculator .oz-color-option.oz-selected .oz-color-swatch.oz-safari-fix {
  border-color: #333 !important;
  position: relative !important;
}
.oz-visual-calculator .oz-color-option.oz-selected .oz-color-swatch.oz-safari-fix::after {
  content: "" !important;
  position: absolute !important;
  top: -3px !important;
  left: -3px !important;
  right: -3px !important;
  bottom: -3px !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 2px #000 !important;
  z-index: 2 !important;
}
.selected-color-info {
  text-align: center;
  margin-top: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007cba;
}
.selected-color-name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}
.selected-color-price {
  color: #007cba;
  font-size: 1.1rem;
  font-weight: 500;
}
.price-breakdown-small {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 5px;
}
.area-input-container {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.area-input-group {
  display: flex;
  align-items: center;
  border: 2px solid #ced4da;
  border-radius: 8px;
  background: white;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.area-input-group:focus-within {
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
#area-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 1.2rem;
  text-align: center;
  background: transparent;
  color: #333 !important;
}
#area-input:focus {
  outline: none;
}
.area-unit {
  padding: 15px 20px;
  background: #f8f9fa;
  color: #6c757d;
  font-weight: 500;
  border-left: 1px solid #e9ecef;
}
.area-help {
  color: #6c757d;
  font-size: 0.9rem;
}
.selection-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}
.summary-item:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #007cba;
}
.summary-label {
  color: #495057;
}
.summary-value {
  font-weight: 500;
  color: #2c3e50;
}
.cost-breakdown {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
}
.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f8f9fa;
}
.cost-item:last-child {
  border-bottom: 2px solid #007cba;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 10px;
  padding-top: 15px;
}
.cost-label {
  color: #495057;
}
.cost-value {
  font-weight: 500;
  color: #2c3e50;
}
.cost-item:last-child .cost-value {
  color: #007cba;
}
.oz-visual-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.oz-visual-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.oz-visual-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.oz-visual-btn-next {
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1) !important;
  border: 1px solid rgba(0, 0, 0, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin-left: auto;
}
.oz-visual-btn-next:not(:disabled) {
  animation: pulseButton 2s ease-in-out;
}
@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0, 132, 255, 0.4);
  }
}
.oz-visual-btn-next:hover:not(:disabled) {
  background: rgba(0, 132, 255, 1);
  border-color: rgba(0, 132, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 132, 255, 0.25);
}
.oz-visual-btn-back {
  background: transparent;
  color: #6c757d !important;
  border: 1px solid #ced4da;
}
.oz-visual-btn-back:hover {
  background: #f8f9fa;
  color: #495057 !important;
}
.oz-visual-btn-cart {
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1) !important;
  border: 1px solid rgba(0, 0, 0, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  margin-left: auto;
}
.oz-visual-btn-cart:hover {
  background: rgba(0, 132, 255, 1);
  border-color: rgba(0, 132, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 132, 255, 0.25);
  color: rgba(255, 255, 255, 1) !important;
}
.oz-visual-btn-again {
  background: #6c757d;
  color: white !important;
}
.oz-visual-btn-again:hover {
  background: #5a6268;
  color: white !important;
}
#btn-view-cart {
  background: rgba(0, 0, 0, 1);
  color: rgba(255, 255, 255, 1) !important;
  border: 1px solid rgba(0, 0, 0, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
#btn-view-cart:hover {
  background: rgba(0, 132, 255, 1);
  border-color: rgba(0, 132, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 132, 255, 0.25);
  color: rgba(255, 255, 255, 1) !important;
}
.completed-rooms-summary {
  background:
    linear-gradient(
      135deg,
      #f8f9fa,
      #e9ecef);
  border: 1px solid #059669;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.completed-rooms-summary h4 {
  margin: 0 0 10px 0;
  color: #059669;
  font-size: 1.1rem;
}
.completed-rooms-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.completed-room-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: white;
  border-radius: 4px;
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.room-number {
  background: #059669;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .oz-visual-calculator-container {
    padding: 15px;
    margin: 10px;
  }
  .oz-visual-title {
    font-size: 1.5rem;
  }
  .oz-visual-content {
    min-height: 0;
  }
  .oz-content-slide {
    min-height: 0;
  }
  .step-circles {
    gap: 0;
    justify-content: flex-start;
    padding: 0;
  }
  .step-circle {
    min-width: 50px;
    gap: 6px;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .step-label {
    font-size: 0.65rem;
  }
  .step-connector {
    width: 20px;
    margin: 0 2px;
    margin-top: -16px;
  }
  .room-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .room-option {
    padding: 15px;
    min-height: 100px;
  }
  .room-icon {
    width: 40px;
    height: 40px;
  }
  .surface-options {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
  .surface-option {
    flex: 1;
    max-width: 200px;
    padding: 25px;
    min-width: 118px;
  }
  .oz-visual-navigation {
    flex-direction: column;
    gap: 10px;
  }
  .oz-visual-btn {
    width: 100%;
    justify-content: center;
  }
  .oz-visual-btn-next,
  .oz-visual-btn-cart {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .room-options {
    grid-template-columns: 1fr;
  }
  .area-input-container {
    max-width: 250px;
  }
  #area-input,
  .area-unit {
    padding: 12px 15px;
  }
  .condition-options {
    flex-direction: column;
    gap: 15px;
  }
  .condition-option {
    flex: 1;
    max-width: 100%;
    min-width: 100%;
  }
}
.loading {
  position: relative;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.oz-completed-rooms {
  margin-bottom: 25px;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #059669;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.1);
}
.completed-rooms-header {
  position: relative;
  padding: 20px 60px 20px 24px;
  background: #059669;
  color: #ffffff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(5, 150, 105, 0.15);
}
.completed-rooms-header::after {
  content: "\2713";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.completed-rooms-text {
  display: block;
  color: #ffffff;
  font-weight: 600;
}
.completed-rooms-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.completed-room-item {
  position: relative;
  padding: 0;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #065f46;
  transition: all 0.2s ease;
}
.completed-room-item:hover {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.room-details {
  display: block;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .oz-completed-rooms {
    padding: 15px;
    margin-bottom: 20px;
  }
  .completed-rooms-header {
    padding: 16px 50px 16px 16px;
    font-size: 0.9rem;
  }
  .completed-room-item {
    padding: 0;
    font-size: 0.85rem;
  }
  .completed-rooms-header::after {
    width: 20px;
    height: 20px;
    top: 12px;
    right: 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .completed-rooms-header {
    padding: 14px 45px 14px 14px;
  }
  .completed-room-item {
    padding: 0;
  }
}
.oz-ncs-toggle-btn {
  background: #2c2c2c00;
  color: #3a3a3a;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-decoration: underline;
  font-family: inherit;
  box-shadow: 0 2px 4px rgb(44 44 44 / 0%);
}
.oz-ncs-toggle-btn:hover {
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(44, 44, 44, 0.25);
  transform: translateY(-1px);
}
.oz-ncs-toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(44, 44, 44, 0.15);
}
.oz-ncs-color-picker {
  background: transparent;
  border: none;
  padding: 0;
}
.oz-ncs-color-picker {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  flex-direction: column;
  height: 520px;
  min-height: 520px;
  max-height: 520px;
}
.oz-ncs-color-picker:not([style*="display: none"]) {
  display: flex;
}
.ncs-input-section {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.ncs-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ncs-input-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.ncs-input-controls {
  display: block;
  width: 100%;
}
.ncs-search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  margin: 0px !important;
}
.ncs-search-input:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}
.ncs-color-grid.ncs-search-view {
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ncs-search-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  min-height: 200px;
}
.ncs-search-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.ncs-search-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.ncs-search-examples {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.ncs-color-grid.ncs-search-view .ncs-color-wrapper {
  transform: translateZ(0);
}
.ncs-color-grid.ncs-search-view .ncs-color-swatch {
  will-change: transform;
}
.ncs-preview-area {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 8px;
  min-height: 50px;
  max-height: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.ncs-preview-text {
  font-size: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.ncs-color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 16px 8px !important;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: #007cba #f1f1f1;
}
.ncs-color-grid::-webkit-scrollbar {
  width: 8px;
}
.ncs-color-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.ncs-color-grid::-webkit-scrollbar-thumb {
  background: #007cba;
  border-radius: 4px;
}
.ncs-color-grid::-webkit-scrollbar-thumb:hover {
  background: #005a87;
}
.ncs-group-tile {
  width: 100%;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.ncs-group-tile:hover {
  border-color: #007cba;
  border-width: 2px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}
.ncs-group-label {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ncs-group-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
}
.ncs-group-count {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}
.ncs-color-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.ncs-color-swatch {
  width: 100%;
  height: 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ncs-color-wrapper:hover .ncs-color-swatch {
  border-color: #007cba;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.25);
}
.ncs-color-wrapper.selected .ncs-color-swatch {
  border-color: #007cba;
  border-width: 3px;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 124, 186, 0.3);
}
.ncs-color-label {
  font-size: 10px;
  font-family: monospace;
  color: #666;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s ease;
}
.ncs-color-wrapper:hover .ncs-color-label {
  color: #007cba;
  font-weight: 600;
}
.ncs-color-wrapper.selected .ncs-color-label {
  color: #007cba;
  font-weight: 600;
}
.ncs-color-grid.ncs-groups-view {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ncs-color-grid.ncs-colors-view {
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ncs-footer {
  padding: 12px 16px;
  background: #f8f9fa;
  margin-top: 0;
}
.ncs-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ncs-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
}
.ncs-back-btn:hover {
  background: #e9e9e9;
  border-color: #007cba;
}
.ncs-back-icon {
  font-size: 16px;
  font-weight: bold;
}
.ncs-footer-info {
  font-size: 14px;
  color: #666;
  text-align: center;
  flex: 1;
}
.ncs-current-group {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.ncs-selected-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.ncs-selected-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.ncs-selected-code {
  font-size: 12px;
  color: #007cba;
  font-family: monospace;
  background: #f0f8ff;
  padding: 2px 6px;
  border-radius: 4px;
}
.ncs-selected-color {
  margin-top: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #007cba;
  font-size: 14px;
}
.ncs-color-code {
  font-family: monospace;
  font-weight: 600;
  color: #007cba;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}
.ncs-color-preview {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.oz-color-toggle-section {
  margin-top: 15px;
  margin-bottom: 10px;
}
.ncs-next-btn {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 16px 24px;
  background: #059669;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.ncs-next-btn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}
.highlight-section {
  animation: highlightPulse 2s ease-in-out;
}
@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 124, 186, 0);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 124, 186, 0.3);
  }
}
.oz-color-content-wrapper {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  outline: 1px solid transparent;
}
.oz-color-sliding-content {
  display: flex;
  width: 200%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0%);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
.oz-color-slide {
  width: 50%;
  flex-shrink: 0;
  padding: 16px 8px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.oz-color-sliding-content:not(.show-ncs) .ncs-colors-slide {
  box-shadow: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
.oz-color-sliding-content:not(.show-ncs) .ncs-colors-slide * {
  box-shadow: none !important;
}
.oz-color-sliding-content.show-ncs .product-colors-slide {
  box-shadow: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
.oz-color-sliding-content.show-ncs .product-colors-slide * {
  box-shadow: none !important;
}
.oz-color-sliding-content.show-ncs {
  transform: translateX(-50%);
  min-height: 60px;
}
@media (max-width: 768px) {
  .oz-ncs-color-picker {
    height: 460px;
    min-height: 460px;
    max-height: 460px;
  }
  .ncs-input-section {
    padding: 12px;
  }
  .ncs-search-input {
    font-size: 16px;
    padding: 10px 14px;
  }
  .ncs-color-grid.ncs-search-view {
    grid-template-columns: repeat(4, 1fr);
  }
  .ncs-search-placeholder {
    padding: 30px 15px;
    min-height: 150px;
  }
  .ncs-search-icon {
    font-size: 36px;
  }
  .ncs-search-text {
    font-size: 16px;
  }
  .ncs-preview-area {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .ncs-color-grid {
    padding: 12px;
  }
  .ncs-color-grid.ncs-groups-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ncs-color-grid.ncs-colors-view {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .ncs-group-tile {
    height: 70px;
  }
  .ncs-group-name {
    font-size: 13px;
  }
  .ncs-group-count {
    font-size: 10px;
  }
  .ncs-color-swatch {
    height: 35px;
  }
  .ncs-color-label {
    font-size: 9px;
  }
  .ncs-subcategory-tile {
    flex-direction: row;
  }
  .ncs-subcategory-text {
    width: 40%;
  }
  .ncs-subcategory-gradient {
    width: 60%;
    border-left: 1px solid #e0e0e0;
  }
  .oz-ncs-toggle-btn {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 600;
  }
  .ncs-footer-content {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .ncs-back-btn {
    align-self: flex-start;
  }
  .ncs-selected-info {
    align-items: center;
  }
}
@media (max-width: 480px) {
  .oz-ncs-color-picker {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }
  .ncs-color-grid {
    padding: 10px;
  }
  .ncs-color-grid.ncs-groups-view {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .ncs-color-grid.ncs-colors-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .ncs-color-grid.ncs-search-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .ncs-color-label {
    font-size: 8px;
  }
  .ncs-search-placeholder {
    padding: 20px 10px;
    min-height: 120px;
  }
  .ncs-search-icon {
    font-size: 28px;
  }
  .ncs-search-text {
    font-size: 14px;
  }
  .ncs-group-tile {
    height: 60px;
  }
  .ncs-group-name {
    font-size: 12px;
  }
  .ncs-group-count {
    font-size: 9px;
  }
  .ncs-color-swatch {
    height: 30px;
  }
}
.completed-room-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
}
.completed-room-item:hover {
  border-color: #b3b3b3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.completed-room-item:hover .completed-item-header {
  background-color: #ecfdf5;
}
.completed-room-item.expanded {
  border-color: #059669;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.1);
}
.completed-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f0fdf4;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}
.completed-item-header:hover {
  background-color: #ecfdf5;
}
.product-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #065f46;
  line-height: 1.3;
  flex: 1;
}
.toggle-icon {
  font-size: 18px;
  color: #059669;
  transition: all 0.2s ease;
  font-family: monospace;
  font-weight: bold;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  margin-left: 12px;
  flex-shrink: 0;
}
.completed-item-details {
  padding: 20px 15px 15px;
  background: #fafafa;
  cursor: default;
  width: 100%;
  box-sizing: border-box;
}
.expanded-summary {
  display: grid;
  gap: 20px;
}
.summary-section h4,
.cost-section h4 {
  margin: 0 0 12px 0;
  color: #059669;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}
.summary-grid,
.cost-grid {
  display: grid;
  gap: 8px;
}
.summary-item,
.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: white;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  font-size: 0.9em;
}
.summary-item span:first-child,
.cost-item span:first-child {
  font-weight: 500;
  color: #555;
}
.summary-item span:last-child,
.cost-item span:last-child {
  color: #333;
  font-weight: 600;
}
.cost-item.total-cost {
  background: #059669;
  color: white;
  border-color: #047857;
  font-weight: 600;
}
.cost-item.total-cost span {
  color: white;
}
.summary-basic {
  background: white;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.summary-basic p {
  margin: 8px 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.summary-basic strong {
  color: #059669;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .completed-item-header {
    padding: 12px 15px;
  }
  .product-title {
    font-size: 1em;
  }
  .toggle-icon {
    width: 22px;
    height: 22px;
    font-size: 16px;
    margin-left: 10px;
  }
  .completed-item-details {
    padding: 15px 12px 12px;
  }
  .summary-item,
  .cost-item {
    padding: 6px 10px;
    font-size: 0.85em;
  }
}
.oz-mode-choice-toggle {
  margin-bottom: 24px;
  padding: 16px 0;
}
.oz-mode-choice-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: #2c2c2c;
  line-height: 1.3;
}
.oz-mode-choice-description {
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}
.mode-toggle-buttons {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.mode-toggle-btn {
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s ease;
}
.mode-toggle-btn:hover {
  color: #374151;
  background: rgba(255, 255, 255, 0.5);
}
.mode-toggle-btn.active {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
}
.oz-content-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #ffffff;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  outline: 1px solid transparent;
}
.oz-sliding-content {
  display: flex;
  width: 200%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0%);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.oz-content-slide {
  width: 50%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.manual-slide {
  padding: 0;
}
.calculator-slide .oz-visual-calculator-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 1;
}
.calculator-slide .oz-visual-header {
  margin-bottom: 20px;
}
.calculator-slide .oz-calculator-content {
  width: 100%;
}
.calculator-slide .room-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  width: 100%;
}
.calculator-slide .oz-visual-navigation {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
#oz-existing-variations-placeholder {
  width: 100%;
}
@media (max-width: 768px) {
  .oz-mode-choice-toggle {
    padding: 10px 0;
    margin-bottom: 15px;
  }
  .oz-mode-choice-label {
    font-size: 1rem;
  }
  .oz-mode-choice-description {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }
  .mode-toggle-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  .oz-content-slide {
    min-height: 400px;
  }
  .calculator-slide {
    padding: 15px;
  }
  .calculator-slide .oz-visual-calculator-container {
    padding: 15px;
  }
  .calculator-slide .room-options {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .oz-mode-choice-toggle {
    padding: 8px 0;
  }
  .oz-mode-choice-label {
    font-size: 0.95rem;
  }
  .oz-mode-choice-description {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }
  .mode-toggle-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  .oz-content-slide {
    min-height: 350px;
  }
  .calculator-slide {
    padding: 10px;
  }
  .calculator-slide .oz-visual-calculator-container {
    padding: 10px;
  }
  .calculator-slide .room-options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.bathroom-explanation {
  width: 100%;
}
.explanation-box {
  background: #e8f4f8;
  border: 1px solid #b3d9e6;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.explanation-box strong {
  color: #007cba !important;
  font-size: 16px;
}
.explanation-box p {
  color: #555 !important;
  margin: 10px 0 0 0;
  line-height: 1.4;
  font-size: 14px;
}
.warning-text {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 12px;
  margin-top: 10px;
  color: #856404 !important;
  font-size: 13px;
  line-height: 1.4;
}
.condition-option[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
  background: #007cba !important;
  color: white !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input:invalid {
  box-shadow: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
.area-input-container,
.config-field,
.color-swatches {
  position: relative;
}
.area-input-container *::after,
.area-input-container *::before,
.config-field *::after,
.config-field *::before {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.room-option:focus,
.surface-option:focus,
.condition-option:focus,
.color-swatch:focus,
.oz-visual-btn:focus,
#area-input:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .oz-visual-calculator-container {
    border: 2px solid;
  }
  .oz-visual-btn {
    border: 2px solid;
  }
  .room-option,
  .surface-option,
  .condition-option {
    border-width: 3px;
  }
}
.ncs-groups-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 16px;
}
.ncs-subcategories-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  padding: 16px 0;
}
.ncs-subcategory-header {
  padding: 16px 0 12px;
  grid-column: 1 / -1;
}
.ncs-subcategory-header h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.ncs-subcategory-tile {
  display: flex;
  align-items: stretch;
  min-height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ncs-subcategory-tile:hover {
  border-color: #007cba;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}
.ncs-subcategory-text {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.ncs-subcategory-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.ncs-subcategory-count {
  font-size: 12px;
  color: #666;
}
.ncs-subcategory-gradient {
  width: 120px;
  min-height: 70px;
  flex-shrink: 0;
  border-left: 1px solid #e0e0e0;
}
.ncs-group-tile {
  position: relative;
  min-height: 120px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ncs-group-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.ncs-group-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px;
  text-align: center;
}
.ncs-group-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}
.ncs-group-count {
  font-size: 12px;
  color: #666;
}
.ncs-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ncs-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #007cba;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.ncs-back-btn:hover {
  background: #005a87;
  transform: translateY(-1px);
}
.ncs-back-icon {
  font-size: 16px;
  font-weight: bold;
}
.ncs-footer-info {
  color: #666;
  font-size: 14px;
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .ncs-footer-content {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .ncs-back-btn {
    padding: 8px 12px;
    font-size: 13px;
    min-width: auto;
    flex-shrink: 0;
  }
  .ncs-back-icon {
    font-size: 14px;
  }
  .ncs-footer-info {
    font-size: 13px;
    text-align: left;
    flex-grow: 1;
  }
  .ncs-subcategories-view {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 12px 0;
  }
  .ncs-groups-view {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 12px 12px;
  }
  .ncs-group-tile {
    min-height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 8px;
  }
  .ncs-group-label {
    padding: 4px;
    position: relative;
    height: 100%;
    width: 60%;
    border-radius: 4px 0px 0px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .ncs-group-name {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .ncs-group-count {
    font-size: 11px;
  }
}
.ncs-family-header {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}
.ncs-family-header:hover {
  background: #e8f4f8;
}
.ncs-family-icon {
  font-size: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}
.ncs-family-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
}
.ncs-family-count {
  font-size: 14px;
  color: #666;
  margin-right: 12px;
}
.ncs-expand-icon {
  font-size: 18px;
  font-weight: bold;
  color: #007cba;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.ncs-family-content {
  padding: 16px;
  background: #ffffff;
}
.ncs-subgroup-tile {
  margin-bottom: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.ncs-subgroup-header {
  padding: 12px 16px;
  background: #f5f5f5;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ncs-subgroup-header:hover {
  background: #e8f4f8;
}
.ncs-subgroup-name {
  font-weight: 500;
  color: #333;
}
.ncs-subgroup-count {
  font-size: 13px;
  color: #666;
}
.ncs-colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  padding: 16px 0;
}
.ncs-search-input {
  font-size: 16px;
  padding: 12px 16px;
}
.ncs-preview-area {
  padding: 6px 10px;
  margin-top: 8px;
  min-height: 36px;
  max-height: 50px;
}
.ncs-preview-color {
  width: 28px;
  height: 28px;
}
.ncs-preview-text {
  font-size: 11px;
}
} @media (max-width: 480px) {
  .ncs-color-grid {
    padding: 12px 8px !important;
  }
  .ncs-footer-content {
    gap: 8px;
  }
  .ncs-back-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .ncs-footer-info {
    font-size: 12px;
  }
  .ncs-groups-view {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }
  .ncs-subcategories-view {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }
  .ncs-group-tile {
    min-height: 80px;
  }
  .ncs-group-name {
    font-size: 12px;
  }
  .ncs-group-count {
    font-size: 10px;
  }
  .ncs-colors-grid {
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 8px;
  }
  .ncs-color-swatch {
    width: 35px;
    height: 35px;
  }
}
/*# sourceMappingURL=oz-calculator.css.map */
