/* Estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
  }
  
  body {
    background-color: #fff5f5;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header simple */
  .simple-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    max-height: 60px;
    width: auto;
  }
  
  .back-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #fff5f5;
    transition: all 0.3s ease;
  }
  
  .back-link:hover {
    background-color: #ffcaca;
    color: #ff6b6b;
    transform: translateY(-2px);
  }
  
  /*-----------------------------------*\
    #SKIN-TEST STYLES
  \*-----------------------------------*/
  
  .skin-test {
    padding-top: 60px;
    padding-bottom: 0px;
    background-color: #fff5f5;
    min-height: 100vh;
  }
  
  /* Título de la página */
  .page-title-wrapper {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
  }
  
  .page-title {
    color: #ff6b6b;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.2);
  }
  
  .title-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .title-decoration span {
    position: relative;
    width: 80px;
    height: 3px;
    background-color: #ff6b6b;
    border-radius: 3px;
  }
  
  .title-decoration span::before,
  .title-decoration span::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6b6b;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .title-decoration span::before {
    left: -15px;
  }
  
  .title-decoration span::after {
    right: -15px;
  }
  
  /* Sección del test */
  .skin-test-section {
    padding: 20px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 300px); /* Altura ajustada para considerar header y footer */
  }
  
  .test-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .test-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.1);
  }
  
  /* Estilos para las preguntas */
  .question-card {
    padding: 35px;
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .question-card:first-child {
    display: block;
  }
  
  .question-title {
    color: #ff6b6b;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #ff6b6b;
  }
  
  .options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .option-label {
    display: flex;
    align-items: center;
    padding: 18px;
    border-radius: 12px;
    background-color: #fff5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  }
  
  .option-label:hover {
    background-color: #ffcaca;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
  }
  
  .option-label input[type="radio"] {
    margin-right: 15px;
    width: 22px;
    height: 22px;
    accent-color: #ff6b6b;
    cursor: pointer;
  }
  
  .option-label input[type="radio"]:checked + .option-text {
    font-weight: 600;
    color: #ff6b6b;
  }
  
  .option-label:has(input[type="radio"]:checked) {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
  }
  
  .option-text {
    font-size: 17px;
    color: #333;
    line-height: 1.5;
  }
  
  /* Navegación del test */
  .test-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
  }
  
  .progress-indicator {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background-color: #fff5f5;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  /* Botones */
  .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary {
    background-color: #ff6b6b;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  }
  
  .btn-primary:hover {
    background-color: #e45a5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
  }
  
  .btn-secondary {
    background-color: #fff5f5;
    color: #333;
    border: 1px solid #ffcaca;
  }
  
  .btn-secondary:hover {
    background-color: #ffcaca;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
  }
  
  .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Estilos para los resultados */
  .results-card {
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
  }
  
  .results-icon {
    font-size: 70px;
    color: #ff6b6b;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .results-title {
    color: #333;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  #skin-type-result {
    color: #ff6b6b;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(255, 107, 107, 0.3);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
  }
  
  .results-description {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ff6b6b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  .recommendations {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .recommendations h3 {
    color: #ff6b6b;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  
  .recommendations h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
  }
  
  #recommendations-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  #recommendations-list li {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  #recommendations-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #ff6b6b;
    font-size: 20px;
  }
  
  #recommendations-list li:hover {
    transform: translateX(5px);
    color: #000;
  }
  
  .product-recommendations {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .product-recommendations h3 {
    color: #ff6b6b;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
  }
  
  .product-recommendations h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6b6b;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.1);
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
  }
  
  .product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-name {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .product-price {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 18px;
  }
  
  .results-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  /* Header simplificado */
  .back-link {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: #fff5f5;
  }
  
  .back-link:hover {
    color: #ff6b6b;
    background-color: #ffcaca;
    transform: translateY(-2px);
  }
  
  /* Estilos para el botón de volver a inicio en el header */
  .header-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .header-action-btn:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
  }
  
  .header-action-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
  }
  
  /* Footer simplificado */
  .simple-footer {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
  }
  
  .footer-link:hover {
    color: #ff6b6b;
    background-color: #fff5f5;
    transform: translateY(-2px);
  }
  
  .copyright {
    color: #777;
    font-size: 14px;
    margin-top: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .page-title {
      font-size: 32px;
    }
  
    .question-card {
      padding: 25px 20px;
    }
  
    .question-title {
      font-size: 20px;
    }
  
    .option-label {
      padding: 15px;
    }
  
    .option-text {
      font-size: 15px;
    }
  
    .results-card {
      padding: 30px 20px;
    }
  
    .results-title {
      font-size: 26px;
    }
  
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
  
    .results-actions {
      flex-direction: column;
      gap: 15px;
    }
  
    .skin-test-section {
      min-height: calc(100vh - 180px);
      padding: 20px 0 40px;
    }
  
    .header-action-btn .btn-text {
      display: none; /* Ocultar texto en móviles */
    }
  
    .header-action-btn {
      font-size: 22px; /* Hacer el icono más grande */
    }
  }
  
  @media (max-width: 576px) {
    .page-title {
      font-size: 28px;
    }
  
    .test-container {
      border-radius: 15px;
    }
  
    .test-navigation {
      padding: 15px;
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 15px;
    }
  
    .progress-indicator {
      order: -1;
      width: 100%;
      text-align: center;
      margin-bottom: 10px;
    }
  }
  