/* --- CSS DESIGN --- */
  .sht-calculator {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    color: #333333 !important;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .sht-calculator h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a !important;
  }

  .sht-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .sht-section:last-of-type {
    border-bottom: none;
  }

  .sht-section h4 {
    font-size: 16px;
    margin-bottom: 8px; /* Lidt mindre margin for at give plads til hjælpetekst */
    font-weight: 600;
    color: #1a1a1a !important;
  }

  /* Den nye hjælpetekst (Microcopy) */
  .sht-microcopy {
    font-size: 13px;
    color: #777777 !important;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  /* Skjul standard radio buttons */
  .sht-calculator input[type="radio"] {
    display: none;
  }

  .sht-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Standard knap design */
  .sht-btn {
    flex: 1 1 calc(33.333% - 12px);
    text-align: center;
    padding: 12px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333333 !important;
    transition: all 0.2s ease-in-out;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
  }

  .sht-btn:hover {
    border-color: #b0b0b0;
  }

  /* Aktiv (valgt) tilstand for knapper */
  .sht-calculator input[type="radio"]:checked + .sht-btn {
    border-color: #000;
    background: #f9f9f9;
    box-shadow: 0 0 0 1px #000;
    font-weight: bold;
    color: #000000 !important;
  }

  /* Specifikt for hudfarve (Cirkler) */
  .sht-skin-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }
  .sht-skin-btn:hover { transform: scale(1.1); }
  
  /* Hudfarver fra lys til mørk */
  .sht-skin-1 { background-color: #fdf0d5; }
  .sht-skin-2 { background-color: #ead1a8; }
  .sht-skin-3 { background-color: #d0a87a; }
  .sht-skin-4 { background-color: #a26a42; }
  .sht-skin-5 { background-color: #744528; }
  .sht-skin-6 { background-color: #452617; }

  .sht-calculator input[type="radio"]:checked + .sht-skin-btn {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff inset, 0 0 0 2px #000;
    transform: scale(1.1);
  }

  /* Specifikt for farver (Cirkler) */
  .sht-color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 1px solid #ddd;
  }
  .sht-color-black { background: #000; }
  .sht-color-duo { background: linear-gradient(90deg, #000 50%, #e74c3c 50%); }
  .sht-color-multi { background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red); }

  /* Blækmængde (Dråbe-illusion via border-radius) */
  .sht-drop {
    width: 25px;
    height: 25px;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    margin-bottom: 12px;
    margin-top: 5px;
  }
  .sht-drop-1 { background: #e0e0e0; }
  .sht-drop-2 { background: #9e9e9e; }
  .sht-drop-3 { background: #424242; }
  .sht-drop-4 { background: #000000; }

  /* Resultat boks */
  .sht-result-box {
    display: none; 
    background: #000;
    color: #ffffff !important;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    margin-top: 20px;
  }

  .sht-result-box h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #ffffff !important;
  }

  .sht-result-box p {
    margin: 5px 0;
    font-size: 15px;
    color: #ffffff !important;
  }
  
  .sht-result-number {
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50 !important;
    display: block;
    margin: 10px 0 20px 0;
  }

  /* CTA knap */
  .sht-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00, #ff5722);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
    border: none;
  }

  .sht-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
    background: linear-gradient(135deg, #ffa02e, #ff6e40);
  }

  /* Den nye safety net tekst i resultatboksen */
  .sht-safety-net {
    margin-top: 25px;
    font-size: 14px;
    color: #aaaaaa !important;
    line-height: 1.5;
  }
  .sht-safety-net a {
    color: #ff5722 !important;
    text-decoration: underline;
  }