


/**************************************************************
 ********************** WOOCOMMERCE *********************/

.woocommerce .products ul, .woocommerce ul.products {
	margin-left:10vw;
	margin-right:10vw;
}
.product_type_simple {
	background:#613C2D!important;
	color:#fff!important;
	font-family:'grifo_llight', sans-serif;
}
.woocommerce-result-count {
	display:none;
}
#content-tienda h2 {
	text-align:center;
}
.woocommerce-ordering {
	display:none;
}
.logo-tienda {
	margin-left:10vw;
	margin-top:2vw
}
.logo-tienda img {
	width:200px;
}
.woocommerce-order {
	margin-left:10vw;
	margin-right:10vw;
}
.woocommerce-order h2 {
	font-size:2rem;
}
.woocommerce-button {
	background:#613C2D!important;
	color:#fff!important;
	font-family:'grifo_llight', sans-serif;
	text-transform:uppercase;
}
@media (max-width:700px){
	.logo-tienda img {
	width:100px;
}
}


/**************************************************************
 ********************** POPUP ORDER *********************/

 #popup-hazunareserva {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #fff9f5;
        border: 2px solid #cba17e;
        border-radius: 14px;
        padding: 1.7rem 1.5rem 1.5rem;
        width: 340px;
        max-width: 90%;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        font-family: 'Segoe UI', sans-serif;
        color: #68412b;
        z-index: 9999;
        display: none;
        animation: fadeIn 0.5s ease-in-out;
    }

    #popup-hazunareserva h3 {
        margin-top: 0;
        font-size: 1.2rem;
        color: #5a3d2b;
    }

    #popup-hazunareserva p {
        margin: 0.7rem 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    #popup-hazunareserva a {
        color: #68412b;
        font-weight: 600;
        text-decoration: underline;
    }

    .popup-close {
        position: absolute;
        top: 8px;
        right: 12px;
        cursor: pointer;
        font-weight: bold;
        color: #68412b;
        font-size: 18px;
    }

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

/**************************************************************
 ********************** FORMULARIO CUSTOM PARA LAS DIRECTORAS*********************/

 #formulario-configuracion-negocio {
            background: #fff9f5;
            padding: 2rem;
            border-radius: 12px;
            font-family: 'Segoe UI', sans-serif;
            color: #5a3d2b;
        }

        #formulario-configuracion-negocio h2 {
            color: #68412b;
            margin-top: 2rem;
            border-bottom: 2px solid #e7d4c2;
            padding-bottom: 0.3rem;
        }

        label {
            display: block;
            margin-top: 1rem;
            font-weight: bold;
        }

        input, textarea {
            width: 100%;
            padding: 0.5rem;
            margin-top: 0.3rem;
            border: 1px solid #d7c0ae;
            border-radius: 8px;
            background: #fffdfc;
        }

        .bloque-repetible {
            padding: 1rem;
            border: 1px dashed #d8b8a0;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            background: #fef7f2;
            position: relative;
        }

        .btn-anadir, .btn-eliminar {
            display: inline-block;
            background: #68412b;
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            margin: 1rem 0;
            border-radius: 8px;
            cursor: pointer;
			
        }

        .btn-anadir:hover, .btn-eliminar:hover {
            background: #533426;
        }

        .btn-enviar {
            margin-top: 2rem;
            background: #cba17e;
            color: #fff;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
        }

        .form-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .form-full {
            grid-column: 1 / -1;
        }

        .btn-eliminar {
            position: absolute;
            top: -20px;
            right: 0.5rem;
            background: #b64c4c;
        }

        .radio-inline-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 1rem;
        }

        .radio-inline-group label {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            color: #68412b;
        }
/* Estilos adicionales para la sección de profesionales */
.profesionales-section {
    margin-bottom: 2rem;
}

.profesionales-section select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d7c0ae;
    border-radius: 8px;
    background: #fffdfc;
    font-size: 1rem;
    color: #5a3d2b;
    margin-top: 0.5rem;
}

.profesionales-section select:focus {
    outline: none;
    border-color: #cba17e;
    box-shadow: 0 0 0 2px rgba(203, 161, 126, 0.2);
}

#contenedor-profesionales {
    margin-top: 2rem;
}

.profesional-bloque {
    background: #fef7f2;
    border: 1px solid #e7d4c2;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.profesional-bloque:hover {
    box-shadow: 0 4px 12px rgba(104, 65, 43, 0.1);
    transform: translateY(-2px);
}

.profesional-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e7d4c2;
}

.profesional-header h3 {
    color: #68412b;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.profesional-bloque .form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.profesional-bloque .form-full {
    grid-column: 1 / -1;
}

.profesional-bloque label {
    color: #68412b;
    font-weight: 600;
    font-size: 0.95rem;
}

.profesional-bloque input,
.profesional-bloque textarea {
    border: 1px solid #d7c0ae;
    background: #fff;
    transition: border-color 0.3s ease;
}

.profesional-bloque input:focus,
.profesional-bloque textarea:focus {
    outline: none;
    border-color: #cba17e;
    box-shadow: 0 0 0 2px rgba(203, 161, 126, 0.2);
}

/* Estilos específicos para el campo de archivo de foto */
.profesional-bloque input[type="file"] {
    padding: 0.4rem;
    background: #f8f4f0;
    border: 1px dashed #cba17e;
    border-radius: 8px;
    cursor: pointer;
}

.profesional-bloque input[type="file"]:hover {
    background: #f0eae4;
    border-color: #68412b;
}

/* Responsive para profesionales */
@media (max-width: 768px) {
    .profesional-bloque .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .profesional-bloque {
        padding: 1rem;
    }
    
    .profesional-header h3 {
        font-size: 1.1rem;
    }
}

/* Animación para cuando aparecen los campos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profesional-bloque {
    animation: fadeInUp 0.4s ease-out;
}

/* Numeración visual para los profesionales */
.profesional-bloque::before {
    content: counter(profesional-counter);
    counter-increment: profesional-counter;
    position: absolute;
    top: -10px;
    left: 20px;
    background: #68412b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
}

#contenedor-profesionales {
    counter-reset: profesional-counter;
}