/* 
  Shikkee Woo - Multi-Step Form Styles
  Modern, compact, and clean design with perfect alignments
*/

/* 1. Root Variables & Font Imports */
:root {
  --shk-primary-blue: #007aff;
  --shk-primary-green: #34c759;
  --shk-primary-purple: #5856d6;
  --shk-text-primary: #1d1d1f;
  --shk-text-secondary: #6e6e73;
  --shk-text-muted: #86868b;
  --shk-background-light: #f5f5f7;
  --shk-background-white: #ffffff;
  --shk-background-card: #fafafa;
  --shk-border-color: #e5e5ea;
  --shk-border-active: #007aff;
  --shk-border-radius: 12px;
  --shk-border-radius-sm: 8px;
  --shk-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shk-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shk-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force CSS loading priority and override theme styles */
.shikkee-multistep-card,
.shikkee-multistep-card *,
.shikkee-multistep-card *::before,
.shikkee-multistep-card *::after {
  box-sizing: border-box !important;
}

/* Ensure our styles take precedence over theme */
.shikkee-multistep-card {
  isolation: isolate !important;
}

/* Override any global button styles that might affect our configurator */
.shikkee-multistep-card button,
.shikkee-multistep-card input[type="button"],
.shikkee-multistep-card input[type="submit"] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  line-height: 1.2 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* 2. Main Container */
.shikkee-multistep-card {
  background: var(--shk-background-white);
  border-radius: var(--shk-border-radius);
  box-shadow: var(--shk-shadow);
  max-width: 700px;
  margin: 24px auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--shk-text-primary);
  border: 1px solid var(--shk-border-color);
  overflow: hidden;
}

/* 3. Step Handling */
.shikkee-step {
  display: none;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
  background: var(--shk-background-white);
}

.shikkee-step:first-child {
  display: block;
}

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* 4. Step Header */
.shikkee-step-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--shk-border-color);
}

.shikkee-step-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--shk-text-primary);
  letter-spacing: -0.025em;
}

.shikkee-step-subtitle {
  font-size: 14px;
  color: var(--shk-text-secondary);
  margin: 0;
  font-weight: 400;
}

/* 5. Layout & Flex Rows */
.shikkee-flex-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}

.shikkee-options-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shikkee-mortgage-right {
  background: var(--shk-background-card);
  border-radius: var(--shk-border-radius-sm);
  padding: 20px;
  border: 1px solid var(--shk-border-color);
  position: sticky;
  top: 20px;
}

/* 6. Option Items - Modern Card Design */
.shikkee-option-item {
  background: var(--shk-background-white);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--shk-transition);
  position: relative;
  overflow: hidden;
}

.shikkee-option-item:hover {
  border-color: var(--shk-border-active);
  box-shadow: var(--shk-shadow-hover);
  transform: translateY(-1px);
}

.shikkee-option-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--shk-primary-blue);
  opacity: 0;
  transition: var(--shk-transition);
}

.shikkee-option-item:hover::before {
  opacity: 1;
}

.shikkee-option-label {
  flex: 1;
  margin-right: 16px;
}

.shikkee-option-label label {
  font-weight: 600;
  color: var(--shk-text-primary);
  font-size: 15px;
  margin: 0;
  cursor: pointer;
  display: block;
  line-height: 1.4;
}

.shikkee-option-control {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  flex-direction: column;
}

.shikkee-option-price {
  font-weight: 600;
  color: var(--shk-primary-green);
  font-size: 14px;
  background: rgba(52, 199, 89, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.shikkee-selection-status {
  font-weight: 500;
  color: var(--shk-text-muted);
  font-size: 13px;
  font-style: italic;
  background: var(--shk-background-light);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* 7. Form Controls */
.shikkee-option-control input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--shk-primary-blue);
  cursor: pointer;
  border-radius: 4px;
}

.shikkee-option-control input[type="number"] {
  width: 120px;
  padding: 8px 12px;
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: var(--shk-transition);
}

.shikkee-option-control input[type="number"]:focus {
  outline: none;
  border-color: var(--shk-border-active);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.shikkee-option-control small {
  display: block;
  font-size: 11px;
  color: var(--shk-text-muted);
  margin-top: 4px;
  text-align: center;
}

/* Combo option specific styles */
.shikkee-combo-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

#shikkee-combo-bulk-quote {
  width: 100%;
  max-width: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#shikkee-combo-bulk-quote strong {
  display: block;
  margin-bottom: 8px;
}

#shikkee-get-quote-btn {
  white-space: nowrap;
  overflow: visible;
}

/* 8. Buttons - Modern Design */
.shikkee-btn, .shikkee-next-btn, .shikkee-back-btn, .shikkee-order-btn, .shikkee-btn-secondary {
  border: none !important;
  border-radius: var(--shk-border-radius-sm) !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--shk-transition) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  letter-spacing: -0.01em !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Override any theme button styles */
.shikkee-multistep-card .shikkee-btn,
.shikkee-multistep-card .shikkee-next-btn,
.shikkee-multistep-card .shikkee-back-btn,
.shikkee-multistep-card .shikkee-order-btn,
.shikkee-multistep-card .shikkee-btn-secondary {
  all: unset !important;
  border: none !important;
  border-radius: var(--shk-border-radius-sm) !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--shk-transition) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  letter-spacing: -0.01em !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.shikkee-next-btn, .shikkee-order-btn, .shikkee-btn {
  background: linear-gradient(135deg, var(--shk-primary-blue), #0056cc) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3) !important;
}

.shikkee-next-btn:hover, .shikkee-order-btn:hover, .shikkee-btn:hover {
  background: linear-gradient(135deg, #0056cc, #004499) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.4) !important;
  color: white !important;
}

.shikkee-back-btn {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
}

.shikkee-back-btn:hover {
  background: #e5e5ea !important;
  transform: translateY(-1px) !important;
  color: var(--shk-text-primary) !important;
}

.shikkee-btn-secondary {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
}

.shikkee-btn-secondary:hover {
  background: #e5e5ea !important;
  border-color: var(--shk-border-active) !important;
  transform: translateY(-1px) !important;
  color: var(--shk-text-primary) !important;
}

/* Specific button overrides for Hello Elementor theme */
.shikkee-multistep-card button.shikkee-btn,
.shikkee-multistep-card button.shikkee-next-btn,
.shikkee-multistep-card button.shikkee-back-btn,
.shikkee-multistep-card button.shikkee-order-btn,
.shikkee-multistep-card button.shikkee-btn-secondary {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  margin: 0 !important;
  padding: 12px 24px !important;
  border: none !important;
  background: none !important;
  font: inherit !important;
  color: inherit !important;
  cursor: pointer !important;
  outline: none !important;
  box-sizing: border-box !important;
  text-align: center !important;
  vertical-align: middle !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Force button styles with maximum specificity */
.shikkee-multistep-card .shikkee-step button.shikkee-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-next-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-back-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-order-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-btn-secondary {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  border-radius: var(--shk-border-radius-sm) !important;
  cursor: pointer !important;
  transition: var(--shk-transition) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Apply specific background colors after reset */
.shikkee-multistep-card .shikkee-step button.shikkee-next-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-order-btn,
.shikkee-multistep-card .shikkee-step button.shikkee-btn {
  background: linear-gradient(135deg, var(--shk-primary-blue), #0056cc) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3) !important;
}

.shikkee-multistep-card .shikkee-step button.shikkee-back-btn {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
}

.shikkee-multistep-card .shikkee-step button.shikkee-btn-secondary {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
}

/* Hover states with maximum specificity */
.shikkee-multistep-card .shikkee-step button.shikkee-next-btn:hover,
.shikkee-multistep-card .shikkee-step button.shikkee-order-btn:hover,
.shikkee-multistep-card .shikkee-step button.shikkee-btn:hover {
  background: linear-gradient(135deg, #0056cc, #004499) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.4) !important;
  color: white !important;
}

.shikkee-multistep-card .shikkee-step button.shikkee-back-btn:hover {
  background: #e5e5ea !important;
  transform: translateY(-1px) !important;
  color: var(--shk-text-primary) !important;
}

.shikkee-multistep-card .shikkee-step button.shikkee-btn-secondary:hover {
  background: #e5e5ea !important;
  border-color: var(--shk-border-active) !important;
  transform: translateY(-1px) !important;
  color: var(--shk-text-primary) !important;
}

/* Additional Elementor theme overrides */
.shikkee-multistep-card button[type="button"],
.shikkee-multistep-card button[type="submit"] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Override any Elementor button styles */
.elementor-button,
.elementor-button-wrapper .elementor-button,
.shikkee-multistep-card .elementor-button {
  all: unset !important;
}

/* Ensure buttons don't inherit theme colors */
.shikkee-multistep-card button {
  color: inherit !important;
}

/* Force button dimensions */
.shikkee-multistep-card .shikkee-step button {
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  max-width: none !important;
}

/* Override any WordPress default button styles */
.shikkee-multistep-card button.wp-element-button,
.shikkee-multistep-card button.wp-block-button__link {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  border-radius: var(--shk-border-radius-sm) !important;
  cursor: pointer !important;
  transition: var(--shk-transition) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Apply specific styles to WordPress default button classes */
.shikkee-multistep-card button.wp-element-button.shikkee-next-btn,
.shikkee-multistep-card button.wp-element-button.shikkee-order-btn,
.shikkee-multistep-card button.wp-element-button.shikkee-btn {
  background: linear-gradient(135deg, var(--shk-primary-blue), #0056cc) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3) !important;
}

.shikkee-multistep-card button.wp-element-button.shikkee-back-btn {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
}

.shikkee-multistep-card button.wp-element-button.shikkee-btn-secondary {
  background: var(--shk-background-light) !important;
  color: var(--shk-text-primary) !important;
  border: 1px solid var(--shk-border-color) !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
}

/* Specific styling for the Change button in Shikkee Duo section */
#shikkee-duo-selector-btn,
.shikkee-duo-options-container .shikkee-btn-secondary {
  background: var(--shk-primary-blue) !important;
  color: white !important;
  border: none !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: var(--shk-border-radius-sm) !important;
  transition: var(--shk-transition) !important;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.2) !important;
}

#shikkee-duo-selector-btn:hover,
.shikkee-duo-options-container .shikkee-btn-secondary:hover {
  background: #0056cc !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3) !important;
  color: white !important;
}

/* Override any theme-specific button styles for the configurator */
.shikkee-multistep-card .shikkee-duo-options-container button,
.shikkee-multistep-card .shikkee-duo-options-container .shikkee-btn-secondary {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-height: 36px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  border-radius: var(--shk-border-radius-sm) !important;
  cursor: pointer !important;
  transition: var(--shk-transition) !important;
  text-decoration: none !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  background: var(--shk-primary-blue) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.2) !important;
}

.shikkee-multistep-card .shikkee-duo-options-container button:hover,
.shikkee-multistep-card .shikkee-duo-options-container .shikkee-btn-secondary:hover {
  background: #0056cc !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3) !important;
  color: white !important;
}

/* 9. Navigation */
.shikkee-nav-center {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--shk-border-color);
}

/* 10. Mortgage Section */
.shikkee-mortgage-right h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-align: center;
  color: var(--shk-text-primary);
}

.shikkee-mortgage-right .shikkee-option-item {
  background: transparent;
  padding: 0;
  border: none;
  margin-bottom: 16px;
}

.shikkee-mortgage-right .shikkee-option-item:hover {
  transform: none;
  box-shadow: none;
}

.shikkee-mortgage-result {
  background: var(--shk-background-white);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 16px;
  margin-top: 16px;
}

.shikkee-mortgage-calculation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.shikkee-mortgage-calculation span:last-child {
  color: var(--shk-primary-green);
  font-size: 18px;
}

.shikkee-mortgage-disclaimer {
  font-size: 11px;
  color: var(--shk-text-muted);
  text-align: center;
  margin: 0;
}

/* 11. Summary Section */
.shikkee-summary-minimal {
  background: var(--shk-background-card);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.shikkee-summary-minimal h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--shk-text-primary);
  border-bottom: 1px solid var(--shk-border-color);
  padding-bottom: 8px;
}

.shikkee-order-items {
  margin-bottom: 20px;
}

#shikkee-items-list, #shikkee-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#shikkee-items-list li, #shikkee-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--shk-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--shk-text-primary);
}

#shikkee-items-list li:last-child, #shikkee-details-list li:last-child {
  border-bottom: none;
}

#shikkee-items-list li {
  font-weight: 500;
}

#shikkee-items-list li span {
  color: var(--shk-text-secondary);
  font-weight: 400;
  font-size: 13px;
}

.shikkee-summary-prices {
  border-top: 2px solid var(--shk-border-color);
  padding-top: 16px;
  margin-top: 16px;
}

.shikkee-summary-prices > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.shikkee-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--shk-text-primary);
}

.shikkee-price-row span:first-child {
  color: var(--shk-text-secondary);
  font-weight: 400;
}

.shikkee-price-row span:last-child {
  font-weight: 600;
  color: var(--shk-text-primary);
}

/* 12. Final Summary */
.shikkee-final-summary {
  background: var(--shk-background-card);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 24px;
  margin-top: 24px;
}

.shikkee-total-price {
  background: var(--shk-background-white);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.shikkee-total-price > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--shk-text-secondary);
}

.shikkee-total-price > div span:first-child {
  font-weight: 500;
  color: var(--shk-text-primary);
}

.shikkee-total-row {
  font-weight: 700;
  font-size: 18px;
  border-top: 2px solid var(--shk-border-color);
  padding-top: 12px;
  margin-top: 12px;
  color: var(--shk-text-primary) !important;
}

/* 13. Contract Section */
.shikkee-contract-section {
  background: var(--shk-background-white);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 20px;
}

.shikkee-contract-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--shk-text-primary);
}

.shikkee-contract-text {
  font-size: 13px;
  color: var(--shk-text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.shikkee-terms-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--shk-background-light);
  padding: 16px;
  border-radius: var(--shk-border-radius-sm);
  margin-bottom: 20px;
}

.shikkee-terms-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--shk-primary-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.shikkee-terms-label {
  font-size: 13px;
  color: var(--shk-text-primary);
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
}

/* 14. Signature Section */
.shikkee-signature-section {
  margin-top: 20px;
}

.shikkee-signature-section label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--shk-text-primary);
  margin-bottom: 8px;
}

#signature-pad {
  border: 2px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  background: var(--shk-background-white);
  cursor: crosshair;
  transition: var(--shk-transition);
}

#signature-pad:hover {
  border-color: var(--shk-border-active);
}

#clear-signature {
  background: var(--shk-background-light);
  color: var(--shk-text-primary);
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  margin-top: 8px;
  cursor: pointer;
  transition: var(--shk-transition);
}

#clear-signature:hover {
  background: #e5e5ea;
}

.shikkee-signature-section small {
  display: block;
  font-size: 11px;
  color: var(--shk-text-muted);
  margin-top: 8px;
}

/* 15. Popup Modal - Enhanced */
.shikkee-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shikkee-popup.show {
  display: flex;
}

.shikkee-popup-content {
  background: var(--shk-background-white);
  border-radius: var(--shk-border-radius);
  padding: 32px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--shk-border-color);
  animation: popupSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.shikkee-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--shk-text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--shk-transition);
}

.shikkee-popup-close:hover {
  background: var(--shk-background-light);
  color: var(--shk-text-primary);
}

/* 16. Duo Options */
.shikkee-duo-options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.shikkee-duo-option {
  border: 2px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: var(--shk-transition);
  background: var(--shk-background-white);
  text-align: center;
}

.shikkee-duo-option:hover {
  border-color: var(--shk-border-active);
  transform: translateY(-2px);
  box-shadow: var(--shk-shadow-hover);
}

.shikkee-duo-option.selected, 
input[type="radio"]:checked + label .shikkee-duo-option {
  border-color: var(--shk-border-active);
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(0, 122, 255, 0.1));
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
}

.shikkee-duo-option input {
  display: none;
}

.shikkee-duo-image {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  border-radius: var(--shk-border-radius-sm);
  object-fit: cover;
}

.shikkee-duo-option span {
  font-weight: 600;
  color: var(--shk-text-primary);
  font-size: 14px;
}

/* 17. Contact Form */
.shikkee-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.shikkee-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--shk-text-primary);
  font-size: 14px;
}

.shikkee-form-group input,
.shikkee-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--shk-border-color);
  border-radius: var(--shk-border-radius-sm);
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: var(--shk-transition);
  background: var(--shk-background-white);
}

.shikkee-form-group input:focus,
.shikkee-form-group textarea:focus {
  outline: none;
  border-color: var(--shk-border-active);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.shikkee-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

#shikkee-contact-popup .shikkee-popup-content {
  max-width: 500px;
  text-align: left;
}

#shikkee-contact-popup h3 {
  margin-bottom: 12px;
  color: var(--shk-text-primary);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

#shikkee-contact-popup p {
  margin-bottom: 24px;
  color: var(--shk-text-secondary);
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

/* 18. Special States */
.shikkee-option-item.selected {
  border-color: var(--shk-primary-green);
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.05), rgba(52, 199, 89, 0.1));
}

.shikkee-option-item.selected::before {
  background: var(--shk-primary-green);
  opacity: 1;
}

.shikkee-order-btn {
  background: linear-gradient(135deg, var(--shk-primary-green), #2da34b) !important;
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3) !important;
}

.shikkee-order-btn:hover {
  background: linear-gradient(135deg, #2da34b, #248a3d) !important;
  box-shadow: 0 4px 16px rgba(52, 199, 89, 0.4) !important;
}

/* 19. Responsive Design */
@media (max-width: 768px) {
  .shikkee-multistep-card {
    margin: 16px;
    border-radius: var(--shk-border-radius-sm);
  }
  
  .shikkee-step {
    padding: 20px;
  }
  
  .shikkee-flex-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .shikkee-mortgage-right {
    position: static;
    order: -1;
  }
  
  .shikkee-nav-center {
    flex-direction: column;
    gap: 12px;
  }
  
  .shikkee-btn, .shikkee-next-btn, .shikkee-back-btn, .shikkee-order-btn {
    width: 100%;
  }
  
  .shikkee-duo-options-container {
    grid-template-columns: 1fr;
  }
  
  .shikkee-popup-content {
    margin: 20px;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .shikkee-step {
    padding: 16px;
  }
  
  .shikkee-option-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .shikkee-option-control {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
  }
  
  .shikkee-combo-input-group {
    align-items: stretch;
  }
  
  #shikkee-combo-bulk-quote {
    max-width: 100%;
  }
} 