  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--pink);
    color: #222;
    line-height: 1.6;
  }

  header {
    background: var(--pink);
    color: var(--orange);
    padding: .5rem 1rem;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  header h1{
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
  }

  .nav-link {
    color: var(--orange) !important;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    cursor: pointer !important;
  }

 .nav-item a {
    font-size: 1.1rem;
    transition: transform 0.3s;
  }
  .nav-item a:hover {
    color: var(--green) !important;
    transform: scale(1.2);
  }
  section:nth-child(odd):not(.hero) {
    background: var(--pink);
  }

  .hero {

    background-image: url('/storage/images/site-assets/banner.webp');
    background-size: cover;
    background-position: left;
    height: 600px;
    box-shadow: inset 0 0 30px rgba(224, 234, 187, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--pink);
    flex-direction: column;
    animation: fadeIn 1.5s ease-in;

  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
  }

  .hero-text {
    max-width: 600px;
  }

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

  .hero h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: darkgreen;
    border-radius: 4px;
    /* background-color: rgb(255, 255, 255, 0.7); */
    padding: .3rem;
    text-shadow: 0px 0px 6px white;
  }

  .cta-button {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
  }

  .cta-button:hover {
    background: var(--orange);
    transform: scale(1.05);
  }

  section {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    scroll-margin-top: 85px;
  }

  .navbar-light .navbar-toggler {
    background-color: none
  }

  .fa-menu {
    color: var(--orange);
    font-size: 1.6rem;
  }

  .fa-circle-check{
    font-size: 1.5rem;
    color: var(--orange);
  }

  .navbar-light .navbar-toggler {
    border: none !important;
  }

  section h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--green);
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  section p, .benefits-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0px 0px 6px var(--pink);
  }

  .graphics{
    display: flex;
  }
  .img-graphics{
    position: absolute;
    width: 12%;
    z-index: -1;
  }

  .g1{
    top: 82%;
  }

  .g2{
    top: 77%;
    left: 30%;
  }

  .g3{
    top: 88%;
    left: 55%;
  }

  .g4{
    top: 70%;
    right: 8%;
  }

  #form-message{
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.3rem;
  }

  #benefits, #about-us{
    position: relative;
    padding-bottom: 8rem;
    z-index: -2;
  }

  #benefits p{
    margin: 0 auto 9rem;
  }

  .benefits-text div {
    justify-self: left;
  }

  .benefits-text {
    justify-self: center;
  }


  .stores img {
    width: 16%;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .stores img:hover {
    transform: scale(1.1);
  }

  #about-us{
    background-image: url('/storage/images/site-assets/banner2.webp');
    background-size: cover;
    background-position: center;
  }
  #about-us p {
    text-shadow: 1px 1px 8px white;
  }

  .bg-mosaic {
    background-image: url('/storage/images/site-assets/banner2.webp');
    background-size: 60%;
  }


  footer {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }

  @media (min-width: 768px) {


 .g1{
    top: 62%;
  }

  .g2{
    top: 67%;
    left: 30%;
  }

  .g3{
    top: 72%;
    left: 55%;
  }

  .g4{
    top: 44%;
    right: 8%;
  }


    nav a {
      font-size: 1.1rem;
    }

    .hero p {
        border-radius: none;
        background-color: none;
        padding: 0;
    }
    .hero {
      flex-direction: row;
    }

    .hero-content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .hero-text, .hero-image {
      flex: 1;
    }

    .hero h2 {
      font-size: 4.2rem;
    }

  }


.producto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

.recipesContainer{
    padding: 1rem 2rem;
}

.producto {
    background: white;
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.producto img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px dashed lightgray;
}

.producto-info {
    flex-grow: 1;
}

.producto-info h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.producto-info p{
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Recipe form */

.share-card-header{
    background-color: var(--green) !important;

}

.share-card, .share-card-header {
    border-top-left-radius: 1.5rem !important;
    border-top-right-radius: 1.5rem !important;
}

.font-label{
    font-family: 'Fredoka', sans-serif;
}

.form-label {
    margin-bottom: .2rem !important;
}

#ingredients-list p {
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: .8rem;
    color: #666;
    margin: 0 !important;
    margin-top: .3rem !important;
}

.btn-orange{
    color: var(--orange) !important;
    font-weight: bold !important;
    font-family: 'Fredoka', sans-serif;
}

.ta-steps::-moz-placeholder {
  font-size: .7rem;
}

.ta-steps::placeholder {
  font-size: .7rem;
}

/* Recipes list*/
.producto {
    display: flex;
    flex-direction: column; /* <-- IMPORTANTE */
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--pink);
    cursor: pointer;
}


.producto:hover {
    background: #ffebf6;
}

.producto-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 12px;
    background: #fff;
    border-radius: 1rem;
}

.producto-body.active {
    max-height: 500px;
    padding: 12px;
    overflow-y: scroll;
}

.recipe-tags{
    /* border: var(--orange) solid 2px; */
    background-color: rgba(240, 131, 24, .5);
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 20px;
    padding: 5px;
}


/*pagination*/
/* Botón activo */
.pagination .page-item.active .page-link {
    background-color: var(--green);
    color: var(--pink);
}


/* Botones normales */
.pagination .page-link {
    color: var(--green);
    background-color: var(--pink);
}




/* Serach bar */
.input-group .form-control {
    border-radius: 50px 0 0 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.input-group .form-control:focus {
    box-shadow: 0 0 8px rgba(0,123,255,0.5);
    border-color: #80bdff;
}

.input-group .btn {
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
}

.input-group-text {
    border-radius: 50px 0 0 50px;
    border-right: 0;
    background: #fff;
}


/***Terms page**/

.terms-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: auto;
}






    :root{
      --primary:#6C63FF; /* morado vibrante */
      --accent:#FF7AA2;  /* rosa suave */
      --card-bg: #fdf6fa;
    }

    /* Contenedor */
    .auth-card{
      width:40%;
      margin: auto;
      margin-top: 10%;
      border-radius:18px;
      overflow:hidden;
      display:grid;
      background:transparent;
    }

    .register-card{
      margin-top: 4%;
    }


    /* Floating shapes */
    .shape {
      position:absolute;
      border-radius:14px;
      opacity:0.12;
      filter: blur(10px);
      transform: rotate(20deg);
    }
    .shape.one{width:160px;height:160px; background: #fff; top:20px; left:20px;}
    .shape.two{width:220px;height:220px; background: #000; bottom:-40px; right:-40px; opacity:0.06;}

    /* Form panel */
    .auth-form{
      background: var(--card-bg);
      padding:36px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:14px;
    }

    .brand {
      display:flex;
      gap:12px;
      align-items:center;
      margin-bottom:6px;
    }
    .brand .logo{
      height:46px;
      width:46px;
      border-radius:12px;
      background: linear-gradient(135deg,var(--accent), var(--primary));
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-weight:700; font-size:18px;
      box-shadow:0 8px 18px rgba(108,99,255,0.14);
    }

    .form-control:focus {
      box-shadow: 0 6px 20px rgba(108,99,255,0.12);
      border-color: var(--primary);
    }

    .btn-login{
      background: linear-gradient(90deg,var(--primary), var(--accent));
      border: none;
      padding: 10px 14px;
      font-weight:600;
      border-radius:12px;
    }

    .social-btns .btn {
      border-radius:10px;
      font-weight:600;
    }

    /* Responsive */
    @media (max-width: 900px){
      .auth-card{width:84%;}
      .auth-form{order:1;border-radius:18px 18px 0 0}
    }

    /* small helper */
    .muted { color:#6b6b7a; font-size:0.95rem; }

:root {
    --orange: #F08318;
    --pink: #fdf6fa;
    --green: #208B3A;
  }


.font {
    font-family: 'Fredoka', sans-serif;
}

